'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { cn } from '@/lib/cn'; export const ADMIN_NAV = [ { href: '/admin', label: 'Overview', exact: true }, { href: '/admin/raw', label: 'Raw records' }, { href: '/admin/data-quality', label: 'Data quality' }, { href: '/admin/entity-resolution', label: 'Entity resolution' }, { href: '/admin/costs', label: 'Costs' }, ] as const; /** Admin navigation: horizontal scrollable tabs on mobile, vertical sidebar from lg. Connector detail pages highlight Overview. */ export function AdminNav({ className }: { className?: string }) { const pathname = usePathname() ?? '/admin'; return ( ); }