import type { NextPage } from "next"; import Head from "next/head"; import { FormPswReset } from "~/forms/FormNewPswReset"; import { useTranslation } from "~/providers/I18nProvider"; const NewPasswordResetPage: NextPage = () => { const { t } = useTranslation(); return ( <> {t.heads.login_titolo}
); }; export default NewPasswordResetPage;