Files
wamarket/app/needs/new/loading.tsx
T
softgrey af81124d48 Initial commit: WaMarket MVP
Marketplace inversée (Next.js 16 App Router + Supabase Cloud) : auth,
schéma + RLS, publication de besoins avec upload d'images, feed avec
filtres, offres, acceptation via RPC, messagerie temps réel,
dashboards, et Dockerfile pour déploiement Coolify.
2026-07-30 14:33:17 +00:00

14 lines
484 B
TypeScript

export default function Loading() {
return (
<div className="mx-auto max-w-2xl px-4 py-8 sm:px-6 sm:py-10">
<div className="h-8 w-56 animate-pulse rounded-md bg-muted" />
<div className="mt-2 h-5 w-72 animate-pulse rounded-md bg-muted" />
<div className="mt-8 flex flex-col gap-5">
{Array.from({ length: 4 }).map((_, i) => (
<div key={i} className="h-10 w-full animate-pulse rounded-md bg-muted" />
))}
</div>
</div>
);
}