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 (