-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathnav-items.js
47 lines (45 loc) · 950 Bytes
/
nav-items.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/** @typedef {import('semantic-ui-react').MenuItemProps} MenuItemProps */
/**
* @type {{
* menuItems: MenuItemProps[];
* secondaryMenuItems: MenuItemProps[];
* }} */
const menuItems = {
menuItems: [
{
href: '/',
children: 'Home'
},
{
href: '/blog/get-started',
children: 'Get Started'
},
{
href: 'https://medium.com/swlh/webpack-5-module-federation-a-game-changer-to-javascript-architecture-bcdd30e02669',
children: 'Learn More',
rel: 'noopener noreferrer',
target: 'blank'
},
{
href: '/blog',
children: 'Blog'
},
{
href: '/videos',
children: 'Videos'
},
{
href: '/contact',
children: "Contact Us"
}
],
secondaryMenuItems: [
{
href: 'https://github.com/module-federation',
children: 'GitHub',
rel: 'noopener noreferrer',
target: 'blank'
}
]
}
export default menuItems