'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; const LINKS: [string, string][] = [ ['/', 'Gauge'], ['/incidents', 'Incidents'], ['/services', 'Services'], ['/asns', 'ASNs'], ['/routes', 'Routes'], ['/bgp', 'BGP'], ['/probes', 'Probes'], ['/history', 'History'], ['/methodology', 'Methodology'], ['/api', 'API'], ]; export function NavLinks({ className = '', compact = false }: { className?: string; compact?: boolean }) { const path = usePathname(); return ( ); }