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
+13
View File
@@ -0,0 +1,13 @@
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>
);
}