feat(setup preprod env and mailing interceptor)

This commit is contained in:
2026-04-10 11:47:04 +02:00
parent 203a40c713
commit 59017a2c9b
112 changed files with 6038 additions and 160 deletions

View File

@@ -1,6 +1,7 @@
import {Link} from '@inertiajs/react';
import {contact, home, membership} from '@/routes';
import AppLogoIcon from '@/components/app-logo-icon';
import LogoChaton from '@/img/utils/logo-chaton.png';
export function Footer() {
const currentYear = new Date().getFullYear();
@@ -18,6 +19,14 @@ export function Footer() {
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>
<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>
@@ -25,16 +34,15 @@ export function Footer() {
<Link href={membership()} className="text-sm text-white no-underline hover:underline">Adhérer</Link>
</nav>
</div>
<div className="flex justify-between border-t border-black/20 pt-6 text-sm text-center">
<div className="text-left">
<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">
&copy; {currentYear} Le Retzien Libre. Tous droits réservés.
</div>
<div className="flex items-stretch text-right">
<Link href="/mentions-legales" className="text-sm text-white underline mx-4 hover:no-underline">Mentions légales</Link>
<Link href="/conditions-generales" className="text-sm text-white underline mx-4 hover:no-underline">CGU</Link>
<Link href="/confidentialite" className="text-sm text-white underline mx-4 hover:no-underline">Confidentialité</Link>
<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>
</div>
</div>
</div>
</footer>