import { DashboardGridSkeleton } from "@/components/skeletons"; import { Skeleton } from "@/components/ui/skeleton"; /** * Loading state para a página do dashboard * Estrutura: Welcome Banner → Month Picker → Section Cards → Widget Grid */ export default function DashboardLoading() { return (
{/* Welcome Banner skeleton */} {/* Month Picker skeleton */} {/* Dashboard content skeleton (Section Cards + Widget Grid) */}
); }