diff --git a/apps/marginfi-landing-page/src/app/layout.tsx b/apps/marginfi-landing-page/src/app/layout.tsx
index 06d8b3847e..4d05c78c8e 100644
--- a/apps/marginfi-landing-page/src/app/layout.tsx
+++ b/apps/marginfi-landing-page/src/app/layout.tsx
@@ -1,6 +1,6 @@
+import Script from "next/script";
import { SpeedInsights } from "@vercel/speed-insights/next";
import { GoogleAnalytics, GoogleTagManager } from "@next/third-parties/google";
-
import { Header } from "~/components/header";
import type { Metadata } from "next";
@@ -27,6 +27,19 @@ export default function RootLayout({
<>
+
>
)}
diff --git a/apps/marginfi-v2-trading/src/pages/_app.tsx b/apps/marginfi-v2-trading/src/pages/_app.tsx
index f8bb33f45e..a23f355fab 100644
--- a/apps/marginfi-v2-trading/src/pages/_app.tsx
+++ b/apps/marginfi-v2-trading/src/pages/_app.tsx
@@ -1,6 +1,7 @@
import React from "react";
import App, { AppContext, AppInitialProps, AppProps } from "next/app";
+import Script from "next/script";
import { useRouter } from "next/router";
import { SpeedInsights } from "@vercel/speed-insights/next";
@@ -88,6 +89,19 @@ export default function MrgnApp({ Component, pageProps, path, bank }: AppProps &
<>
+
>
)}
diff --git a/apps/marginfi-v2-ui/src/pages/_app.tsx b/apps/marginfi-v2-ui/src/pages/_app.tsx
index 4a4fb114e9..6d3b225d02 100644
--- a/apps/marginfi-v2-ui/src/pages/_app.tsx
+++ b/apps/marginfi-v2-ui/src/pages/_app.tsx
@@ -1,6 +1,6 @@
import React from "react";
-
import App, { AppContext, AppInitialProps, AppProps } from "next/app";
+import Script from "next/script";
import { SpeedInsights } from "@vercel/speed-insights/next";
import { GoogleAnalytics, GoogleTagManager } from "@next/third-parties/google";
import dynamic from "next/dynamic";
@@ -170,6 +170,19 @@ export default function MrgnApp({ Component, pageProps, path }: AppProps & MrgnA
<>
+
>
)}