import { NavLink, useLocation } from 'react-router-dom' import { LayoutDashboard, Sword, ListTodo, Flame, BarChart3, TrendingUp, FlaskConical, Zap, } from 'lucide-react' const NAV = [ { to: '/', icon: LayoutDashboard, label: 'Dashboard' }, { to: '/arena', icon: Sword, label: 'Episode Arena' }, { to: '/tasks', icon: ListTodo, label: 'Task Bank' }, { to: '/forge', icon: Flame, label: 'Forge Queue' }, { to: '/oversight', icon: BarChart3, label: 'Oversight Stats' }, { to: '/difficulty', icon: TrendingUp, label: 'Difficulty Curve' }, { to: '/grader', icon: FlaskConical, label: 'Grader' }, ] export default function Sidebar() { return ( ) }