Comprehensive admin + user dashboards (production-ready)

This commit is contained in:
Leon Serfaty
2026-06-07 17:54:30 -04:00
parent 155507f21a
commit f033f00379
122 changed files with 7878 additions and 805 deletions
+15
View File
@@ -0,0 +1,15 @@
import { HeaderSkeleton, Skeleton } from "@/components/ui/skeleton";
export default function UsageLoading() {
return (
<>
<HeaderSkeleton />
<Skeleton className="mb-6 h-6 w-44" />
<div className="grid gap-4 sm:grid-cols-2">
{Array.from({ length: 4 }).map((_, i) => (
<Skeleton key={i} className="h-36 rounded-2xl" />
))}
</div>
</>
);
}