'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { Home, FolderOpen, FlaskConical, Terminal, Settings, Shield } from 'lucide-react'; import { motion } from 'framer-motion'; const navItems = [ { href: '/', label: 'Overview', icon: Home }, { href: '/cases', label: 'Cases', icon: FolderOpen }, { href: '/simulation', label: 'Simulations', icon: FlaskConical }, { href: '/sentinel', label: 'Sentinel', icon: Shield }, { href: '/prompts', label: 'Prompt Lab', icon: Terminal }, { href: '/config', label: 'Config', icon: Settings }, ]; export default function JanusSidebar() { const pathname = usePathname(); return ( ); }