Skip to content

Commit

Permalink
Dropdown for doc on main page (#1508)
Browse files Browse the repository at this point in the history
* Dropdown for doc on main page

* Next round

* Added 'This Week in Nu'

* Remove link to TWiN until other issues are resolved
  • Loading branch information
NotTheDr01ds authored Sep 3, 2024
1 parent 2e3b450 commit 23e1824
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .vuepress/configs/navbar/en.ts
Original file line number Diff line number Diff line change
@@ -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/' },
];

0 comments on commit 23e1824

Please sign in to comment.