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 ( <>