mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-08-29 06:15:39 -04:00
- Stats grid: sm:grid-cols-4 → lg:grid-cols-4 to match actual breakpoint - Continue watching cards: border → ring-1 to match actual card styling - Continue watching section: add carousel-like margins (-mx-4/px-4) - Title detail: full-viewport backdrop, responsive poster (120px/220px), metadata row + star rating instead of two generic buttons - Explore hero: full-viewport width matching HeroBanner component - Explore rows: add icon placeholders, carousel-like margins, genre chip overflow - Settings: icon+label section headings, 3 integration cards instead of 2 - Dashboard: add icon placeholders to section headings, fix mt-2 → mt-1 - Extract shared SectionHeading helper for icon+text skeleton pattern Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
48 lines
1.7 KiB
TypeScript
48 lines
1.7 KiB
TypeScript
import { TitleCardSkeleton } from "@/components/skeletons";
|
|
import { Skeleton } from "@/components/ui/skeleton";
|
|
|
|
function TitleRowSkeleton({ withGenreChips }: { withGenreChips?: boolean }) {
|
|
return (
|
|
<div className="space-y-4">
|
|
<div className="flex items-center gap-2">
|
|
<Skeleton className="size-5 rounded" />
|
|
<Skeleton className="h-6 w-40" />
|
|
</div>
|
|
{withGenreChips && (
|
|
<div className="-mx-4 flex gap-2 overflow-x-hidden px-4 sm:-mx-0 sm:flex-wrap sm:px-0">
|
|
{Array.from({ length: 7 }).map((_, i) => (
|
|
<Skeleton
|
|
// biome-ignore lint/suspicious/noArrayIndexKey: static skeleton placeholders
|
|
key={`chip-${i}`}
|
|
className="h-7 w-20 shrink-0 rounded-full"
|
|
/>
|
|
))}
|
|
</div>
|
|
)}
|
|
<div className="-mx-4 flex gap-4 overflow-hidden px-4 sm:-mx-0 sm:px-0">
|
|
{Array.from({ length: 6 }).map((_, i) => (
|
|
// biome-ignore lint/suspicious/noArrayIndexKey: static skeleton placeholders
|
|
<div key={`card-${i}`} className="w-[140px] shrink-0 sm:w-[160px]">
|
|
<TitleCardSkeleton />
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default function ExploreLoading() {
|
|
return (
|
|
<div className="space-y-10">
|
|
{/* Hero skeleton — full viewport width like the actual HeroBanner */}
|
|
<div className="-mt-6 mb-4 ml-[calc(-50vw+50%)] mr-[calc(-50vw+50%)]">
|
|
<Skeleton className="aspect-[21/9] min-h-[280px] max-h-[420px] w-full rounded-none" />
|
|
</div>
|
|
|
|
<TitleRowSkeleton />
|
|
<TitleRowSkeleton withGenreChips />
|
|
<TitleRowSkeleton withGenreChips />
|
|
</div>
|
|
);
|
|
}
|