39854-vm/frontend/src/components/PublicSiteFooter.tsx
Flatlogic Bot be4dab6f01 V1
2026-05-01 10:26:35 +00:00

32 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Link from 'next/link';
export default function PublicSiteFooter() {
return (
<footer className="border-t border-white/10 bg-[#111111] text-white/70">
<div className="mx-auto flex max-w-7xl flex-col gap-4 px-4 py-8 sm:px-6 lg:flex-row lg:items-center lg:justify-between lg:px-8">
<div>
<p className="text-sm font-semibold text-white">Artisan Marketplace</p>
<p className="text-sm text-white/60">
Une vitrine moderne pour les créateurs et un point dentrée simple pour les acheteurs.
</p>
</div>
<div className="flex flex-wrap items-center gap-4 text-sm">
<Link href="/marketplace" className="transition hover:text-white">
Marketplace
</Link>
<Link href="/contact" className="transition hover:text-white">
Contact
</Link>
<Link href="/login" className="transition hover:text-white">
Espace admin
</Link>
<Link href="/privacy-policy" className="transition hover:text-white">
Privacy Policy
</Link>
</div>
</div>
</footer>
);
}