32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
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 d’entré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>
|
||
);
|
||
}
|