We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 769c490 + 0bc0a12 commit 9cc5721Copy full SHA for 9cc5721
src/app/layout.tsx
@@ -1,6 +1,7 @@
1
import type { Metadata } from "next";
2
import "./globals.css";
3
import { Inter, Roboto_Mono } from "next/font/google";
4
+import Script from "next/script";
5
6
const inter = Inter({ subsets: ["latin"], variable: "--font-inter" });
7
const robotoMono = Roboto_Mono({
@@ -29,7 +30,14 @@ export default function RootLayout({
29
30
}) {
31
return (
32
<html lang="en" className={`${inter.variable} ${robotoMono.variable}`}>
- <body className="antialiased">{children}</body>
33
+ <body className="antialiased">
34
+ {children}
35
+ <Script
36
+ defer
37
+ data-domain="chainsquad.com"
38
+ src="https://p.chainsquad.com/js/script.js"
39
+ />
40
+ </body>
41
</html>
42
);
43
}
0 commit comments