export function CardSkeleton() { return (
); } export function ListSkeleton({ count = 5 }: { count?: number }) { return ( <> {Array.from({ length: count }).map((_, i) => (
))} ); } export function PageSkeleton() { return (
); }