From c128cb2d5541da6fccd31c861ad6dc6721bebb42 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 14 Nov 2025 15:43:42 +0000 Subject: [PATCH 1/3] Initial plan From 564a1d0e3587796249d5e0c9868ec1873a6d103d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 14 Nov 2025 15:50:01 +0000 Subject: [PATCH 2/3] Remove description text from Minecraft Projects cards Co-authored-by: Keyyard <84187238+Keyyard@users.noreply.github.com> --- src/components/sections/MinecraftProjects.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/components/sections/MinecraftProjects.tsx b/src/components/sections/MinecraftProjects.tsx index 916dc9f..8314321 100644 --- a/src/components/sections/MinecraftProjects.tsx +++ b/src/components/sections/MinecraftProjects.tsx @@ -28,7 +28,6 @@ const MinecraftProjects = () => {
-
@@ -61,9 +60,6 @@ const MinecraftProjects = () => { )}

{proj.short_info}

-

- {proj.description} -

}> Date: Fri, 14 Nov 2025 15:50:56 +0000 Subject: [PATCH 3/3] style: format code with Prettier This commit fixes the style issues introduced in 564a1d0 according to the output from Prettier. Details: https://github.com/Keyyard/keyyard.github.io/pull/44 --- src/components/sections/MinecraftProjects.tsx | 22 ++++++++++++------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/src/components/sections/MinecraftProjects.tsx b/src/components/sections/MinecraftProjects.tsx index 8314321..d854e4c 100644 --- a/src/components/sections/MinecraftProjects.tsx +++ b/src/components/sections/MinecraftProjects.tsx @@ -1,5 +1,3 @@ - - import { useState, useEffect } from "react"; import { motion } from "framer-motion"; import { mcProjects } from "../../data"; @@ -50,7 +48,11 @@ const MinecraftProjects = () => {

{proj.title} {proj.downloads && ( - }> + + } + > { )}

{proj.short_info}

- }> + + } + > { linkObj.name === "Github" ? "bg-[#5a4378] text-white hover:bg-[#5a4378]" : linkObj.name === "MCPEDL" - ? "bg-[#7CBB7C] text-[#242424] hover:bg-[#97C997] hover:text-[#383838]" - : linkObj.name === "CurseForge" - ? "bg-[#F5A184] text-[#242424] hover:bg-[#F7B39C] hover:text-[#383838]" - : "bg-[#333] text-white hover:bg-[#333]" + ? "bg-[#7CBB7C] text-[#242424] hover:bg-[#97C997] hover:text-[#383838]" + : linkObj.name === "CurseForge" + ? "bg-[#F5A184] text-[#242424] hover:bg-[#F7B39C] hover:text-[#383838]" + : "bg-[#333] text-white hover:bg-[#333]" }`} > {linkObj.name}