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 <>
<Card> <div className="text-foreground mx-auto w-[750px] max-w-full px-5 pt-28 pb-10">
<CardHeader> <Card>
<CardTitle>My website</CardTitle> <CardContent>
</CardHeader> <Outlet />
</CardContent>
<CardContent> </Card>
<Outlet /> </div>
</CardContent>
</Card>
<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>
} }