Integrate google analytics

This commit is contained in:
Kamran Ahmed
2021-09-05 18:40:02 +02:00
parent 0067cfdbc6
commit dd43969dfb
2 changed files with 11 additions and 5 deletions

View File

@ -1,9 +1,15 @@
import { useEffect } from 'react';
import type { AppProps } from 'next/app';
import { ChakraProvider } from '@chakra-ui/react';
import { roadmapTheme } from '../lib/theme';
import 'prism-themes/themes/prism-shades-of-purple.css';
import { roadmapTheme } from '../lib/theme';
import { firePageView } from '../lib/gtag';
function MyApp({ Component, pageProps }: AppProps) {
useEffect(() => {
firePageView(window.location.pathname);
}, []);
return (
<ChakraProvider theme={roadmapTheme}>
<Component {...pageProps} />