Files

51 lines
3.2 KiB
TypeScript
Raw Permalink Normal View History

2026-03-30 18:50:04 +02:00
import {Link} from '@inertiajs/react';
import {contact, home, membership} from '@/routes';
2026-03-28 17:35:28 +01:00
import AppLogoIcon from '@/components/app-logo-icon';
import LogoChaton from '@/img/utils/logo-chaton.png';
2026-03-28 17:35:28 +01:00
export function Footer() {
const currentYear = new Date().getFullYear();
return (
<footer className="gap-10 bg-accent dark:bg-primary rounded-t-4xl text-white py-10 px-20 mt-auto mx-5">
2026-03-30 18:50:04 +02:00
<div className="max-w-7xl mx-auto px-4 flex flex-col gap-8">
<div className="flex flex-col lg:flex-row justify-between gap-8">
<div className="flex flex-col gap-3">
<Link href={home()} className="flex items-center gap-2 no-underline">
<AppLogoIcon variant="white" className="size-8" />
2026-03-30 18:50:04 +02:00
<span className="font-bold text-white text-lg">Le Retzien Libre</span>
</Link>
<p className="text-sm max-w-xs">
Une association locale pour un internet éthique, libre et respectueux.
</p>
</div>
<div className="flex flex-col items-start lg:items-center gap-3">
<div className="size-24 rounded-lg bg-white/10 flex items-center justify-center">
<img src={LogoChaton} alt="Logo Chatons" className="size-20" />
</div>
<p className="text-xs max-w-[180px] text-white/80 lg:text-center">
Le Retzien Libre est membre du collectif CHATONS depuis 2017
</p>
</div>
2026-03-30 18:50:04 +02:00
<nav className="flex flex-col gap-3">
<span className="font-semibold">Navigation</span>
<Link href={home()} className="text-sm text-white no-underline hover:underline">Accueil</Link>
<Link href={contact()} className="text-sm text-white no-underline hover:underline">Contact</Link>
<Link href={membership()} className="text-sm text-white no-underline hover:underline">Adhérer</Link>
</nav>
</div>
<div className="flex flex-col lg:flex-row lg:justify-between gap-4 border-t border-black/20 pt-6 text-sm">
<div className="text-center lg:text-left">
2026-03-30 18:50:04 +02:00
&copy; {currentYear} Le Retzien Libre. Tous droits réservés.
</div>
<div className="flex flex-wrap justify-center lg:justify-end gap-y-2">
<Link href="/mentions-legales" className="text-sm text-white underline mx-2 hover:no-underline">Mentions légales</Link>
<Link href="/conditions-generales" className="text-sm text-white underline mx-2 hover:no-underline">CGU</Link>
<Link href="/confidentialite" className="text-sm text-white underline mx-2 hover:no-underline">Confidentialité</Link>
2026-03-30 18:50:04 +02:00
</div>
2026-03-28 17:35:28 +01:00
</div>
</div>
2026-03-30 18:50:04 +02:00
</footer>
2026-03-28 17:35:28 +01:00
);
}