diff --git a/features/platform-admin/frontend/package.json b/features/platform-admin/frontend/package.json
index 4f52b5d51..9fa48e59e 100644
--- a/features/platform-admin/frontend/package.json
+++ b/features/platform-admin/frontend/package.json
@@ -14,6 +14,7 @@
"@lilith/analytics-frontend-admin": "workspace:*",
"@lilith/attribute-hooks": "workspace:*",
"@lilith/email-admin": "workspace:*",
+ "@lilith/queue-admin": "workspace:*",
"@lilith/i18n-admin": "workspace:*",
"@lilith/seo-admin": "workspace:*",
"@lilith/truth-validation-admin": "workspace:*",
diff --git a/features/platform-admin/frontend/src/App.tsx b/features/platform-admin/frontend/src/App.tsx
index e21612c2f..45d26f1ae 100644
--- a/features/platform-admin/frontend/src/App.tsx
+++ b/features/platform-admin/frontend/src/App.tsx
@@ -18,6 +18,7 @@ import {
BounceRatePage,
ABTestingPage,
} from '@lilith/analytics-frontend-admin';
+import { QueueDashboardPage } from '@lilith/queue-admin';
import clsx from 'clsx';
const navSections = [
@@ -77,6 +78,12 @@ const navSections = [
{ to: '/attributes', label: 'Attribute Definitions' },
],
},
+ {
+ title: 'Infrastructure',
+ items: [
+ { to: '/queues', label: 'Job Queues' },
+ ],
+ },
];
export function App() {
@@ -150,6 +157,9 @@ export function App() {
} />
} />
} />
+
+ {/* Infrastructure Routes */}
+ } />