diff --git a/src/app/auth/layout.tsx b/src/app/auth/layout.tsx index b28c122..2e645a1 100644 --- a/src/app/auth/layout.tsx +++ b/src/app/auth/layout.tsx @@ -10,9 +10,6 @@ interface HomePageLayoutProps { const HomePageLayout: FC = ({ children, params: { locale } }) => (
- - -
{children}
); diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9499ea9..dbab5f7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,10 +4,19 @@ import Toaster from '@src/components/common/toast/Toast'; import './globals.css'; import TanstackQueryProvider from '@src/provider/TanstackQueryProvider'; import Head from 'next/head'; +import { Metadata } from 'next'; interface LocaleLayoutProps { children: React.ReactNode; } +export const metadata: Metadata = { + title: 'Meta Test', + description: 'Meta Test', + other: { + 'http-equiv': 'Content-Security-Policy', + content: 'upgrade-insecure-requests' + } +}; const LocaleLayout: FC = ({ children }) => (