feat: re-implement analytics

This commit is contained in:
2023-11-22 20:33:51 +01:00
parent 2ab00bc14c
commit 4bc5078047
3 changed files with 7 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
<feed xmlns="http://www.w3.org/2005/Atom">
<id>https://srizan.dev/blog</id>
<title>Sr Izan's Blog</title>
<updated>2023-11-20T20:13:38.131Z</updated>
<updated>2023-11-22T19:33:24.119Z</updated>
<generator>https://github.com/jpmonette/feed</generator>
<author>
<name>Sr Izan</name>

View File

@@ -4,7 +4,7 @@
<title>Sr Izan's Blog</title>
<link>https://srizan.dev/blog</link>
<description>My little donowall place on the net</description>
<lastBuildDate>Mon, 20 Nov 2023 20:13:38 GMT</lastBuildDate>
<lastBuildDate>Wed, 22 Nov 2023 19:33:24 GMT</lastBuildDate>
<docs>https://validator.w3.org/feed/docs/rss2.html</docs>
<generator>https://github.com/jpmonette/feed</generator>
<language>en</language>

View File

@@ -2,12 +2,13 @@ import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import './globals.css'
import { RootStyleRegistry } from './_components/ThemeRegistry/EmotionRootStyleRegistry';
import Script from 'next/script.js';
const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = {
title: 'Sr Izan\'s corner for the net',
icons: { icon: '/pfp.webp' }
icons: { icon: '/pfp.webp' },
}
export default function RootLayout({
@@ -17,6 +18,9 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<head>
<script async src="https://analytics.srizan.dev/ua.js" data-website-id="54ccb44c-b03c-4790-8262-3e1a82241a24" />
</head>
<body className={inter.className}>
<RootStyleRegistry>
{children}