import type { Metadata } from 'next'; import Link from 'next/link'; import { Trans } from '@lingui/macro'; import { setupI18nSSR } from '@documenso/lib/client-only/providers/i18n.server'; import { ForgotPasswordForm } from '~/components/forms/forgot-password'; export const metadata: Metadata = { title: 'Forgot Password', }; export default function ForgotPasswordPage() { setupI18nSSR(); 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

); }