import { Skeleton } from "@/components/ui/skeleton"
import { Card, CardContent, CardHeader } from "@/components/ui/card"
function SkeletonStatCard() {
return (
)
}
export function DashboardSkeleton() {
return (
{/* Summary cards skeleton */}
{/* 3-column chart area skeleton */}
{/* Collapsible sections skeleton */}
{[1, 2, 3].map((i) => (
))}
)
}