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}
);