SPB Git forge

spb/ai-atlas

Public
41commits 1branches 0releases
4.6 MBsize
maindefault branch
12 days agolast push
HTML 77.2% TypeScript 10.5% Python 9.6% JavaScript 2.5%
728 B · 21 lines tsx
Raw Blame History
1import { Container } from '@/components/ui/section';23export default function Loading() {4  return (5    <Container wide className="py-10" aria-busy="true">6      <div className="h-3 w-16 animate-pulse bg-surface-3" />7      <div className="mt-3 h-9 w-56 animate-pulse bg-surface-3" />8      <div className="mt-8 grid grid-cols-2 gap-2 sm:grid-cols-3 lg:grid-cols-6">9        {Array.from({ length: 6 }).map((_, i) => (10          <div key={i} className="h-10 animate-pulse bg-surface-2" />11        ))}12      </div>13      <div className="mt-8 space-y-px">14        {Array.from({ length: 12 }).map((_, i) => (15          <div key={i} className="h-10 animate-pulse bg-surface-2/70" />16        ))}17      </div>18    </Container>19  );20}21