-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfooter-items.js
More file actions
40 lines (38 loc) · 1.19 KB
/
footer-items.js
File metadata and controls
40 lines (38 loc) · 1.19 KB
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
export const footerItems = {
parcels: [
{ label: 'Blog', href: '/blog' },
{
label: 'Brand Assets',
href: 'https://github.com/OceanParcels/virtualship_website/tree/main/public/virtualship-assets',
},
{ label: 'Accessibility', href: '/accessibility' },
],
resources: [
{
label: 'Documentation',
href: 'https://virtualship.oceanparcels.org/en/latest/', // TODO: update to new domain after deployment
},
{
label: 'Installation',
href: 'https://virtualship.oceanparcels.org/en/latest/#installation', // TODO: update to new domain after deployment
},
{
label: 'User Guide',
href: 'https://virtualship.oceanparcels.org/en/latest/user-guide/index.html', // TODO: update to new domain after deployment
},
],
community: [
{
label: 'Contribute',
href: 'https://virtualship.oceanparcels.org/en/latest/contributing/index.html', // TODO: update to new domain after deployment
},
{
label: 'GitHub Discussions',
href: 'https://github.com/OceanParcels/virtualship/discussions',
},
{
label: 'Issue Tracker',
href: 'https://github.com/OceanParcels/virtualship/issues',
},
],
}