diff --git a/app/layout.tsx b/app/layout.tsx index 9e70dbf..123edec 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,4 +1,5 @@ import type { Metadata } from "next"; +import Script from "next/script"; import "./globals.css"; export const metadata: Metadata = { @@ -9,7 +10,14 @@ export const metadata: Metadata = { export default function RootLayout({ children }: { children: React.ReactNode }) { return ( -
{children} + + {children} + + ); }