diff --git a/web-app/src/app/layout.tsx b/web-app/src/app/layout.tsx index f44ade61..f2d0cb9f 100644 --- a/web-app/src/app/layout.tsx +++ b/web-app/src/app/layout.tsx @@ -1,4 +1,5 @@ import type { Metadata, Viewport } from "next"; +import PlausibleProvider from "next-plausible"; import { Inter } from "next/font/google"; import { headers } from "next/headers"; import { redirect } from "next/navigation"; @@ -58,7 +59,9 @@ export default function RootLayout({ return ( - {children} + + {children} + );