initial commit

This commit is contained in:
BeauTroll
2026-01-19 08:52:38 +01:00
commit 46907ca153
193 changed files with 35051 additions and 0 deletions

5
src/routes/__root.tsx Normal file
View File

@@ -0,0 +1,5 @@
import { AppShell } from "@/components/layout/app-shell";
export default function RootLayout({ children }) {
return <AppShell>{children}</AppShell>;
}