From 269f8107fe819d199cb8b97aa521e1d5396febb3 Mon Sep 17 00:00:00 2001 From: Nicholas Cunningham Date: Mon, 8 Jul 2024 16:24:31 -0600 Subject: [PATCH] feat(nx-dev): Add menu redirects --- nx-dev/ui-common/src/lib/footer.tsx | 2 +- nx-dev/ui-common/src/lib/headers/menu-items.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nx-dev/ui-common/src/lib/footer.tsx b/nx-dev/ui-common/src/lib/footer.tsx index 3be04b6ec89145..2e2c66cde1ae4b 100644 --- a/nx-dev/ui-common/src/lib/footer.tsx +++ b/nx-dev/ui-common/src/lib/footer.tsx @@ -8,7 +8,7 @@ export function Footer(): JSX.Element { solutions: [ { name: 'Nx Enterprise', href: '/enterprise' }, { name: 'Nx', href: 'https://nx.dev' }, - { name: 'Nx Cloud', href: 'https://nx.app/?utm_source=nx.dev' }, + { name: 'Nx Cloud', href: '/nx-cloud' }, ], resources: [ { name: 'Blog', href: '/blog' }, diff --git a/nx-dev/ui-common/src/lib/headers/menu-items.ts b/nx-dev/ui-common/src/lib/headers/menu-items.ts index 355e5898a53803..0ce4d558668936 100644 --- a/nx-dev/ui-common/src/lib/headers/menu-items.ts +++ b/nx-dev/ui-common/src/lib/headers/menu-items.ts @@ -105,7 +105,7 @@ export const plans: MenuItem[] = [ name: 'Nx Cloud', description: 'End-to-end solution for smart, efficient and maintainable CI.', - href: 'https://nx.app', + href: '/nx-cloud', icon: null, isNew: false, isHighlight: false,