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 훅이 어디서든 정상 동작 */} -