'use client' import Link from 'next/link' import { usePathname } from 'next/navigation' import { cn } from '@/lib/utils' const navigation = [ { name: 'Models', href: '/' }, { name: 'Providers', href: '/providers' }, { name: 'Overrides', href: '/overrides' } ] export function Navigation() { const pathname = usePathname() return ( ) }