'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; const navItems = [ { href: '/', label: 'Dashboard' }, { href: '/analyze', label: 'Analyze' }, { href: '/cases', label: 'Cases' }, { href: '/simulation', label: 'Simulation' }, { href: '/sentinel', label: 'Sentinel' }, { href: '/prompts', label: 'Prompt Lab' }, { href: '/config', label: 'Config' }, ]; export default function Navigation() { const pathname = usePathname(); return ( ); }