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

View File

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