feat(default): default page changed to about page

This commit is contained in:
2026-07-29 06:41:46 +02:00
parent 046c2f395a
commit 6b94a75e30
+10 -10
View File
@@ -10,9 +10,18 @@ interface Section {
} }
export default function Home(): ReactElement { export default function Home(): ReactElement {
const [activeTab, setActiveTab] = useState<string>("projects"); const [activeTab, setActiveTab] = useState<string>("about");
const sections: Section[] = [ const sections: Section[] = [
{
id: "about",
title: "About",
content: (
<>
<About />
</>
),
},
{ {
id: "projects", id: "projects",
title: "Projects", title: "Projects",
@@ -27,15 +36,6 @@ export default function Home(): ReactElement {
</> </>
), ),
}, },
{
id: "about",
title: "About",
content: (
<>
<About />
</>
),
},
]; ];
return ( return (