import { Box, Card, CardContent, Skeleton } from '@mui/material'
function SkeletonCard() {
return (
)
}
function SkeletonLargeCard() {
return (
)
}
export function DashboardSkeleton() {
return (
{/* Header skeleton */}
{/* KPI grid skeleton */}
{Array.from({ length: 6 }).map((_, i) => (
))}
{/* Row 2 */}
{/* Row 3 */}
{/* Quick actions skeleton */}
{Array.from({ length: 6 }).map((_, i) => (
))}
)
}