This commit is contained in:
2026-07-27 16:42:04 +02:00
parent 45a7704ea6
commit 018b751723
23 changed files with 2327 additions and 635 deletions

View File

@@ -1,6 +1,7 @@
import type { Metadata } from 'next'
import { cookies } from 'next/headers'
import { headers } from 'next/headers'
import Script from 'next/script'
import './globals.css'
import { LangProvider } from '@/context/LangContext'
import { siteConfig, hasIosStoreUrl, hasAndroidStoreUrl } from '@/lib/site'
@@ -119,6 +120,11 @@ export default async function RootLayout({ children }: { children: React.ReactNo
]),
}}
/>
<Script
src="https://cloud.umami.is/script.js"
data-website-id="816dc2f4-0400-4f70-9506-2d86ee5d43ff"
strategy="afterInteractive"
/>
</head>
<body>
<LangProvider initialLang={htmlLang}>{children}</LangProvider>