diff --git a/apps/desktop/src/App.tsx b/apps/desktop/src/App.tsx index 7e6aa7d..a0cae94 100644 --- a/apps/desktop/src/App.tsx +++ b/apps/desktop/src/App.tsx @@ -98,8 +98,8 @@ function App() { {/* 可滚动的主要内容区域 */} - - + + } /> } /> diff --git a/apps/desktop/src/components/Navigation.tsx b/apps/desktop/src/components/Navigation.tsx index a6edc3c..57cc36f 100644 --- a/apps/desktop/src/components/Navigation.tsx +++ b/apps/desktop/src/components/Navigation.tsx @@ -8,7 +8,6 @@ import { LinkIcon, WrenchScrewdriverIcon, SparklesIcon, - CogIcon } from '@heroicons/react/24/outline'; const Navigation: React.FC = () => { @@ -16,52 +15,46 @@ const Navigation: React.FC = () => { const navItems = [ { - name: '项目管理', + name: '项目', href: '/', icon: FolderIcon, description: '管理项目和素材' }, { - name: '模特管理', + name: '模特', href: '/models', icon: UserGroupIcon, description: '管理模特信息' }, { - name: '模板管理', + name: '模板', href: '/templates', icon: DocumentDuplicateIcon, description: '管理剪映模板' }, { - name: '素材绑定', + name: '素材', href: '/material-model-binding', icon: LinkIcon, description: '管理素材与模特的绑定关系' }, { - name: 'AI分类设置', + name: '分类', href: '/ai-classification-settings', icon: CpuChipIcon, description: '管理AI视频分类规则' }, { - name: '服装搭配', + name: '穿搭', href: '/fashion-chat', icon: SparklesIcon, description: 'AI智能服装搭配推荐' }, { - name: '便捷工具', + name: '工具', href: '/tools', icon: WrenchScrewdriverIcon, description: 'AI检索图片/数据清洗工具' - }, - { - name: '应用设置', - href: '/settings', - icon: CogIcon, - description: '屏幕适配和应用配置' } ]; @@ -74,7 +67,7 @@ const Navigation: React.FC = () => { return ( - + {/* 增强的 Logo */} @@ -89,7 +82,7 @@ const Navigation: React.FC = () => { - + {navItems.map((item) => { const Icon = item.icon; const active = isActive(item.href); @@ -98,7 +91,7 @@ const Navigation: React.FC = () => {