Skip to content

Commit

Permalink
add analytics to website
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxwell Omdal committed Dec 17, 2023
1 parent 518ec22 commit 8181c70
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
import '@/styles/globals.css'
import type { AppProps } from 'next/app'
import Script from 'next/script'

export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
return (
<>
<Script data-goatcounter="https://sequoiafabrica.goatcounter.com/count"
async src="//gc.zgo.at/count.js"></Script>
<Component {...pageProps} />
</>
}

0 comments on commit 8181c70

Please sign in to comment.