diff --git a/frontend/src/pages/Home.jsx b/frontend/src/pages/Home.jsx
index db6b305..3a0a197 100644
--- a/frontend/src/pages/Home.jsx
+++ b/frontend/src/pages/Home.jsx
@@ -3,6 +3,24 @@ import { useState } from "react";
export default function Home() {
const [active, setActive] = useState("projects");
+ const sections = [
+ {
+ id: "projects",
+ title: "Projects",
+ content: "Project content",
+ },
+ {
+ id: "systems",
+ title: "Systems",
+ content: "Systems content",
+ },
+ {
+ id: "about",
+ title: "About",
+ content: "About content",
+ },
+ ];
+
return (
@@ -22,73 +40,35 @@ export default function Home() {
-
-
-
-
-
+ {sections.map((section) => (
+
+ ))}
-
-
- Projects
-
-
Project content
-
-
-
-
- Systems
-
-
Systems content
-
-
-
-
- About
-
-
About content
-
+ {sections.map((section) => (
+
+
+ {section.title}
+
+
{section.content}
+
+ ))}