We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6fab6d commit 8a1e5d1Copy full SHA for 8a1e5d1
1 file changed
components/Navigation/index.jsx
@@ -18,7 +18,23 @@ export default () => {
18
<NavBar
19
Logo={Logo}
20
sidebarItemTogglerAriaLabel="Toggle navigation menu"
21
- navItems={[]}
+ navItems={[
22
+ { link: '/learn', text: 'Learn' },
23
+ { link: '/about', text: 'About' },
24
+ { link: '/download', text: 'Download' },
25
+ { link: '/blog', text: 'Blog' },
26
+ { link: 'https://nodejs.org/docs/latest/api/', text: 'Docs' },
27
+ {
28
+ link: 'https://github.com/nodejs/node/blob/main/CONTRIBUTING.md',
29
+ text: 'Contribute',
30
+ target: '_blank',
31
+ },
32
33
+ link: 'https://training.linuxfoundation.org/openjs/',
34
+ text: 'Courses',
35
36
37
+ ]}
38
>
39
<SearchBox />
40
<ThemeToggle
0 commit comments