import { Outlet, NavLink } from 'react-router-dom' import { BarChart2, MessageSquare, Clock, Upload, Database, Activity, Search } from 'lucide-react' import clsx from 'clsx' const nav = [ { to: '/chat', icon: MessageSquare, label: 'Chat' }, { to: '/dashboard', icon: BarChart2, label: 'Dashboard' }, { to: '/profile', icon: Search, label: 'Data Profiler' }, { to: '/history', icon: Clock, label: 'History' }, { to: '/upload', icon: Upload, label: 'Upload Data' }, { to: '/metrics', icon: Activity, label: 'Metrics' }, ] export default function Layout() { return (
{/* Sidebar */} {/* Main content */}
) }