Skip to content

Commit

Permalink
feat(nx-dev): update documentation dropdown menu links
Browse files Browse the repository at this point in the history
  • Loading branch information
juristr committed Dec 15, 2023
1 parent 7641f73 commit aa7f70a
Showing 1 changed file with 21 additions and 15 deletions.
36 changes: 21 additions & 15 deletions nx-dev/ui-common/src/lib/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,43 +16,49 @@ export function Header(): JSX.Element {
href: '/getting-started/intro',
},
{
name: 'Concepts',
description: 'What to know more about how Nx is working?',
href: '/concepts',
name: 'CI',
description:
'Learn everything about remote cache and distributed tasks configuration.',
href: '/ci/intro/ci-with-nx',
},
// {
// name: 'Concepts',
// description: 'What to know more about how Nx is working?',
// href: '/concepts',
// },
{
name: 'Core Features',
description:
'Learn the core features of Nx with in depth guides and explainers.',
href: '/core-features',
},
{
name: 'Distributed cache & task execution',
name: 'Nx Cache',
description:
'Executes tasks remotely on different agents in parallel. Enable remote cache in one command.',
href: '/ci/features/distribute-task-execution',
'Built-in local and remote caching to speed up your tasks and save you time and money.',
href: '/ci/features/nx-agents',
},
{
name: 'Recipes',
description: 'Follow instructions to do common specific tasks.',
href: '/recipes',
},
{
name: 'Nx Agents',
description:
'Executes tasks remotely on different agents in parallel. Enable remote cache in one command.',
href: '/ci/features/nx-agents',
},
{
name: 'Nx Console',
description:
'The official VSCode & JetBrains plugin bringing Nx to your editor.',
href: '/core-features/integrate-with-editors#vscode',
},
{
name: 'API',
description: 'API docs of the Nx team maintained plugins.',
href: '/nx-api',
},
{
name: 'CI',
description:
'Learn everything about remote cache and distributed tasks configuration.',
href: '/ci/intro/ci-with-nx',
name: 'Set Up CI',
description: 'Set up and configure an efficient CI pipeline with Nx',
href: '/ci/recipes/set-up',
},
];
const flyoutMobileMenu = [
Expand Down

0 comments on commit aa7f70a

Please sign in to comment.