Add CrawlProof stats tracker (#4)

Co-authored-by: crawlproof[bot] <286981042+crawlproof[bot]@users.noreply.github.com>
This commit is contained in:
crawlproof[bot] 2026-06-08 04:35:33 -07:00 committed by GitHub
parent d0c6752194
commit ade606c157
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,7 @@
import type { Metadata, Viewport } from "next"; import type { Metadata, Viewport } from "next";
import type { ReactNode } from "react"; import type { ReactNode } from "react";
import "../styles.css"; import "../styles.css";
import Script from "next/script";
export const metadata: Metadata = { export const metadata: Metadata = {
title: "LogicSRC", title: "LogicSRC",
@ -18,7 +19,8 @@ export const viewport: Viewport = {
export default function RootLayout({ children }: { children: ReactNode }): ReactNode { export default function RootLayout({ children }: { children: ReactNode }): ReactNode {
return ( return (
<html lang="en"> <html lang="en">
<body>{children}</body> <body>{children} <Script data-site="56a0c760-e6cb-4875-844e-8b8aaa80b59b" src="https://crawlproof.com/stats.js" strategy="afterInteractive" />
</body>
</html> </html>
); );
} }