Fix
Lint / lint (push) Failing after 7s

This commit is contained in:
Julien Valverdé
2026-05-17 19:22:34 +02:00
parent acd91e466d
commit 8db3214f61
+13 -1
View File
@@ -9,9 +9,21 @@ import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/comp
export const Route = createFileRoute("/_main")({ export const Route = createFileRoute("/_main")({
component: SharedLayout, component: WIPLayout,
}) })
function WIPLayout() {
return (
<div className="mx-auto w-[750px] max-w-full px-5 pt-28 pb-10 text-foreground">
<Card>
<CardContent>
<Outlet />
</CardContent>
</Card>
</div>
)
}
function SharedLayout() { function SharedLayout() {
const { t, i18n } = useTranslation() const { t, i18n } = useTranslation()