migration

This commit is contained in:
Théo LAGACHE
2025-05-16 15:54:17 +02:00
parent 01019fe1a3
commit 6f2523e524
285 changed files with 15492 additions and 46090 deletions
+6 -13
View File
@@ -1,16 +1,9 @@
import {twx} from "@/lib/twx";
import {cn} from "@/lib/utils";
import { twx } from "@/lib/twx";
import { cn } from "@/lib/utils";
export const LayoutAdmin = twx.div((props) => [`w-full h-screen flex flex-col gap-4 mx-auto `]);
export const Layout = twx.div((props) => [`max-w-5xl w-full flex-col flex gap-4 mx-auto px-4 `]);
export const LayoutAdmin = twx.div((props) => [
`w-full h-screen flex flex-col gap-4 mx-auto `
]);
export const Layout = twx.div((props)=>[
`max-w-5xl w-full flex-col flex gap-4 mx-auto px-4 `,
])
export const LayoutTitle = twx.h1((props) => [cn(`text-4xl font-bold mt-5 `, props.className)]);
export const LayoutTitle = twx.h1((props)=>[
cn(`text-4xl font-bold mt-5 `, props.className)
])
export const LayoutDescription = twx.p((props)=>[`text-lg text-muted-foreground`])
export const LayoutDescription = twx.p((props) => [`text-lg text-muted-foreground`]);