diff --git a/.gitignore b/.gitignore
index 0298027e4..5da11f77f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -36,3 +36,4 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts
+.idea
diff --git a/app/layout.tsx b/app/layout.tsx
index 58f5a9708..2b6c434a8 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -3,6 +3,7 @@ import { GeistSans } from 'geist/font';
import { ensureStartsWith } from 'lib/utils';
import { ReactNode, Suspense } from 'react';
import './globals.css';
+import ShopifyAnalytics from 'components/layout/shopify-analytics';
const { TWITTER_CREATOR, TWITTER_SITE, SITE_NAME } = process.env;
const baseUrl = process.env.NEXT_PUBLIC_VERCEL_URL
@@ -39,6 +40,7 @@ export default async function RootLayout({ children }: { children: ReactNode })
{children}
+