Finally some text

This commit is contained in:
2022-10-29 21:00:38 +02:00
parent a62b9aafca
commit b1409b6421
5 changed files with 96 additions and 12 deletions

View File

@ -14,13 +14,13 @@ const Layout: NextPage<ILayoutProps> = ({ title, children }) => {
<title>{title ?? "c0ntroller.de"}</title>
</Head>
<div id={styles.blogBody}>
<header>
<header id={"top"}>
<Navigation />
</header>
<main>
{ children }
</main>
<footer>
<footer id={"bottom"}>
Copyright und so nen Stuff
</footer>
</div>