We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a899e9f + 9fd18fa commit c902dc0Copy full SHA for c902dc0
claim-db-worker/app/layout.tsx
@@ -1,5 +1,6 @@
1
import type { Metadata } from "next";
2
import { Barlow } from "next/font/google";
3
+import Script from "next/script";
4
import "./globals.css";
5
import { Navbar } from "../components/Navbar";
6
import { Footer } from "../components/Footer";
@@ -48,6 +49,11 @@ export default function RootLayout({
48
49
<body
50
className={`${barlow.className} antialiased bg-custom-gradient backdrop-filter backdrop-blur-md bg-cover font-barlow text-white p-0 min-h-screen w-full`}
51
>
52
+ <Script
53
+ async
54
+ src="https://cdn.tolt.io/tolt.js"
55
+ data-tolt="fda67739-7ed0-42d2-b716-6da0edbec191"
56
+ />
57
<PageViewTracker />
58
<Toaster toastOptions={{ duration: 4000 }} />
59
<DropProvider>
0 commit comments