From 993a4673d8b80a57dee9e1345f66c11ce05b86e5 Mon Sep 17 00:00:00 2001 From: MOH Date: Sun, 8 Mar 2026 06:16:01 +0100 Subject: [PATCH] Add Plausible analytics script --- app/layout.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/layout.tsx b/app/layout.tsx index 333a575..42a6ebc 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,6 +1,7 @@ import type { Metadata } from "next"; import { unstable_noStore as noStore } from "next/cache"; import localFont from "next/font/local"; +import Script from "next/script"; import { getLocale } from "next-intl/server"; import { ThemeProvider } from "@/components/theme-provider"; import { buildAppMetadata } from "@/lib/metadata"; @@ -93,6 +94,13 @@ export default async function RootLayout({ {children} + );