import { Skeleton } from "@/components/ui"; export default function Loading() { return ( <>
{Array.from({ length: 14 }, (_, i) => (
))}
); }