diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2d19979..a9e2cc2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,6 +2,7 @@ import type { Metadata } from "next"; import "./globals.css"; import localFont from "next/font/local"; +import { Suspense } from "react"; const font = localFont({ src: "../../fonts/NotoSansJP-Regular.woff2" }); @@ -16,8 +17,10 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - {children} - + + + {children} + + ); }