// Used? export const mainNavConfig = [ { id: "platform", label: "Platform", type: "mega" as const, columns: [ { title: "Orchestrator Core", items: [ { label: "Dashboard", href: "/admin/dashboard", icon: "dashboard", description: "Overview and analytics", }, { label: "Sites", href: "/sites", icon: "sites", description: "Manage all sites", }, { label: "Jira Integration", href: "/jira", icon: "jira", description: "Jira ticket management", }, ], }, { title: "Automation", items: [ { label: "Pipelines", href: "/pipelines", description: "CI/CD workflows", }, { label: "Nightly Builds", href: "/nightly-builds", description: "Automated builds", }, { label: "Webhooks", href: "/webhooks", description: "Event integrations", }, ], }, { title: "AI & Agents", items: [ { label: "AI Execution", href: "/execute", description: "AI-powered workflows", }, { label: "Prompts", href: "/prompts", description: "Prompt management", }, ], }, ], }, { id: "resources", label: "Resources", type: "dropdown" as const, items: [ { label: "Blog", href: "/blog", }, { label: "Community", href: "/community", }, { label: "Support", href: "/support", }, { label: "Status", href: "/status", }, ], }, ] as const;