'use client' import Link from 'next/link' import { usePathname } from 'next/navigation' import { cn } from '@/lib/utils' const TABS = [ { href: '/dashboard', label: 'Dashboard', icon: '◈' }, { href: '/listings', label: 'Listings', icon: '≡' }, { href: '/keywords', label: 'Targets', icon: '⌖' }, { href: '/sites', label: 'Sites', icon: '⬡' }, { href: '/settings', label: 'Settings', icon: '⚙' }, { href: '/ai-log', label: 'AI Log', icon: '◎' }, ] export default function Nav() { const pathname = usePathname() return ( ) }