feat: add subtitle to login form and update translations for English and Italian

This commit is contained in:
Marco Pedone 2025-09-09 10:34:19 +02:00
parent 0128f115ad
commit 9961a6503c
4 changed files with 6 additions and 0 deletions

View file

@ -73,6 +73,7 @@ export const FormLogin = () => {
<h3 className="text-3xl font-bold text-gray-800 sm:text-3xl">
{t.auth.login.titolo}
</h3>
<h3 className="text-xl">{t.auth.login.sottotitolo}</h3>
</div>
{env.NEXT_PUBLIC_BASE_URL.includes("localhost") && (

View file

@ -339,6 +339,8 @@ export const en: LangDict = {
psa_terms: "Terms and Conditions",
riservata: "Dashboard",
success: "Access granted",
sottotitolo:
"Contact us to purchase the service and obtain your credentials",
titolo: "Login",
},
signup: {

View file

@ -331,6 +331,8 @@ export const it: LangDict = {
auth: {
login: {
email: "Email",
sottotitolo:
"Contattaci per acquistare il servizio e ottenere le tue credenziali",
fail: "Password o email errati",
forgot: "Password dimenticata?",
google: "Accedi con Google",

View file

@ -502,6 +502,7 @@ export type LangDict = {
auth: {
login: {
titolo: string;
sottotitolo: string;
no_account: string;
google: string;
forgot: string;