'use client'; import Link from 'next/link'; import { usePathname, useRouter } from 'next/navigation'; const navItems = [ { href: '/dashboard', label: 'Dashboard', icon: '📊' }, { href: '/orders', label: 'Orders', icon: '📦' }, { href: '/users', label: 'Users', icon: '👥' }, { href: '/deployments', label: 'Deployments', icon: '🏠' }, { href: '/devices', label: 'Devices', icon: '📡' }, { href: '/subscriptions', label: 'Subscriptions', icon: '💳' }, ]; export default function Sidebar() { const pathname = usePathname(); const router = useRouter(); const handleLogout = () => { localStorage.removeItem('adminToken'); localStorage.removeItem('adminUser'); window.location.href = '/admin/login'; }; return ( ); } const styles = { sidebar: { width: '240px', height: '100vh', background: 'white', borderRight: '1px solid var(--border)', display: 'flex', flexDirection: 'column', position: 'fixed', left: 0, top: 0, }, logo: { padding: '24px', display: 'flex', alignItems: 'center', gap: '8px', borderBottom: '1px solid var(--border)', }, logoText: { fontSize: '20px', fontWeight: '700', color: 'var(--primary)', }, badge: { fontSize: '11px', fontWeight: '600', color: 'var(--text-muted)', background: 'var(--surface)', padding: '2px 8px', borderRadius: '4px', }, nav: { flex: 1, padding: '16px 12px', display: 'flex', flexDirection: 'column', gap: '4px', }, navItem: { display: 'flex', alignItems: 'center', gap: '12px', padding: '12px 16px', borderRadius: '8px', fontSize: '14px', fontWeight: '500', color: 'var(--text-secondary)', transition: 'all 0.2s', }, navItemActive: { background: 'var(--surface)', color: 'var(--primary)', }, navIcon: { fontSize: '18px', }, footer: { padding: '16px', borderTop: '1px solid var(--border)', }, logoutBtn: { width: '100%', padding: '10px', fontSize: '14px', color: 'var(--text-muted)', background: 'transparent', border: '1px solid var(--border)', borderRadius: '8px', cursor: 'pointer', }, };