import type { Metadata } from 'next'; import Link from 'next/link'; import { ForgotPasswordForm } from '~/components/forms/forgot-password'; export const metadata: Metadata = { title: 'Forgot Password', }; export default function ForgotPasswordPage() { return (

Forgot your password?

No worries, it happens! Enter your email and we'll email you a special link to reset your password.

Remembered your password?{' '} Sign In

); }