Add CrawlProof stats tracker

This commit is contained in:
crawlproof[bot] 2026-06-08 11:35:21 +00:00 committed by GitHub
parent d0c6752194
commit 970cc42703
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 { 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 (
<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>
);
}