From ab46068d76e545ac3dc7806afdc662383ce6390e Mon Sep 17 00:00:00 2001 From: Mahyar Khanbolooki Date: Mon, 14 Jul 2025 19:02:09 +0330 Subject: [PATCH] add: auth page title --- src/app/auth/layout.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app/auth/layout.tsx b/src/app/auth/layout.tsx index ccfac74..dec5f88 100644 --- a/src/app/auth/layout.tsx +++ b/src/app/auth/layout.tsx @@ -1,5 +1,10 @@ import { ReactQueryProvider } from '@/components/providers/ReactQueryProvider' +import { Metadata } from 'next' + +export const metadata: Metadata = { + title: "Authentication" +} export default function AuthLayout({ children }: { children: React.ReactNode }) { return (