09-22-2025 #7

Merged
Thilawyn merged 14 commits from next into master 2025-09-20 04:49:37 +02:00
2 changed files with 8 additions and 10 deletions
Showing only changes of commit 3132bca93f - Show all commits

View File

@@ -9,15 +9,13 @@ export const Route = createRootRoute({
function RootComponent() { function RootComponent() {
return <> return <>
<div className="text-foreground mx-auto w-[750px] max-w-full px-5 pt-28 pb-10">
<Card> <Card>
<CardHeader>
<CardTitle>My website</CardTitle>
</CardHeader>
<CardContent> <CardContent>
<Outlet /> <Outlet />
</CardContent> </CardContent>
</Card> </Card>
</div>
<TanStackRouterDevtools /> <TanStackRouterDevtools />
</> </>

View File

@@ -6,5 +6,5 @@ export const Route = createFileRoute("/")({
}) })
function RouteComponent() { function RouteComponent() {
return <div>Hello "/"!</div> return <p className="text-center">Coming soon!</p>
} }