export const adminNavConfig = [ { section: "Overview", items: [ { id: "analytics", label: "Analytics", icon: "chart", href: "/admin/dashboard/analytics", }, { id: "metrics", label: "Metrics", icon: "metrics", href: "/metrics", }, ], }, { section: "Work", items: [ { id: "sites-jira", label: "Jira Dash", icon: "projects", href: "/admin/jira", }, { id: "project-tracking", label: "Site", icon: "tracking", href: "/admin/sites", }, { id: "issues", label: "Issues", icon: "issues", href: "/issues", }, // Deprecated: Sync page is still available at /sync but hidden from navigation. // It is superseded by orchestrator-driven sync flows. // { // id: "sync", // label: "Sync", // icon: "sync", // href: "/sync", // }, { id: "progress", label: "Progress", icon: "progress", href: "/progress", }, { id: "jira-cloud", label: "Open Jira Cloud", icon: "projects", href: "https://pamcms.atlassian.net", }, ], }, { section: "Automation", items: [ { id: "pipelines", label: "Pipelines", icon: "pipeline", children: [ { id: "nightly", label: "Nightly Builds", href: "/pipelines/nightly", }, { id: "webhooks", label: "Webhooks", href: "/webhooks", }, { id: "ci", label: "CI Integration", href: "/ci", }, ], }, { id: "batch", label: "Batch Operations", icon: "batch", href: "/batch", }, { id: "execute", label: "AI Execution", icon: "execute", href: "/execute", }, ], }, { section: "Content", items: [ { id: "prompts", label: "Prompts", icon: "prompts", href: "/prompts", }, { id: "pr", label: "PR Builder", icon: "pr", href: "/pr", }, { id: "acceptance", label: "Acceptance Criteria", icon: "acceptance", href: "/acceptance", }, ], }, { section: "Security", items: [ { id: "api-keys", label: "API Keys", icon: "key", href: "/security/api-keys", }, { id: "audit", label: "Audit Logs", icon: "audit", href: "/security/audit", }, ], }, { section: "Settings", items: [ { id: "config", label: "Configuration", icon: "config", href: "/config", }, { id: "git", label: "Git Validation", icon: "git", href: "/git", }, { id: "task-folders", label: "Task Folders", icon: "folder", href: "/task-folders", }, ], }, ] as const;