Added dashboard

This commit is contained in:
cdricms
2025-01-14 09:48:41 +01:00
parent 09e2716e46
commit fa3dd398e0
27 changed files with 2157 additions and 81 deletions

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 };