Workworkwork

This commit is contained in:
2022-10-01 14:39:46 +02:00
parent 29359f3d69
commit 6d2ae21e58
3 changed files with 33 additions and 17 deletions

View File

@ -20,17 +20,19 @@ const Blog: NextPage<{}> = () => {
<Head>
<title>c0ntroller.de</title>
</Head>
<Navigation />
<h1>Hello there!</h1>
<p>Miaumiau Lorem ipsum</p>
<h2>Projects</h2>
{
generateCards("project")
}
<h2>Diaries</h2>
{
generateCards("diary")
}
<div className={styles.container}>
<header>
<Navigation />
</header>
<main>
<h1>Hello there!</h1>
<p>Miaumiau Lorem ipsum</p>
<h2>Projects</h2>
{ generateCards("project") }
<h2>Diaries</h2>
{ generateCards("diary") }
</main>
</div>
</>;
};