SPB Git forge

spb/market-atlas

Public
12commits 1branches 0releases
1.1 MBsize
maindefault branch
10 days agolast push
TypeScript 96.7% SQL 1.6% CSS 0.8% JavaScript 0.5%
673 B · 16 lines tsx
Raw Blame History
1export default function Loading() {2  return (3    <div className="mx-auto max-w-[1440px] animate-pulse px-3 py-8 sm:px-5" aria-busy="true" aria-label="Loading">4      <div className="h-3 w-24 rounded bg-surface-3" />5      <div className="mt-3 h-8 w-72 rounded bg-surface-3" />6      <div className="mt-2 h-4 w-full max-w-xl rounded bg-surface-2" />7      <div className="mt-8 grid grid-cols-2 gap-4 sm:grid-cols-4">8        {Array.from({ length: 4 }).map((_, i) => (9          <div key={i} className="h-16 rounded-md border border-rule bg-surface" />10        ))}11      </div>12      <div className="mt-8 h-64 rounded-md border border-rule bg-surface" />13    </div>14  );15}16