First commit with next js.

This commit is contained in:
charles-gauthereau
2024-11-03 11:26:37 +01:00
parent 54248b8670
commit c3dbdd8833
118 changed files with 97 additions and 8756 deletions
+15
View File
@@ -0,0 +1,15 @@
import { cn } from "@/lib/utils"
function Skeleton({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
className={cn("animate-pulse rounded-md bg-primary/10", className)}
{...props}
/>
)
}
export { Skeleton }