chore: gitea changes
All checks were successful
Deploy / lint-build-deploy (push) Successful in 2m8s

This commit is contained in:
2026-01-22 19:46:31 +01:00
parent 266d6c162f
commit 36102810ac
3 changed files with 75 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
import type { Metadata } from 'next';
import Script from 'next/script';
export const metadata: Metadata = {
title: 'DiaryWhisper',
@@ -13,6 +14,11 @@ export default function RootLayout({
return (
<html lang='en'>
<body>{children}</body>
<Script
defer
src="https://analytics.frompixels.com/script.js"
data-website-id="922dfc50-84ea-4e4e-a421-a03a00a4421c"
/>
</html>
);
}