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