import { NavLink } from 'react-router-dom' const navItems = [ { path: '/', label: 'Overview', icon: 'πŸ“Š' }, { path: '/timeseries', label: 'Time Series', icon: 'πŸ“ˆ' }, { path: '/network', label: 'Network', icon: 'πŸ”—' }, { path: '/clusters', label: 'Topics', icon: '🧩' }, { path: '/search', label: 'SearchAI', icon: 'πŸ€–' }, { path: '/embeddings', label: 'Embeddings', icon: 'πŸ—ΊοΈ' }, ] export default function Sidebar() { return ( ) }