-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathroutes.js
More file actions
42 lines (42 loc) · 795 Bytes
/
routes.js
File metadata and controls
42 lines (42 loc) · 795 Bytes
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
export const routes = {
home: {
url: '/',
title: 'Home',
weight: 0
},
whatWeDo: {
url: '/watwedoen',
title: 'Wat doen we?',
weight: 10
},
nextEdition: {
url: '/volgendeeditie',
title: 'Volgende editie',
weight: 20
},
agenda: {
url: '/agenda',
title: 'Agenda',
weight: 30
},
aboutUs: {
url: '/overons',
title: 'Over ons',
weight: 40
},
extraInfo: {
url: '/extrainfo',
title: 'Extra info',
weight: 50
},
material: {
url: '/material',
title: 'Aan de slag!',
weight: 55
},
mentors: {
url: '/mentoren',
title: 'Mentor worden',
weight: 60
},
};