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 (