Skip to content

Commit 23e1824

Browse files
authored
Dropdown for doc on main page (nushell#1508)
* Dropdown for doc on main page * Next round * Added 'This Week in Nu' * Remove link to TWiN until other issues are resolved
1 parent 2e3b450 commit 23e1824

File tree

1 file changed

+12
-5
lines changed
  • .vuepress/configs/navbar

1 file changed

+12
-5
lines changed

.vuepress/configs/navbar/en.ts

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
import type { NavbarConfig } from '@vuepress/theme-default';
22

33
export const navbarEn: NavbarConfig = [
4-
{ text: 'Book', link: '/book/' },
5-
{ text: 'Commands', link: '/commands/' },
6-
{ text: 'Contrib', link: '/contributor-book/' },
7-
{ text: 'Cookbook', link: '/cookbook/' },
4+
{ text: 'Get Nu!', link: '/book/installation' },
5+
{ text: 'Getting Started', link: '/book/getting_started' },
6+
{
7+
text: 'Documentation',
8+
children: [
9+
{ text: 'The Nushell Book', link: '/book/' },
10+
{ text: 'Command Reference', link: '/commands/' },
11+
{ text: 'Cookbook', link: '/cookbook/' },
12+
{ text: 'Language Reference Guide', link: '/lang-guide/' },
13+
{ text: 'Contributing Guide', link: '/contributor-book/' },
14+
],
15+
},
816
{ text: 'Blog', link: '/blog/' },
9-
{ text: 'Ref', link: '/lang-guide/' },
1017
];

0 commit comments

Comments
 (0)