import type { NextPage } from "next"; import Head from "next/head"; import { FormPswReset } from "~/forms/FormNewPswReset"; import { useTranslation } from "~/providers/I18nProvider"; /** * Pagina di reset password: /auth/new-password-reset */ const NewPasswordResetPage: NextPage = () => { const { t } = useTranslation(); return ( <> {t.heads.login_titolo}
); }; export async function getServerSideProps() { return { props: {}, }; } export default NewPasswordResetPage;