Skip to content

Commit 8a1e5d1

Browse files
committed
fixup!
1 parent b6fab6d commit 8a1e5d1

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

components/Navigation/index.jsx

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,23 @@ export default () => {
1818
<NavBar
1919
Logo={Logo}
2020
sidebarItemTogglerAriaLabel="Toggle navigation menu"
21-
navItems={[]}
21+
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+
target: '_blank',
36+
},
37+
]}
2238
>
2339
<SearchBox />
2440
<ThemeToggle

0 commit comments

Comments
 (0)