spb/valoplex Public
ValoPlex — moteur d'évaluation spécialisé pour les plex au Québec, petit frère de Vrai-Prix.
TypeScript 90.3%
Python 7.1%
CSS 2.5%
1// Auteur : Simon-Pierre Boucher — contact@spboucher.ai2"use client";3import Link from "next/link";4import { useLang } from "./LangContext";5import { openCookiePrefs } from "./CookieConsent";67export default function FooterNav() {8 const { lang } = useLang();9 const fr = lang === "fr";10 const cls =11 "vp-mono text-[11px] uppercase tracking-[0.08em] text-[rgba(245,243,238,0.65)] border-b border-transparent hover:text-lime hover:border-lime transition-colors";12 return (13 <nav className="mt-5 flex flex-wrap items-center gap-x-6 gap-y-2">14 <Link href="/ka" className={cls}>15 {fr ? "Ka · agent IA" : "Ka · AI agent"}16 </Link>17 <Link href="/parc" className={cls}>18 {fr ? "Parc immobilier" : "Portfolio"}19 </Link>20 <Link href="/stats" className={cls}>21 {fr ? "Statistiques" : "Statistics"}22 </Link>23 <Link href="/methodologie" className={cls}>24 {fr ? "Méthodologie" : "Methodology"}25 </Link>26 <Link href="/conditions" className={cls}>27 {fr ? "Conditions d'utilisation" : "Terms of service"}28 </Link>29 <Link href="/confidentialite" className={cls}>30 {fr ? "Politique de confidentialité" : "Privacy policy"}31 </Link>32 <button onClick={openCookiePrefs} className={`${cls} cursor-pointer`}>33 🍪 {fr ? "Préférences de témoins" : "Cookie preferences"}34 </button>35 </nav>36 );37}38