Add cookies popup (#690)

This commit is contained in:
Brandon Hopkins
2026-04-08 10:25:38 -07:00
committed by GitHub
parent a8b7150ec4
commit 55393f6396
4 changed files with 188 additions and 5 deletions

View File

@@ -1,9 +1,12 @@
import Script from "next/script";
export function MatomoTagManager() {
export function MatomoTagManager({ consentGiven }) {
return (
<Script id="matomo-tag-manager" strategy="afterInteractive">
{`var _mtm = window._mtm = window._mtm || [];
{`var _paq = window._paq = window._paq || [];
_paq.push(['requireCookieConsent']);
${consentGiven ? "_paq.push(['setCookieConsentGiven']);" : ""}
var _mtm = window._mtm = window._mtm || [];
_mtm.push({'mtm.startTime': (new Date().getTime()), 'event': 'mtm.Start'});
(function() {
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];