From 155113a585a59512f5f27a97e962454fa78b4ea9 Mon Sep 17 00:00:00 2001 From: HyunseokLEE Date: Thu, 23 Oct 2025 00:29:51 +0900 Subject: [PATCH] =?UTF-8?q?CDP-151=20chore=E2=9A=99=EF=B8=8F=20(google):?= =?UTF-8?q?=20google=20search=20console=20=EC=86=8C=EC=9C=A0=EA=B6=8C=20?= =?UTF-8?q?=ED=99=95=EC=9D=B8=20=ED=82=A4=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/layout.tsx | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cac59a3..fcf8cb1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -57,20 +57,26 @@ export const metadata: Metadata = { en: "/en", // => https://myplanmate.vercel.app/en }, }, + + verification: { + google: "HwFH-3lcPM6", + }, }; export default function RootLayout({ children }: { children: React.ReactNode }) { return ( - - {/* + + + {/* Providers로 감싸는 이유: - React Query의 QueryClientProvider를 전역 적용 - 모든 하위 컴포넌트가 동일한 client & cache 공유 - useQuery, useMutation 훅이 어디서든 정상 동작 */} - {children} - + {children} + + ); }