add(About+Systems): separated into components

This commit is contained in:
2026-06-30 21:22:36 +02:00
parent 9993dbd727
commit 7a2bac2a7b
3 changed files with 32 additions and 2 deletions
+10
View File
@@ -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>
</>
);
}
+10
View File
@@ -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>
</>
);
}