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

This commit is contained in:
2026-01-22 19:03:51 +01:00
parent 9908be6a0a
commit 73a4b65936
4 changed files with 79 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
import type { Metadata } from 'next';
import Script from 'next/script';
import { ReactNode } from 'react';
export const metadata: Metadata = {
@@ -10,6 +11,11 @@ export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang='en'>
<body>{children}</body>
<Script
defer
src='https://analytics.frompixels.com/script.js'
data-website-id='af4f32d9-d524-44cc-ae9b-c88a0beec398'
/>
</html>
);
}