Skip to content

Commit

Permalink
Merge pull request #475 from NASA-IMPACT/fix/cookie-consent-ON
Browse files Browse the repository at this point in the history
turning on cookie consent form
  • Loading branch information
snmln authored Oct 30, 2024
2 parents a605f41 + 17dd6ed commit d3f2422
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions veda.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,29 @@ module.exports = {
/**
* Glob path for the datasets.
*/
datasets: './datasets/*.data.mdx',
datasets: "./datasets/*.data.mdx",

/**
* Glob path for the stories.
*/
stories: './stories/*.stories.mdx',
stories: "./stories/*.stories.mdx",

// App component and content overrides.
// See docs/CONFIGURATION.md for more information.
pageOverrides: {
// Content for the about page.
// Type: Content override
aboutContent: './overrides/about.mdx'
aboutContent: "./overrides/about.mdx",
},

strings: {
stories: {
one: ' Data Story',
other: 'Data Stories'
}
}
one: " Data Story",
other: "Data Stories",
},
},
cookieConsentForm: {
title: "Cookie Consent",
copy: "We use cookies to enhance your browsing experience and to help us understand how our website is used. These cookies allow us to collect data on site usage and improve our services based on your interactions. To learn more about it, see our [Privacy Policy](https://www.nasa.gov/privacy/#cookies)",
},
};

0 comments on commit d3f2422

Please sign in to comment.