import { useState } from 'react' import { NavLink, useLocation } from 'react-router-dom' import { Home, MessageSquare, BarChart3, Users, FileText, Database, Settings, ChevronLeft, ChevronRight, Download, Bot, Aperture, UserCircle } from 'lucide-react' import './Sidebar.scss' function Sidebar() { const location = useLocation() const [collapsed, setCollapsed] = useState(false) const isActive = (path: string) => { return location.pathname === path || location.pathname.startsWith(`${path}/`) } return ( ) } export default Sidebar