import * as React from "react" import { cn } from "@/lib/utils" function Skeleton({ className, ...props }: React.HTMLAttributes) { return (
) } function SkeletonCard() { return (
) } function SkeletonTestimonial() { return (
{[...Array(5)].map((_, i) => ( ))}
) } function SkeletonService() { return (
) } function SkeletonStats() { return (
) } export { Skeleton, SkeletonCard, SkeletonTestimonial, SkeletonService, SkeletonStats }