index.tsx 445 B

1234567
  1. export const Loading = () => (
  2. <main className="flex size-full animate-pulse flex-row items-center justify-center gap-8">
  3. <div className="size-6 animate-bounce border border-pythpurple-400/70 bg-pythpurple-950" />
  4. <div className="size-6 animate-bounce border border-pythpurple-400/70 bg-pythpurple-950 delay-150" />
  5. <div className="size-6 animate-bounce border border-pythpurple-400/70 bg-pythpurple-950 delay-300" />
  6. </main>
  7. );