mirror of
https://git.aramjonghu.dev/AramJonghu/aramjonghu-site.git
synced 2026-09-11 01:03:30 +02:00
add(About+Systems): separated into components
This commit is contained in:
@@ -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: <p>Systems content goes here.</p>,
|
||||
content: (
|
||||
<>
|
||||
<Systems />
|
||||
</>
|
||||
),
|
||||
},
|
||||
{
|
||||
id: "about",
|
||||
title: "About",
|
||||
content: <p>About content goes here.</p>,
|
||||
content: (
|
||||
<>
|
||||
<About />
|
||||
</>
|
||||
),
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user