diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 089f160..1f80330 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,7 @@ import type { Metadata } from 'next' import { Inter } from 'next/font/google' import './globals.css' +import Script from 'next/script' const inter = Inter({ subsets: ['latin'] }) @@ -17,7 +18,19 @@ export default function RootLayout({ }) { return ( -
{children} + + {children} + + + ) }