website: Add Demandbase tag to consent manager (#11941)
* chore: Add Demandbase tag to consent manager * fix: Add services to manager options
This commit is contained in:
parent
9a3a440dcf
commit
9dcb7306da
15
website/lib/consent-manager-services/index.ts
Normal file
15
website/lib/consent-manager-services/index.ts
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
import { ConsentManagerService } from '@hashicorp/react-consent-manager/types'
|
||||||
|
|
||||||
|
const localConsentManagerServices: ConsentManagerService[] = [
|
||||||
|
{
|
||||||
|
name: 'Demandbase Tag',
|
||||||
|
description:
|
||||||
|
'The Demandbase tag is a tracking service to identify website visitors and measure interest on our website.',
|
||||||
|
category: 'Analytics',
|
||||||
|
url: 'https://tag.demandbase.com/960ab0a0f20fb102.min.js',
|
||||||
|
async: true,
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
|
export default localConsentManagerServices
|
||||||
|
|
|
@ -6,6 +6,7 @@ import Head from 'next/head'
|
||||||
import NProgress from '@hashicorp/platform-util/nprogress'
|
import NProgress from '@hashicorp/platform-util/nprogress'
|
||||||
import { ErrorBoundary } from '@hashicorp/platform-runtime-error-monitoring'
|
import { ErrorBoundary } from '@hashicorp/platform-runtime-error-monitoring'
|
||||||
import createConsentManager from '@hashicorp/react-consent-manager/loader'
|
import createConsentManager from '@hashicorp/react-consent-manager/loader'
|
||||||
|
import localConsentManagerServices from 'lib/consent-manager-services'
|
||||||
import useFathomAnalytics from '@hashicorp/platform-analytics'
|
import useFathomAnalytics from '@hashicorp/platform-analytics'
|
||||||
import useAnchorLinkAnalytics from '@hashicorp/platform-util/anchor-link-analytics'
|
import useAnchorLinkAnalytics from '@hashicorp/platform-util/anchor-link-analytics'
|
||||||
import HashiStackMenu from '@hashicorp/react-hashi-stack-menu'
|
import HashiStackMenu from '@hashicorp/react-hashi-stack-menu'
|
||||||
|
@ -19,6 +20,7 @@ import alertBannerData, { ALERT_BANNER_ACTIVE } from 'data/alert-banner'
|
||||||
NProgress({ Router })
|
NProgress({ Router })
|
||||||
const { ConsentManager, openConsentManager } = createConsentManager({
|
const { ConsentManager, openConsentManager } = createConsentManager({
|
||||||
preset: 'oss',
|
preset: 'oss',
|
||||||
|
otherServices: [...localConsentManagerServices],
|
||||||
})
|
})
|
||||||
|
|
||||||
export default function App({ Component, pageProps }) {
|
export default function App({ Component, pageProps }) {
|
||||||
|
|
Loading…
Reference in a new issue