/** * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * Project: Hilmacorp.ai — Web Platform * File: components/Footer.tsx * Description: Site footer with tagline, navigation, and contact information (light theme) */ import Link from "next/link"; import Logo from "@/components/Logo"; import ManageCookiesButton from "@/components/ManageCookiesButton"; import type { Locale, Messages } from "@/lib/i18n"; export default function Footer({ locale, messages, }: { locale: Locale; messages: Messages; }) { const { nav, footer } = messages; const links = [ { href: `/${locale}/about`, label: nav.about }, { href: `/${locale}/founders`, label: nav.founders }, { href: `/${locale}/services`, label: nav.services }, { href: `/${locale}/security`, label: nav.security }, { href: `/${locale}/industries`, label: nav.industries }, { href: `/${locale}/apps`, label: nav.apps }, { href: `/${locale}/contact`, label: nav.contact }, ]; return ( ); }