-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathmenuItems.js
57 lines (57 loc) · 965 Bytes
/
menuItems.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
48
49
50
51
52
53
54
55
56
57
export const menuItems = [
{
title: 'Home',
url: '/',
},
{
title: 'Services',
url: '/services',
submenu: [
{
title: 'web design',
url: 'web-design',
},
{
title: 'web development',
url: 'web-dev',
submenu: [
{
title: 'Frontend',
url: 'frontend',
},
{
title: 'Backend',
submenu: [
{
title: 'NodeJS',
url: 'node',
},
{
title: 'PHP',
url: 'php',
},
],
},
],
},
{
title: 'SEO',
url: 'seo',
},
],
},
{
title: 'About',
url: '/about',
submenu: [
{
title: 'Who we are',
url: 'who-we-are',
},
{
title: 'Our values',
url: 'our-values',
},
],
},
];