update deps and add blank pages

This commit is contained in:
2024-06-03 17:56:26 +02:00
parent 8a7b481f47
commit c527eebd2b
6 changed files with 35 additions and 59 deletions

View File

@@ -1,23 +1,7 @@
export default async function Index() {
export default async function Page() {
return (
<div className="flex flex-col items-center">
<div className="my-3 flex flex-col items-center">
<h1 className="text-4xl">Stan's Blog</h1>
<p className="text-sm my-1">
<i>but what do I know</i>
</p>
</div>
<h2 className="mt-3 text-2xl">Posts ({[].length})</h2>
{/*
<ul>
<li>
<a href="/blog/neural-nets">Neural Networks</a>
</li>
<li>
<a href="/blog/nextjs">Next.js</a>
</li>
</ul> */}
<h1 className="text-4xl">Publications (1)</h1>
</div>
);
}