Files
wamarket/app/needs/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
513 B
TypeScript

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