import { Link, useLocation } from 'react-router-dom' const NAV_ITEMS = [ { path: '/', label: '仪表盘' }, { path: '/models', label: '模型' }, { path: '/datasets', label: '数据集' }, { path: '/training', label: '训练' }, { path: '/evaluation', label: '评估' }, { path: '/deployment', label: '部署' }, { path: '/inference', label: '推理' }, ] export function Layout({ children }: { children: React.ReactNode }) { const location = useLocation() return (