From 34490dba6b1ada0afa998a96ef93b60cabd13bfa Mon Sep 17 00:00:00 2001 From: Jubayer Date: Wed, 4 Dec 2024 12:38:22 +0600 Subject: [PATCH] feat: add login layout component with metadata Signed-off-by: Jubayer --- apps/web/app/(auth)/login/layout.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 apps/web/app/(auth)/login/layout.tsx diff --git a/apps/web/app/(auth)/login/layout.tsx b/apps/web/app/(auth)/login/layout.tsx new file mode 100644 index 0000000..706ff43 --- /dev/null +++ b/apps/web/app/(auth)/login/layout.tsx @@ -0,0 +1,9 @@ +export const metadata = { + title: 'Login :: DASH', +}; + +const Layout = ({ children }: { children: React.ReactNode }) => { + return <>{children}; +}; + +export default Layout;