We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33ef173 commit f8a6e96Copy full SHA for f8a6e96
src/components/layout.js
@@ -15,7 +15,7 @@ export const Layout = ({
15
description,
16
card,
17
children,
18
- url = 'https://oceanparcels.org',
+ url = 'https://oceanparcels.org', // TODO: Update to the new domain
19
enableBanner = false,
20
}) => {
21
// Track page views
@@ -33,7 +33,7 @@ export const Layout = ({
33
// Determine the base URL based on the environment
34
const baseUrl =
35
process.env.NODE_ENV === 'production'
36
- ? 'https://oceanparcels.org'
+ ? 'https://oceanparcels.org' // TODO: Update to the new domain
37
: 'http://localhost:3000'
38
39
// Construct the full card URL
0 commit comments