add tanstack router with file-based routing

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-11 10:35:47 +01:00
parent 49cf7d560b
commit a4d790c0fe
9 changed files with 191 additions and 52 deletions
+11
View File
@@ -0,0 +1,11 @@
import { Outlet, createRootRoute } from "@tanstack/react-router"
export const Route = createRootRoute({
component: () => (
<div className="min-h-screen bg-background text-foreground">
<main className="mx-auto max-w-2xl px-4 py-6">
<Outlet />
</main>
</div>
),
})