import { FolderKanban, LayoutDashboard, Settings, PlayCircle, Cloud, Package ,Grape} from 'lucide-react' import { Sidebar, type NavItem } from '@/components/a/Sidebar' import { Logo } from './CNBBlackLogo.tsx' const navItems: NavItem[] = [ { title: '仓库管理', path: '/', icon: , }, { title: '云端环境', path: '/cloud-env', icon: , }, { title: '工作空间', path: '/workspaces', icon: , }, { title: '制品中心', path: '/cnb-packages', icon: , }, { title: '代码图像', path: '/root/code-graph', icon: , external: true, }, { title: '其他', path: '/other', icon: , children: [ { title: '应用配置', path: '/config', icon: , }, ] }, ] export function SidebarLayout({ children }: { children: React.ReactNode }) { return ( } footer={} > {children} ) }