diff --git a/.vuepress/configs/navbar/en.ts b/.vuepress/configs/navbar/en.ts index 1a7768d94fc..2a0e339d374 100644 --- a/.vuepress/configs/navbar/en.ts +++ b/.vuepress/configs/navbar/en.ts @@ -1,10 +1,17 @@ import type { NavbarConfig } from '@vuepress/theme-default'; export const navbarEn: NavbarConfig = [ - { text: 'Book', link: '/book/' }, - { text: 'Commands', link: '/commands/' }, - { text: 'Contrib', link: '/contributor-book/' }, - { text: 'Cookbook', link: '/cookbook/' }, + { text: 'Get Nu!', link: '/book/installation' }, + { text: 'Getting Started', link: '/book/getting_started' }, + { + text: 'Documentation', + children: [ + { text: 'The Nushell Book', link: '/book/' }, + { text: 'Command Reference', link: '/commands/' }, + { text: 'Cookbook', link: '/cookbook/' }, + { text: 'Language Reference Guide', link: '/lang-guide/' }, + { text: 'Contributing Guide', link: '/contributor-book/' }, + ], + }, { text: 'Blog', link: '/blog/' }, - { text: 'Ref', link: '/lang-guide/' }, ];