app-sincere-parrot-bop/components/footer.tsx

36 lines
1.2 KiB
TypeScript

import { Container } from "@/components/container";
import Link from "next/link";
export function Footer() {
return (
<footer className="border-t py-12 bg-white">
<Container>
<div className="flex flex-col md:flex-row justify-between items-center gap-8">
<div className="flex flex-col gap-2">
<span className="font-bold text-xl">Entreprise Pro</span>
<p className="text-sm text-neutral-500 max-w-xs">
Solutions professionnelles pour entreprises ambitieuses.
</p>
</div>
<nav className="flex gap-8">
<Link href="#" className="text-sm text-neutral-600 hover:text-black transition-colors">
À propos
</Link>
<Link href="#" className="text-sm text-neutral-600 hover:text-black transition-colors">
Services
</Link>
<Link href="#" className="text-sm text-neutral-600 hover:text-black transition-colors">
Contact
</Link>
</nav>
<div className="text-sm text-neutral-400">
© {new Date().getFullYear()} Entreprise Pro. Tous droits réservés.
</div>
</div>
</Container>
</footer>
);
}