From d3ced1864392fa3dfeaa823d8093d0694a6a3971 Mon Sep 17 00:00:00 2001 From: leomcelroy Date: Mon, 24 Jan 2022 15:22:50 -0500 Subject: [PATCH] added plausible (#316) --- components/analytics.js | 9 +++++++++ pages/_app.js | 3 +++ 2 files changed, 12 insertions(+) create mode 100644 components/analytics.js 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 }) => ( + )