diff --git a/client/pages/_app.tsx b/client/pages/_app.tsx index 96694e4..50a2938 100644 --- a/client/pages/_app.tsx +++ b/client/pages/_app.tsx @@ -1,4 +1,4 @@ -import { GoogleAnalytics } from "@next/third-parties/google"; +import { GoogleTagManager, GoogleAnalytics } from "@next/third-parties/google"; import { Theme } from "@radix-ui/themes"; import "@radix-ui/themes/styles.css"; import Router from "next/router"; @@ -33,7 +33,12 @@ export default function MyApp({ Component, pageProps }) { > - {isProduction && } + {isProduction && ( + <> + + + + )} ); }