add about component

This commit is contained in:
DerTyp7
2023-10-12 15:39:54 +02:00
parent 1d4d1ba176
commit 2b48965891
5 changed files with 112 additions and 1 deletions

View File

@@ -1,10 +1,12 @@
import "@styles/App.scss";
import Header from "@components/Header";
import About from "@components/About";
export default function App() {
return (
<div id="app">
<Header />
<About />
</div>
);
}