umami, glitchtip, redis
Some checks failed
Build & Deploy / deploy (push) Failing after 3m45s

This commit is contained in:
2026-01-18 15:37:51 +01:00
parent 619b699f14
commit b05a21350c
29 changed files with 3568 additions and 316 deletions

View File

@@ -3,6 +3,8 @@ import {getMessages, getTranslations} from 'next-intl/server';
import '../../styles/globals.css';
import Header from '@/components/Header';
import Footer from '@/components/Footer';
import UmamiScript from '@/components/analytics/UmamiScript';
import AnalyticsProvider from '@/components/analytics/AnalyticsProvider';
import { Metadata, Viewport } from 'next';
export async function generateMetadata({params: {locale}}: {params: {locale: string}}): Promise<Metadata> {
@@ -79,6 +81,12 @@ export default async function LocaleLayout({
</main>
<Footer />
</NextIntlClientProvider>
{/* Loads Umami only when NEXT_PUBLIC_UMAMI_WEBSITE_ID is set */}
<UmamiScript />
{/* Sends pageviews for client-side navigations */}
<AnalyticsProvider />
</body>
</html>
);