Initial Frontend work

This commit is contained in:
2025-11-28 21:04:54 +01:00
parent 9f1fdd79dd
commit 8ff2c76dc1
19 changed files with 2251 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
export function PageShell({ children }: { children: React.ReactNode }) {
return (
<div className="flex bg-zinc-950 w-screen min-h-screen">{children}</div>
);
}