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.
This commit is contained in:
2026-07-30 14:33:17 +00:00
commit af81124d48
82 changed files with 16824 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
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-5 w-24 animate-pulse rounded-md bg-muted" />
<div className="mt-3 h-8 w-3/4 animate-pulse rounded-md bg-muted" />
<div className="mt-2 h-5 w-32 animate-pulse rounded-md bg-muted" />
<div className="mt-6 h-32 w-32 animate-pulse rounded-md bg-muted" />
<div className="mt-6 h-24 w-full animate-pulse rounded-md bg-muted" />
</div>
);
}