From 6b94a75e3022b3d6de0d13adf0f559b894cf3a5f Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Wed, 29 Jul 2026 06:41:02 +0200 Subject: [PATCH] feat(default): default page changed to about page --- frontend/src/pages/Home.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/frontend/src/pages/Home.tsx b/frontend/src/pages/Home.tsx index f45145d..2a2ec1b 100644 --- a/frontend/src/pages/Home.tsx +++ b/frontend/src/pages/Home.tsx @@ -10,9 +10,18 @@ interface Section { } export default function Home(): ReactElement { - const [activeTab, setActiveTab] = useState("projects"); + const [activeTab, setActiveTab] = useState("about"); const sections: Section[] = [ + { + id: "about", + title: "About", + content: ( + <> + + + ), + }, { id: "projects", title: "Projects", @@ -27,15 +36,6 @@ export default function Home(): ReactElement { ), }, - { - id: "about", - title: "About", - content: ( - <> - - - ), - }, ]; return (