Added google analytics

This commit is contained in:
2024-10-15 12:24:05 +05:30
parent 1523b58d6f
commit 9c93849c8b
12 changed files with 751 additions and 451 deletions

View File

@ -1,5 +1,6 @@
import '../globals.css';
import { GoogleAnalytics } from '@next/third-parties/google';
import { ReactNode } from 'react';
import { Footer } from '@/components/footer';
@ -27,6 +28,7 @@ export default function RootLayout({ children }: RootLayoutProps) {
</RegionProvider>
<Footer />
</body>
<GoogleAnalytics gaId='G-R3FGFLLVRX' />
</html>
);
}