diff --git a/app/layout.tsx b/app/layout.tsx index 7e8422d..44e2727 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,5 +1,6 @@ import React from "react"; import { Inter } from "next/font/google"; +import Script from "next/script"; import { GoogleAnalytics } from "@next/third-parties/google"; import classNames from "classnames"; import { Announcement } from "@/app/components/Announcement"; @@ -7,6 +8,7 @@ import { Footer } from "@/app/components/Footer"; import { Header } from "@/app/components/Header"; import { ANNOUNCEMENT, SITE_TITLE, SITE_URL } from "@/config"; import "./globals.css"; +import { AppEnv } from "@/types"; import { Analytics } from "./components/Analytics"; import type { Metadata } from "next"; @@ -56,6 +58,12 @@ const RootLayout = async ({ children }: { children: React.ReactNode }) => {