From ac587f351431ba488b7c8384ba6ffa20ab238c6f Mon Sep 17 00:00:00 2001 From: serefyarar Date: Sat, 11 Jan 2025 13:42:26 -0500 Subject: [PATCH] Update layout.tsx --- web-app/src/app/layout.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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} + );