Removed Cloudflare tracking

This commit is contained in:
Neshura 2023-03-17 00:21:02 +01:00
parent 15aa9a163a
commit 4b70f4892c
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C

View file

@ -11,11 +11,6 @@ const Layout = ({ children }: { children: React.ReactNode }) => {
if(isMobile) { if(isMobile) {
ret = ( ret = (
<Page mobile={isMobile}> <Page mobile={isMobile}>
<Script id="matomo_analytics"
defer src='https://static.cloudflareinsights.com/beacon.min.js'
data-cf-beacon='{"token": "826fc083aa86417890c0ceb3e0a597fa"}'>
</Script>
<PageNavbar mobile={isMobile}/> <PageNavbar mobile={isMobile}/>
<Main> <Main>
{children} {children}
@ -26,11 +21,6 @@ const Layout = ({ children }: { children: React.ReactNode }) => {
else { else {
ret = ( ret = (
<Page> <Page>
<Script id="matomo_analytics"
defer src='https://static.cloudflareinsights.com/beacon.min.js'
data-cf-beacon='{"token": "826fc083aa86417890c0ceb3e0a597fa"}'>
</Script>
<PageNavbar mobile={isMobile}/> <PageNavbar mobile={isMobile}/>
<Main> <Main>
{children} {children}