From 781f69e95a5f979e5573ad730d0577e57d7e5618 Mon Sep 17 00:00:00 2001 From: coderipper Date: Mon, 25 Nov 2024 10:49:37 -0300 Subject: [PATCH] added google analytics tag --- apps/dapp/app/layout.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/dapp/app/layout.tsx b/apps/dapp/app/layout.tsx index 81704878..2b5f4859 100644 --- a/apps/dapp/app/layout.tsx +++ b/apps/dapp/app/layout.tsx @@ -1,5 +1,7 @@ +import { GoogleAnalytics } from '@next/third-parties/google'; import { ReactNode } from "react"; import { Providers } from "../src/providers/main-provider"; + export default function RootLayout({ children, }: { @@ -10,6 +12,7 @@ export default function RootLayout({ {children} + ) } \ No newline at end of file