import { NavLink, useLocation } from 'react-router-dom'; import { UploadCloud, BarChart2, MessageSquare, GitCompare, Building2, } from 'lucide-react'; const navItems = [ { to: '/upload', label: 'Upload', icon: }, { to: '/report', label: 'Report', icon: }, { to: '/ask', label: 'Ask', icon: }, { to: '/compare', label: 'Compare', icon: }, { to: '/companies', label: 'Companies', icon: }, ]; export function AppLayout({ children }: { children: React.ReactNode }) { const location = useLocation(); return (
{children}
); }