import { Card, Skeleton } from "@/components/shadcn"; export const ServiceSkeletonGrid = () => { return (
{[...Array(25)].map((_, index) => (
))}
); };