diff --git a/apps/logicsrc-web/src/app/layout.tsx b/apps/logicsrc-web/src/app/layout.tsx index 2fec15b..6ec8ee2 100644 --- a/apps/logicsrc-web/src/app/layout.tsx +++ b/apps/logicsrc-web/src/app/layout.tsx @@ -1,6 +1,7 @@ import type { Metadata, Viewport } from "next"; import type { ReactNode } from "react"; import "../styles.css"; +import Script from "next/script"; export const metadata: Metadata = { title: "LogicSRC", @@ -18,7 +19,8 @@ export const viewport: Viewport = { export default function RootLayout({ children }: { children: ReactNode }): ReactNode { return ( -
{children} + {children} + ); }