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 { Button } from '@documenso/ui/primitives/button'; export const metadata: Metadata = { title: 'Forgot password', }; export default async function ForgotPasswordPage() { await setupI18nSSR(); return (

Email sent!

A password reset email has been sent, if you have an account you should see it in your inbox shortly.

); }