fix(web): reorder model navigation item

This commit is contained in:
2026-05-11 10:57:17 +08:00
parent ca7e76e815
commit 9243db2787
2 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -6,8 +6,8 @@ import { Button, Badge } from '../ui';
const navItems: Array<{ key: PageKey; label: string; icon: ReactNode }> = [
{ key: 'home', label: '首页', icon: <Home size={17} /> },
{ key: 'playground', label: '在线测试', icon: <Sparkles size={17} /> },
{ key: 'models', label: '模型', icon: <Boxes size={17} /> },
{ key: 'playground', label: '在线测试', icon: <Sparkles size={17} /> },
{ key: 'workspace', label: '用户工作台', icon: <UserCircle size={17} /> },
{ key: 'admin', label: '管理工作台', icon: <ShieldCheck size={17} /> },
{ key: 'docs', label: 'API 文档', icon: <BookOpen size={17} /> },