Skip to content

Commit 494aaa4

Browse files
Merge pull request #17 from OceanParcels/updating-footer-items
Updating links in footer items
2 parents 7786cad + 256515b commit 494aaa4

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

src/components/footer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export const Footer = () => {
6969
</Box>
7070

7171
<Text fontSize={'sm'}>
72-
© {new Date().getFullYear()}, Parcels core developers. Apache 2.0
72+
© {new Date().getFullYear()}, Virtual Ship developers. Apache 2.0
7373
Licensed.
7474
</Text>
7575
</Stack>

src/data/footer-items.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,38 +3,38 @@ export const footerItems = {
33
{ label: 'Blog', href: '/blog' },
44
{
55
label: 'Brand Assets',
6-
href: 'https://github.com/OceanParcels/oceanparcels_website/tree/main/public/virtualship-assets',
6+
href: 'https://github.com/OceanParcels/virtualship_website/tree/main/public/virtualship-assets',
77
},
88
{ label: 'Accessibility', href: '/accessibility' },
99
],
1010

1111
resources: [
1212
{
1313
label: 'Documentation',
14-
href: 'https://docs.oceanparcels.org/en/latest/index.html',
14+
href: 'https://virtualship.oceanparcels.org/en/latest/', // TODO: update to new domain after deployment
1515
},
1616
{
1717
label: 'Installation',
18-
href: 'https://docs.oceanparcels.org/en/latest/installation.html',
18+
href: 'https://virtualship.oceanparcels.org/en/latest/#installation', // TODO: update to new domain after deployment
1919
},
2020
{
21-
label: 'Tutorials',
22-
href: 'https://docs.oceanparcels.org/en/latest/documentation/index.html',
21+
label: 'User Guide',
22+
href: 'https://virtualship.oceanparcels.org/en/latest/user-guide/index.html', // TODO: update to new domain after deployment
2323
},
2424
],
2525

2626
community: [
2727
{
2828
label: 'Contribute',
29-
href: 'https://docs.oceanparcels.org/en/latest/community/index.html',
29+
href: 'https://virtualship.oceanparcels.org/en/latest/contributing/index.html', // TODO: update to new domain after deployment
3030
},
3131
{
3232
label: 'GitHub Discussions',
33-
href: 'https://github.com/OceanParcels/parcels/discussions',
33+
href: 'https://github.com/OceanParcels/virtualship/discussions',
3434
},
3535
{
3636
label: 'Issue Tracker',
37-
href: 'https://github.com/OceanParcels/parcels/issues',
37+
href: 'https://github.com/OceanParcels/virtualship/issues',
3838
},
3939
],
4040
}

src/lib/rss-feed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const feed = new Feed({
1717
language: 'en',
1818
image: `${siteUrl}/virtualship-assets/virtual_ship_logo_no-text.png`,
1919
favicon: `${siteUrl}/favicon.ico`,
20-
copyright: ${new Date().getFullYear()}, Parcels core developers. Apache 2.0 Licensed`,
20+
copyright: ${new Date().getFullYear()}, Virtual Ship developers. Apache 2.0 Licensed`,
2121
feedLinks: {
2222
rss2: `${siteUrl}/rss.xml`,
2323
json: `${siteUrl}/rss.json`,

0 commit comments

Comments
 (0)