import NavLink from './NavLink'; import SidebarSection from './SidebarSection'; import Badge from './Badge'; const navItems = [ {href: '/', label: 'Dashboard', icon: 'home'}, {href: '/products', label: 'Products', icon: 'box', count: 142}, {href: '/orders', label: 'Orders', icon: 'cart', count: 38}, {href: '/customers', label: 'Customers', icon: 'users'}, {href: '/analytics', label: 'Analytics', icon: 'chart'}, {href: '/settings', label: 'Settings', icon: 'gear'}, ]; const recentItems = [ {id: 1, label: 'Order #1234', status: 'pending'}, {id: 2, label: 'Order #1235', status: 'shipped'}, {id: 3, label: 'Order #1236', status: 'delivered'}, {id: 4, label: 'Return #891', status: 'processing'}, ]; export default function Sidebar({itemCount}) { return ( ); }