From 261a906486f7fb17faa2464d6eebffbec6e028ee Mon Sep 17 00:00:00 2001 From: Claude Code Date: Wed, 25 Mar 2026 23:56:31 -0700 Subject: [PATCH] =?UTF-8?q?chore(frontend-admin):=20=F0=9F=94=A7=20Update?= =?UTF-8?q?=20admin=20navigation=20structure=20in=20navigation.config.ts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- .../src/config/navigation.config.ts | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/features/platform-admin/frontend-admin/src/config/navigation.config.ts b/features/platform-admin/frontend-admin/src/config/navigation.config.ts index 877bfa614..594634ccf 100755 --- a/features/platform-admin/frontend-admin/src/config/navigation.config.ts +++ b/features/platform-admin/frontend-admin/src/config/navigation.config.ts @@ -301,11 +301,26 @@ export const NAVIGATION_SECTIONS: NavSection[] = [ label: 'Translation Status', description: 'Locale coverage and verification', }, + { + to: '/content/translations/manage', + label: 'Translation Manager', + description: 'Trigger translations, view coverage, manage ML pipeline', + }, { to: '/content/calendar', label: 'Content Calendar', description: 'Scheduled content timeline', }, + { + to: '/content/lifecycle', + label: 'Content Lifecycle', + description: 'Domain readiness, audit results, publish decisions', + }, + { + to: '/content/drafts', + label: 'Content Drafts', + description: 'Draft management, editing, and publishing', + }, { to: '/content/blog', label: 'Blog Editor', @@ -373,6 +388,31 @@ export const NAVIGATION_SECTIONS: NavSection[] = [ label: 'Analytics', description: 'Search performance and rankings', }, + { + to: '/seo/domains', + label: 'Domain Config', + description: 'SEO domain configuration and deployment', + }, + { + to: '/seo/library', + label: 'Content Library', + description: 'SEO content library and templates', + }, + { + to: '/seo/campaigns/new', + label: 'Campaign Manager', + description: 'Create and manage SEO campaigns', + }, + { + to: '/seo/production', + label: 'Production', + description: 'SEO content production pipeline', + }, + { + to: '/seo/jobs', + label: 'Pipeline Jobs', + description: 'SEO pipeline job monitoring', + }, ], },