diff --git a/frontend/src/components/About.tsx b/frontend/src/components/About.tsx
new file mode 100644
index 0000000..4aeddf1
--- /dev/null
+++ b/frontend/src/components/About.tsx
@@ -0,0 +1,10 @@
+export default function About() {
+ return(
+ <>
+
+ About
+
+
+ >
+ );
+}
diff --git a/frontend/src/components/Systems.tsx b/frontend/src/components/Systems.tsx
new file mode 100644
index 0000000..668879c
--- /dev/null
+++ b/frontend/src/components/Systems.tsx
@@ -0,0 +1,10 @@
+export default function Systems() {
+ return (
+ <>
+
+ Systems
+
+
+ >
+ );
+}
diff --git a/frontend/src/pages/Home.tsx b/frontend/src/pages/Home.tsx
index 5798fae..ada68db 100644
--- a/frontend/src/pages/Home.tsx
+++ b/frontend/src/pages/Home.tsx
@@ -1,5 +1,7 @@
import { useState, type ReactElement } from "react";
import ProjectsReadme from "../components/ProjectsReadme";
+import Systems from "../components/Systems";
+import About from "../components/About";
interface ProjectInfo {
id: string;
@@ -73,12 +75,20 @@ export default function Home(): ReactElement {
{
id: "systems",
title: "Systems",
- content: Systems content goes here.
,
+ content: (
+ <>
+
+ >
+ ),
},
{
id: "about",
title: "About",
- content: About content goes here.
,
+ content: (
+ <>
+
+ >
+ ),
},
];