"use client"; import { Skeleton } from "@/components/ui/skeleton"; export function DashboardShellSkeleton() { return (
{Array.from({ length: 6 }).map((_, index) => ( ))}
{Array.from({ length: 8 }).map((_, index) => ( ))}
); }