import { Link } from '@tanstack/react-router' import { useTranslation } from 'react-i18next' import { AuthLayout } from '../auth-layout' import { ForgotPasswordForm } from './components/forgot-password-form' export function ForgotPassword() { const { t } = useTranslation() return (

{t('Forgot password')}

{t( 'Enter your registered email and we will send you a link to reset your password.' )}

{t("Don't have an account?")}{' '} {t('Sign up')} .

) }