adds unami
Build and Deploy / Build & Push (push) Successful in 8m48s

This commit is contained in:
2026-04-23 21:00:34 -04:00
parent 0009af751f
commit c5dc01b6ff
+9 -1
View File
@@ -1,4 +1,5 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import Script from "next/script";
import "./globals.css"; import "./globals.css";
export const metadata: Metadata = { export const metadata: Metadata = {
@@ -9,7 +10,14 @@ export const metadata: Metadata = {
export default function RootLayout({ children }: { children: React.ReactNode }) { export default function RootLayout({ children }: { children: React.ReactNode }) {
return ( return (
<html lang="en"> <html lang="en">
<body>{children}</body> <body>
{children}
<Script
src="https://tracking.thewrightserver.net/script.js"
data-website-id="a0d0582a-9bd0-4c0d-8e3c-3e6fcc99ec9a"
strategy="afterInteractive"
/>
</body>
</html> </html>
); );
} }