NeahFront7/components/footer.tsx
2025-04-10 18:14:28 +02:00

24 lines
625 B
TypeScript

"use client";
import Link from "next/link";
export function Footer() {
return (
<footer className='w-full p-4 bg-black text-white/80'>
<div className='flex space-x-4 text-sm'>
<Link href='/support' className='hover:text-white'>
Support
</Link>
<Link href='/help' className='hover:text-white'>
Centre d'aide
</Link>
<Link href='/privacy' className='hover:text-white'>
Confidentialité
</Link>
<Link href='/tos' className='hover:text-white'>
Conditions d'utilisation
</Link>
</div>
</footer>
);
}