Update components/footer.tsx
This commit is contained in:
parent
9a01ba5f00
commit
9d94825cca
|
|
@ -0,0 +1,35 @@
|
||||||
|
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>
|
||||||
|
);
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue