import { Card } from "@heroui/card"; import { Skeleton } from "@heroui/skeleton"; import React from "react"; export const ServiceSkeletonGrid = () => { return (
{[...Array(25)].map((_, index) => (
))}
); };