import { Suspense } from "react"; import { DashboardContent } from "@/components/cards/dashboard-content"; import { Skeleton } from "@/components/ui/skeleton"; export default function DashboardPage() { return (
{Array.from({ length: 4 }).map((_, i) => ( ))}
} >
); }