mirror of
https://git.aramjonghu.dev/AramJonghu/aramjonghu-site.git
synced 2026-09-13 17:53:31 +02:00
add(About+Systems): separated into components
This commit is contained in:
@@ -0,0 +1,10 @@
|
|||||||
|
export default function About() {
|
||||||
|
return(
|
||||||
|
<>
|
||||||
|
<h1 className="text-center m-6 text-3xl font-bold text-ctp-mauve">
|
||||||
|
About
|
||||||
|
</h1>
|
||||||
|
<div></div>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
export default function Systems() {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<h1 className="text-center m-6 text-3xl font-bold text-ctp-mauve">
|
||||||
|
Systems
|
||||||
|
</h1>
|
||||||
|
<div></div>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,5 +1,7 @@
|
|||||||
import { useState, type ReactElement } from "react";
|
import { useState, type ReactElement } from "react";
|
||||||
import ProjectsReadme from "../components/ProjectsReadme";
|
import ProjectsReadme from "../components/ProjectsReadme";
|
||||||
|
import Systems from "../components/Systems";
|
||||||
|
import About from "../components/About";
|
||||||
|
|
||||||
interface ProjectInfo {
|
interface ProjectInfo {
|
||||||
id: string;
|
id: string;
|
||||||
@@ -73,12 +75,20 @@ export default function Home(): ReactElement {
|
|||||||
{
|
{
|
||||||
id: "systems",
|
id: "systems",
|
||||||
title: "Systems",
|
title: "Systems",
|
||||||
content: <p>Systems content goes here.</p>,
|
content: (
|
||||||
|
<>
|
||||||
|
<Systems />
|
||||||
|
</>
|
||||||
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "about",
|
id: "about",
|
||||||
title: "About",
|
title: "About",
|
||||||
content: <p>About content goes here.</p>,
|
content: (
|
||||||
|
<>
|
||||||
|
<About />
|
||||||
|
</>
|
||||||
|
),
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user