Skip to content

Commit

Permalink
feat: add login layout component with metadata
Browse files Browse the repository at this point in the history
Signed-off-by: Jubayer <[email protected]>
  • Loading branch information
ajshovon committed Dec 4, 2024
1 parent cc92665 commit 34490db
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions apps/web/app/(auth)/login/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export const metadata = {
title: 'Login :: DASH',
};

const Layout = ({ children }: { children: React.ReactNode }) => {
return <>{children}</>;
};

export default Layout;

0 comments on commit 34490db

Please sign in to comment.