From ca9124c1c7406c7882bb9cc297f08711f7e842e0 Mon Sep 17 00:00:00 2001 From: "crawlproof[bot]" <286981042+crawlproof[bot]@users.noreply.github.com> Date: Sun, 30 Aug 2026 03:08:12 +0000 Subject: [PATCH] Add CrawlProof stats tracker --- apps/desktop/src/app/layout.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/desktop/src/app/layout.tsx b/apps/desktop/src/app/layout.tsx index f774799..2e85ec8 100644 --- a/apps/desktop/src/app/layout.tsx +++ b/apps/desktop/src/app/layout.tsx @@ -2,6 +2,7 @@ import type { Metadata } from 'next' import { IBM_Plex_Mono, IBM_Plex_Sans, Geist } from 'next/font/google' import './globals.css' import { cn } from "@/lib/utils"; +import Script from "next/script"; /** * Self-hosted at build time by next/font, which matters here: the renderer @@ -25,7 +26,8 @@ export const metadata: Metadata = { export default function RootLayout({ children }: { children: React.ReactNode }) { return ( -
{children} + {children} + ) }