import { motion } from 'framer-motion'; interface SkeletonProps { className?: string; count?: number; } export function Skeleton({ className = '', count = 1 }: SkeletonProps) { return ( <> {Array.from({ length: count }).map((_, i) => (