From 7846e51001defdd20a068a80110a5a2b9079b444 Mon Sep 17 00:00:00 2001 From: dleffel Date: Sun, 29 Jun 2025 10:20:58 -0700 Subject: [PATCH 1/2] feat: add Google Tag Manager to website - Add GTM script tag in head section as high as possible - Add GTM noscript fallback immediately after body opening tag - Use container ID GTM-M2JZHV8N as specified - Implement in root layout for site-wide coverage - Follow Google's implementation guidelines and Next.js best practices --- apps/web-roo-code/src/app/layout.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/apps/web-roo-code/src/app/layout.tsx b/apps/web-roo-code/src/app/layout.tsx index 23d67ea48f5..ca166e54b6e 100644 --- a/apps/web-roo-code/src/app/layout.tsx +++ b/apps/web-roo-code/src/app/layout.tsx @@ -45,6 +45,17 @@ export default function RootLayout({ children }: { children: React.ReactNode }) return ( + {/* Google Tag Manager */} +