From f3c06cc777d3722fb56ec618aa7c2776092f7223 Mon Sep 17 00:00:00 2001 From: imeepos Date: Mon, 11 Aug 2025 18:05:49 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0ComfyUI=E5=AF=BC?= =?UTF-8?q?=E8=88=AA=E8=8F=9C=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增ComfyUI主菜单项 - 添加V22仪表板子菜单 - 添加集群管理子菜单 - 添加工作流测试子菜单 - 添加模板创建器测试子菜单 - 完善导航图标和描述 --- apps/desktop/src/components/Navigation.tsx | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) 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',