first commit

This commit is contained in:
2026-04-26 21:27:00 +07:00
commit 3ce6f0510b
48 changed files with 9700 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { ReactNode } from "react";
import TopNav from "@/components/TopNav";
export default function AppShell({ children }: { children: ReactNode }) {
return (
<div className="min-h-dvh bg-zinc-950 text-zinc-50">
<TopNav />
<main className="mx-auto w-full max-w-7xl px-4 py-4 md:px-6 md:py-6">
{children}
</main>
</div>
);
}