"use client"
import { useState } from "react"
import Link from "next/link"
import { usePathname } from "next/navigation"
import { cn } from "@/lib/utils"
import { LayoutDashboard, Database, Users, BrainCircuit, Settings, ChevronLeft } from 'lucide-react'
export default function Sidebar() {
const pathname = usePathname()
const [expanded, setExpanded] = useState(true)
const toggleSidebar = () => {
setExpanded(!expanded)
}
// 简化的导航结构
const navItems = [
{ title: "首页", href: "/", icon: