import { Skeleton, SkeletonStats, SkeletonTable, SkeletonText, } from "@/components/ui/LoadingSkeleton"; /** * Route-level loading state for the leaderboard home. Mirrors the page * skeleton-for-skeleton: kicker + headline + lede, dataset chip strip, * anchor-dataset stats band, then filter controls and the table. All shimmer * comes from the `.skeleton` class, which the global prefers-reduced-motion * override settles to a static placeholder. */ export default function Loading() { return (

Loading the leaderboard…

{/* ---------- hero ---------- */}
{/* dataset chip strip */}
{/* ---------- anchor-dataset stats band ---------- */}
{/* ---------- leaderboard: title + controls + table ---------- */}
); }