From 9575d907bb611ac8728dd2d3ca7bd96fd783b96c Mon Sep 17 00:00:00 2001 From: tuna2134 Date: Sun, 23 Nov 2025 22:59:49 +0900 Subject: [PATCH] Update layout.tsx --- app/layout.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/layout.tsx b/app/layout.tsx index b09848c..6723a6a 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,6 +1,7 @@ import type { Metadata } from "next"; import { Geist, Geist_Mono, Noto_Sans_JP } from "next/font/google"; import "./globals.css"; +import Script from "next/script"; const geistSans = Geist({ variable: "--font-geist-sans", @@ -33,6 +34,8 @@ export default function RootLayout({ className={`${geistSans.variable} ${geistMono.variable} ${notoSansJP.variable} antialiased`} > {children} + );