From f66168f86796cdf2b8987a63292f4f86190d9f9e Mon Sep 17 00:00:00 2001 From: "crawlproof[bot]" <286981042+crawlproof[bot]@users.noreply.github.com> Date: Sun, 30 Aug 2026 03:07:49 +0000 Subject: [PATCH] Add CrawlProof stats tracker --- apps/web/app/layout.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/web/app/layout.tsx b/apps/web/app/layout.tsx index e807f04..1e79669 100644 --- a/apps/web/app/layout.tsx +++ b/apps/web/app/layout.tsx @@ -2,6 +2,7 @@ import type { Metadata } from 'next' import { Footer, Header } from '@/components/chrome' import { SITE } from '@/lib/site' import './globals.css' +import Script from "next/script"; export const metadata: Metadata = { metadataBase: new URL(SITE.url), @@ -80,6 +81,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })
{children}