import { TitleCardSkeleton } from "@/components/skeletons"; import { Skeleton } from "@/components/ui/skeleton"; function TitleRowSkeleton({ withGenreChips }: { withGenreChips?: boolean }) { return (
{withGenreChips && (
{Array.from({ length: 7 }).map((_, i) => ( ))}
)}
{Array.from({ length: 6 }).map((_, i) => ( // biome-ignore lint/suspicious/noArrayIndexKey: static skeleton placeholders
))}
); } export default function ExploreLoading() { return (
{/* Hero skeleton */}
); }