SPB Git forge
3commits 1branches 0releases
417.0 KBsize
maindefault branch
10 days agolast push
TypeScript 66.5% Python 30.9% JavaScript 1.4% CSS 0.7%
711 B · 22 lines tsx
Raw Blame History
1import { Bone, TableSkeleton } from '@/components/satellite/skeleton';2import { Container } from '@/components/ui/section';34export default function Loading() {5  return (6    <Container wide>7      <div className="pb-6 pt-8 md:pb-8 md:pt-12" role="status" aria-label="Loading launches">8        <Bone className="h-3 w-40" />9        <Bone className="mt-3 h-10 w-1/2 max-w-md md:h-14" />10      </div>11      <div className="grid gap-8 pb-8 lg:grid-cols-[3fr_2fr]">12        <Bone className="h-56 w-full" />13        <Bone className="h-56 w-full" />14      </div>15      <Bone className="h-36 w-full rounded-lg" />16      <div className="py-6">17        <TableSkeleton rows={14} />18      </div>19    </Container>20  );21}22