diff --git a/app/_components/google-analytics.tsx b/app/_components/google-analytics.tsx
new file mode 100644
index 00000000..57df01e9
--- /dev/null
+++ b/app/_components/google-analytics.tsx
@@ -0,0 +1,5 @@
+'use client';
+
+import { GoogleAnalytics } from "nextjs-google-analytics";
+
+export const Analytics = () => ;
\ No newline at end of file
diff --git a/app/layout.tsx b/app/layout.tsx
index f7cd58af..49d905a7 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -5,6 +5,7 @@ import { cn } from '@/lib/utils';
import './globals.css';
import { sans } from './fonts';
import { AnalyticsWrapper } from './_components/analytics';
+import { Analytics } from './_components/google-analytics';
import { SiteHeader } from './_components/site-header';
import { SiteFooter } from './_components/site-footer';
@@ -34,6 +35,7 @@ const Layout = ({ children }: LayoutProps) => (
+