diff --git a/components/analytics.js b/components/analytics.js new file mode 100644 index 00000000..584513ad --- /dev/null +++ b/components/analytics.js @@ -0,0 +1,9 @@ + +export default () => ( + + +) diff --git a/pages/_app.js b/pages/_app.js index f6c9197b..2f68acfe 100755 --- a/pages/_app.js +++ b/pages/_app.js @@ -1,6 +1,8 @@ import React from 'react' import Head from 'next/head' +import Analytics from "../components/analytics.js"; + import Meta from '@hackclub/meta' import '@hackclub/theme/fonts/reg-bold.css' import theme from '../lib/theme' @@ -10,6 +12,7 @@ const App = ({ Component, pageProps }) => ( + )