import React from 'react'; import { X, Home, BarChart2, BookOpen, Download } from 'lucide-react'; const NAV_ITEMS = [ { id: 'home', label: 'Home', icon: Home, color: '#0EA5E9', description: 'Main dashboard' }, { id: 'reporting', label: 'Reporting', icon: BarChart2,color: '#F59E0B', description: 'Reports & analytics' }, { id: 'knowledge-base', label: 'Knowledge Base', icon: BookOpen, color: '#10B981', description: 'Articles & documentation' }, { id: 'exports', label: 'Exports', icon: Download, color: '#8B5CF6', description: 'Export data & reports' }, ]; export default function NavDrawer({ isOpen, onClose, currentPage, onNavigate }) { if (!isOpen) return null; return ( <> {/* Backdrop */}
{/* Drawer */}
{/* Drawer header */}
STEAM
Security Dashboard
{/* Nav items */} {/* Footer */}
NTS Threat Intelligence
); }