import { Folder, Activity, CheckCircle, AlertCircle } from "lucide-react"; /** * ProjectGridSkeleton - Loading skeleton for project grid * * Shows 6 skeleton cards in a responsive grid layout with pulse animation. * Uses CSS variables for theming compatibility. */ export function ProjectGridSkeleton() { return (
{/* Header stats skeleton */}
{/* Filter tabs skeleton */}
{/* Grid skeleton - 6 cards */}
{Array.from({ length: 6 }).map((_, index) => (
))}
); }