summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/layout.tsx7
1 files changed, 4 insertions, 3 deletions
diff --git a/app/layout.tsx b/app/layout.tsx
index b41b50f..f693908 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -1,4 +1,6 @@
import type { Metadata } from "next";
+import { GoogleAnalytics } from '@next/third-parties/google'
+
import localFont from "next/font/local";
import "./globals.css";
@@ -25,11 +27,10 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
- <body
- className={`${geistSans.variable} ${geistMono.variable} antialiased`}
- >
+ <body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
{children}
</body>
+ <GoogleAnalytics gaId="G-31LHNP2G97" />
</html>
);
}