Add TanStack Router, TanStack Query, Directus client, entity types

This commit is contained in:
2026-04-23 21:09:15 +04:00
parent 46001192be
commit d50a22a7b8
9 changed files with 327 additions and 15 deletions

View File

@@ -0,0 +1,10 @@
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/')({
component: () => (
<div className="p-8">
<h1 className="text-3xl font-bold">Home</h1>
<p className="text-muted-foreground">Routing placeholder CMS page will render here.</p>
</div>
),
})