import type { Metadata } from "next"; import { ForgotForm } from "../_components/forgot-form"; export const metadata: Metadata = { title: "Reset your password", description: "Request a password reset link for your PolyLLM account.", robots: { index: false, follow: true }, }; export default async function ForgotPasswordPage({ searchParams }: { searchParams: Promise> }) { const params = await searchParams; const email = Array.isArray(params.email) ? params.email[0] : params.email; return ; }