We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0c6752 commit 970cc42Copy full SHA for 970cc42
1 file changed
apps/logicsrc-web/src/app/layout.tsx
@@ -1,6 +1,7 @@
1
import type { Metadata, Viewport } from "next";
2
import type { ReactNode } from "react";
3
import "../styles.css";
4
+import Script from "next/script";
5
6
export const metadata: Metadata = {
7
title: "LogicSRC",
@@ -18,7 +19,8 @@ export const viewport: Viewport = {
18
19
export default function RootLayout({ children }: { children: ReactNode }): ReactNode {
20
return (
21
<html lang="en">
- <body>{children}</body>
22
+ <body>{children} <Script data-site="56a0c760-e6cb-4875-844e-8b8aaa80b59b" src="https://crawlproof.com/stats.js" strategy="afterInteractive" />
23
+ </body>
24
</html>
25
);
26
}
0 commit comments