PR Fixes
This commit is contained in:
18
components/TrackingSDK/GTMScript.tsx
Normal file
18
components/TrackingSDK/GTMScript.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import Script from "next/script"
|
||||
|
||||
import { env } from "@/env/server"
|
||||
|
||||
export default function GTMScript() {
|
||||
return env.ENABLE_GTMSCRIPT ? (
|
||||
<Script
|
||||
id="gtm-script-tag"
|
||||
data-cookieconsent="statistics"
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://analytics.scandichotels.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','adobeDataLayer','GTM-KNJCW67W');
|
||||
`,
|
||||
}}
|
||||
async
|
||||
/>
|
||||
) : null
|
||||
}
|
||||
Reference in New Issue
Block a user