From 256515b1ccc4ae80d68389135d1306084b5fd708 Mon Sep 17 00:00:00 2001 From: Erik van Sebille Date: Wed, 23 Apr 2025 08:55:33 +0200 Subject: [PATCH] Updating links in footer items And also copyright message --- src/components/footer.js | 2 +- src/data/footer-items.js | 16 ++++++++-------- src/lib/rss-feed.js | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/components/footer.js b/src/components/footer.js index 8a8daa9..8c516b5 100644 --- a/src/components/footer.js +++ b/src/components/footer.js @@ -69,7 +69,7 @@ export const Footer = () => { - © {new Date().getFullYear()}, Parcels core developers. Apache 2.0 + © {new Date().getFullYear()}, Virtual Ship developers. Apache 2.0 Licensed. diff --git a/src/data/footer-items.js b/src/data/footer-items.js index 072e155..19b160f 100644 --- a/src/data/footer-items.js +++ b/src/data/footer-items.js @@ -3,7 +3,7 @@ export const footerItems = { { label: 'Blog', href: '/blog' }, { label: 'Brand Assets', - href: 'https://github.com/OceanParcels/oceanparcels_website/tree/main/public/virtualship-assets', + href: 'https://github.com/OceanParcels/virtualship_website/tree/main/public/virtualship-assets', }, { label: 'Accessibility', href: '/accessibility' }, ], @@ -11,30 +11,30 @@ export const footerItems = { resources: [ { label: 'Documentation', - href: 'https://docs.oceanparcels.org/en/latest/index.html', + href: 'https://virtualship.oceanparcels.org/en/latest/', // TODO: update to new domain after deployment }, { label: 'Installation', - href: 'https://docs.oceanparcels.org/en/latest/installation.html', + href: 'https://virtualship.oceanparcels.org/en/latest/#installation', // TODO: update to new domain after deployment }, { - label: 'Tutorials', - href: 'https://docs.oceanparcels.org/en/latest/documentation/index.html', + 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://docs.oceanparcels.org/en/latest/community/index.html', + 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/parcels/discussions', + href: 'https://github.com/OceanParcels/virtualship/discussions', }, { label: 'Issue Tracker', - href: 'https://github.com/OceanParcels/parcels/issues', + href: 'https://github.com/OceanParcels/virtualship/issues', }, ], } diff --git a/src/lib/rss-feed.js b/src/lib/rss-feed.js index ce1549b..3e56486 100644 --- a/src/lib/rss-feed.js +++ b/src/lib/rss-feed.js @@ -17,7 +17,7 @@ const feed = new Feed({ language: 'en', image: `${siteUrl}/virtualship-assets/virtual_ship_logo_no-text.png`, favicon: `${siteUrl}/favicon.ico`, - copyright: `© ${new Date().getFullYear()}, Parcels core developers. Apache 2.0 Licensed`, + copyright: `© ${new Date().getFullYear()}, Virtual Ship developers. Apache 2.0 Licensed`, feedLinks: { rss2: `${siteUrl}/rss.xml`, json: `${siteUrl}/rss.json`,