import type { Metadata } from 'next'; import Link from 'next/link'; import { ForgotForm } from './forgot-form'; export const metadata: Metadata = { title: 'Reset your password', robots: { index: false } }; export default function ForgotPage() { return ( <>

Reset your password

Enter your e-mail and we will send a reset link and a 6-digit code.

Back to sign in

); }