import Link from "next/link"; import type { Locale } from "@/i18n/config"; import { localizedHref } from "@/lib/utils"; import { Container } from "@/components/ui/Container"; import { MonoTick } from "@/components/ui/MonoTick"; type FooterColumn = { heading: string; links: { label: string; href: string }[] }; const COLUMNS: FooterColumn[] = [ { heading: "Beyond 2", links: [ { label: "Overview", href: "/v2" }, { label: "Optics", href: "#optics" }, { label: "Eyetracking", href: "#eyetracking" }, { label: "Specs", href: "#specs" }, ]}, { heading: "Shop", links: [ { label: "Order now", href: "/shop" }, { label: "Accessories", href: "/shop" }, { label: "Refurbished", href: "/shop" }, ]}, { heading: "Company", links: [ { label: "About", href: "/about" }, { label: "Press", href: "/news" }, { label: "Careers", href: "/about" }, ]}, { heading: "Support", links: [ { label: "Help center", href: "/support" }, { label: "Warranty", href: "/support" }, { label: "Compatibility", href: "/support" }, ]}, ]; const SOCIAL = ["Discord", "Instagram", "YouTube", "X"]; /** * Footer — dense, left-aligned, multi-column with mono labels (design system). * Near-black plate to close the dark stage; hairline rules, newsletter row, and * a mono legal/social line. */ export function SiteFooter({ locale }: { locale: Locale }) { return ( ); }