Img optimized

This commit is contained in:
2022-10-18 23:40:09 +02:00
parent 09af95bde9
commit c003b0627d
3 changed files with 15 additions and 13 deletions

View File

@ -32,16 +32,14 @@ const Blog: NextPage<{ content: ContentList }> = ({content}) => {
</div>;
};
return <>
<Layout>
<h1>Hello there!</h1>
<p>Miaumiau Lorem ipsum</p>
<h2>Projects</h2>
{ generateCards("project") }
<h2>Diaries</h2>
{ generateCards("diary") }
</Layout>
</>;
return <Layout>
<h1>Hello there!</h1>
<p>Miaumiau Lorem ipsum</p>
<h2>Projects</h2>
{ generateCards("project") }
<h2>Diaries</h2>
{ generateCards("diary") }
</Layout>;
};