chore: add ga

This commit is contained in:
cnrad
2025-02-03 02:14:20 -05:00
parent f6fc111124
commit 7b768a6231
3 changed files with 26 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
import type { Metadata } from "next";
import { GoogleAnalytics } from "@next/third-parties/google";
import "./globals.css";
import { Poppins } from "next/font/google";
@@ -26,6 +27,7 @@ export default function RootLayout({
return (
<html lang="en">
<body className={`${poppins.className} antialiased`}>{children}</body>
<GoogleAnalytics gaId="G-89E40D5N6D" />
</html>
);
}