Skip to content

Commit

Permalink
Update layout.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
serefyarar committed Jan 11, 2025
1 parent f697769 commit ac587f3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion web-app/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -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";
Expand Down Expand Up @@ -58,7 +59,9 @@ export default function RootLayout({
return (
<html lang="en" id="landing">
<body className={inter.className}>
{children}
<PlausibleProvider domain="index.network">
{children}
</PlausibleProvider>
</body>
</html>
);
Expand Down

0 comments on commit ac587f3

Please sign in to comment.