From 970cc427038c21d16aae8bc71dc37c7070cd6525 Mon Sep 17 00:00:00 2001 From: "crawlproof[bot]" <286981042+crawlproof[bot]@users.noreply.github.com> Date: Mon, 8 Jun 2026 11:35:21 +0000 Subject: [PATCH] Add CrawlProof stats tracker --- apps/logicsrc-web/src/app/layout.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/logicsrc-web/src/app/layout.tsx b/apps/logicsrc-web/src/app/layout.tsx index 2fec15b..6ec8ee2 100644 --- a/apps/logicsrc-web/src/app/layout.tsx +++ b/apps/logicsrc-web/src/app/layout.tsx @@ -1,6 +1,7 @@ import type { Metadata, Viewport } from "next"; import type { ReactNode } from "react"; import "../styles.css"; +import Script from "next/script"; export const metadata: Metadata = { title: "LogicSRC", @@ -18,7 +19,8 @@ export const viewport: Viewport = { export default function RootLayout({ children }: { children: ReactNode }): ReactNode { return ( - {children} + {children}