WIP: Architecture Refactor, add stub files and working blog post wrapped by AppShell

This commit is contained in:
2025-12-28 00:21:13 -08:00
parent c34f11de00
commit 3abd97702d
15 changed files with 96 additions and 134 deletions

View File

@@ -0,0 +1,10 @@
import React from 'react';
export function Home() {
return (
<main>
<h1>Home!</h1>
<a href="/blog">Blog</a>
</main>
)
}