From aa469fcc5b23eea3f55dc5a0de39124f04553525 Mon Sep 17 00:00:00 2001 From: Mohd Kaif Ansari <155880242+techykaif@users.noreply.github.com> Date: Fri, 21 Aug 2026 23:42:09 +0530 Subject: [PATCH] fix(seo): add login page metadata --- src/app/login/page.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index e399b29..b75a0e9 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -1,6 +1,15 @@ +import type { Metadata } from "next"; import { Suspense } from "react"; import { LoginForm } from "./login-form"; +export const metadata: Metadata = { + title: "Sign in ยท StudyMap", + description: "Sign in to StudyMap to save places and manage your student map preferences.", + robots: { + index: false, + }, +}; + export default function LoginPage() { return (