From 293e7cfe7ed99a495e107a68f5eaca60d1e51b71 Mon Sep 17 00:00:00 2001 From: minchodang Date: Sun, 19 May 2024 12:31:39 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20auth=20page=20meta=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/auth/layout.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/auth/layout.tsx b/src/app/auth/layout.tsx index 3c1941f..b28c122 100644 --- a/src/app/auth/layout.tsx +++ b/src/app/auth/layout.tsx @@ -1,6 +1,7 @@ import { FC } from 'react'; import { useTranslations } from 'next-intl'; +import Head from 'next/head'; interface HomePageLayoutProps { children: React.ReactNode; @@ -9,6 +10,9 @@ interface HomePageLayoutProps { const HomePageLayout: FC = ({ children, params: { locale } }) => (
+ + +
{children}
);