diff --git a/global.d.ts b/global.d.ts index 39ab749..46cf8d5 100644 --- a/global.d.ts +++ b/global.d.ts @@ -7,6 +7,7 @@ declare namespace NodeJS { declare global { interface Window { kofiWidgetOverlay: any; + dataLayer: any[]; } } export {}; \ No newline at end of file diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 894f8ce..212f85f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,6 +2,8 @@ import "tailwindcss/tailwind.css"; + +import Script from "next/script"; import React, { useEffect, useState } from "react"; import NightModeToggle from "@/components/NightModeToggle"; import Navbar from "@/components/NavigationBar"; @@ -49,8 +51,20 @@ export default function RootLayout({ children }: { children: React.ReactNode }) })(); `, }} + /> - +