From 17dd6edc8f95cdd6ff2852764261d411f72ec5aa Mon Sep 17 00:00:00 2001 From: snmln Date: Wed, 30 Oct 2024 16:42:43 -0400 Subject: [PATCH] turning on cookie consent form --- veda.config.js | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/veda.config.js b/veda.config.js index a2a606660..00ea03f04 100644 --- a/veda.config.js +++ b/veda.config.js @@ -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)", + }, };