Skip to content

Commit

Permalink
turning on cookie consent form
Browse files Browse the repository at this point in the history
  • Loading branch information
snmln committed Oct 30, 2024
1 parent a605f41 commit 17dd6ed
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 17dd6ed

Please sign in to comment.