feat: 添加ComfyUI导航菜单
- 新增ComfyUI主菜单项 - 添加V22仪表板子菜单 - 添加集群管理子菜单 - 添加工作流测试子菜单 - 添加模板创建器测试子菜单 - 完善导航图标和描述
This commit is contained in:
parent
b7c16d70cf
commit
f3c06cc777
|
|
@ -8,7 +8,10 @@ import {
|
||||||
WrenchScrewdriverIcon,
|
WrenchScrewdriverIcon,
|
||||||
SparklesIcon,
|
SparklesIcon,
|
||||||
ChevronDownIcon,
|
ChevronDownIcon,
|
||||||
|
ChartBarIcon,
|
||||||
|
RectangleStackIcon,
|
||||||
} from '@heroicons/react/24/outline';
|
} from '@heroicons/react/24/outline';
|
||||||
|
import { PlayIcon, ServerIcon } from 'lucide-react';
|
||||||
|
|
||||||
// 导航项类型定义
|
// 导航项类型定义
|
||||||
interface NavItem {
|
interface NavItem {
|
||||||
|
|
@ -69,6 +72,37 @@ const Navigation: React.FC = () => {
|
||||||
icon: SparklesIcon,
|
icon: SparklesIcon,
|
||||||
description: 'AI穿搭方案推荐与素材检索'
|
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: '工具',
|
name: '工具',
|
||||||
href: '/tools',
|
href: '/tools',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue