Add About component and update styles

This commit is contained in:
dertyp7
2024-01-13 17:34:55 +01:00
parent 81f66a01bb
commit 7715d626ad
5 changed files with 98 additions and 2 deletions

View File

@@ -1,12 +1,14 @@
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 style={{ textAlign: "center" }}>
<h1>Website under construction 🚧👷</h1>
<h4>Website under construction 🚧👷</h4>
</div>
</div>
);