diff --git a/apps/desktop/src/components/Navigation.tsx b/apps/desktop/src/components/Navigation.tsx index 6ad62e5..8ec51b2 100644 --- a/apps/desktop/src/components/Navigation.tsx +++ b/apps/desktop/src/components/Navigation.tsx @@ -8,7 +8,10 @@ import { WrenchScrewdriverIcon, SparklesIcon, ChevronDownIcon, + ChartBarIcon, + RectangleStackIcon, } from '@heroicons/react/24/outline'; +import { PlayIcon, ServerIcon } from 'lucide-react'; // 导航项类型定义 interface NavItem { @@ -69,6 +72,37 @@ const Navigation: React.FC = () => { icon: SparklesIcon, description: 'AI穿搭方案推荐与素材检索' }, + { + name: 'ComfyUI', + icon: RectangleStackIcon, + description: 'AI工作流管理平台', + children: [ + { + name: 'V2 仪表板', + href: '/comfyui-v2-dashboard', + icon: ChartBarIcon, + description: '现代化AI工作流管理仪表板' + }, + { + name: '集群管理', + href: '/comfyui-management', + icon: ServerIcon, + description: '分布式ComfyUI集群管理' + }, + { + name: '工作流测试', + href: '/comfyui-workflow-test', + icon: PlayIcon, + description: '工作流测试和调试' + }, + { + name: '模板创建器测试', + href: '/workflow-template-creator-test', + icon: DocumentDuplicateIcon, + description: '工作流模板创建器功能测试' + } + ] + }, { name: '工具', href: '/tools',