diff --git a/marketing/layouts/LayoutWrapper/LayoutWrapper.tsx b/marketing/layouts/LayoutWrapper/LayoutWrapper.tsx index f0d2f0e0..fa21e105 100644 --- a/marketing/layouts/LayoutWrapper/LayoutWrapper.tsx +++ b/marketing/layouts/LayoutWrapper/LayoutWrapper.tsx @@ -3,6 +3,8 @@ import { ThemeContext } from 'contexts/ThemeProvider'; import Nav from '@Navigation/Nav/Nav'; import Footer from '@Navigation/Footer/Footer'; import { NavigationT } from 'types'; +import Head from 'next/head'; +import { GA_TRACKING_ID } from 'services/analytics.service'; type LayoutWrapperPropsT = { navData?: NavigationT; @@ -18,14 +20,33 @@ const LayoutWrapper = ({ navData, children }: LayoutWrapperPropsT) => { const themeContext = useContext(ThemeContext); return ( - // Hard coding light while dark theme is being designed - //
-
-
-
+ <> + + {/* Google Analytics script */} +