import { Wordmark } from '@/components/vyndr'; // VYNDR 2.0 footer (§C.4). System language, not marketing — mono, uppercase // labels, the Detroit signature, and the legal/21+ line. Server component // (no interactivity); link hover is handled by the global .footer-link rule. const COLUMNS: { head: string; links: { label: string; href: string }[] }[] = [ { head: 'PRODUCT', links: [ { label: 'Slate', href: '/dashboard' }, { label: 'The Terminal', href: '/terminal' }, { label: 'Pricing', href: '/pricing' }, { label: 'Invite friends', href: '/invite' }, ], }, { head: 'COMPANY', links: [ { label: 'About', href: '/about' }, { label: 'Methodology', href: '/methodology' }, { label: 'The Report', href: '/blog' }, { label: 'Help & FAQ', href: '/help' }, ], }, { head: 'LEGAL', links: [ { label: 'Responsible Play', href: '/responsible-gambling' }, { label: 'Terms', href: '/terms' }, { label: 'Privacy', href: '/privacy' }, ], }, ]; const mono = { fontFamily: 'var(--mono)' } as const; export default function Footer() { return ( ); }