Initial commit

This commit is contained in:
Daniel Alves Rösel
2026-04-02 18:47:14 +02:00
committed by GitHub
commit 90ad5e0260
94 changed files with 7797 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
export default function BlogPage() {
return (
<main className="mx-auto max-w-3xl px-6 py-16">
<h1 className="text-3xl font-semibold tracking-tight">Blog</h1>
<p className="mt-4 text-sm text-neutral-600">
Publish product updates, engineering notes, and launch posts here.
</p>
</main>
);
}