Add CTA section to "Chi Siamo" page with descriptive text in English and Italian

This commit is contained in:
Marco Pedone 2025-08-08 18:54:19 +02:00
parent f8481f894a
commit cbbb53ac50
4 changed files with 20 additions and 3 deletions

View file

@ -1250,6 +1250,11 @@ The Stable Rent service, ideal for those with demonstrable work references and f
}, },
chi_siamo: { chi_siamo: {
title: "Who We Are", title: "Who We Are",
cta: {
title1: "We have been present in the territory for",
title2: " over 25 years!",
desc: "For over a quarter of a century, we have been accompanying students, workers and families in the search for housing solutions in Bassano del Grappa and surrounding areas. Our experience allows us to offer a reliable service, attentive to the needs of those who trust us and always updated on the opportunities of the territory.",
},
mission: "Our Mission", mission: "Our Mission",
mission_desc: mission_desc:
"We aim to meet the needs of those looking for a home by updating our site in real time and strive to find accommodations for our subscribers as quickly as possible. What matters to us is providing a courteous, precise, and consistent service.", "We aim to meet the needs of those looking for a home by updating our site in real time and strive to find accommodations for our subscribers as quickly as possible. What matters to us is providing a courteous, precise, and consistent service.",

View file

@ -1251,6 +1251,11 @@ export const it: LangDict = {
}, },
chi_siamo: { chi_siamo: {
title: "Chi Siamo", title: "Chi Siamo",
cta: {
title1: "Siamo presenti sul territorio da",
title2: " oltre 25 anni!",
desc: "Da oltre un quarto di secolo accompagniamo studenti, lavoratori e famiglie nella ricerca di soluzioni abitative a Bassano del Grappa e dintorni. La nostra esperienza ci permette di offrire un servizio affidabile, attento alle esigenze di chi si affida a noi e sempre aggiornato sulle opportunità del territorio.",
},
mission: "La nostra Mission", mission: "La nostra Mission",
mission_desc: mission_desc:
"Puntiamo a soddisfare le richieste di chi cerca casa aggiornando in tempo reale il nostro sito e miriamo a trovare sistemazioni ai nostri abbonati nel minor tempo possibile. Quello che conta per noi è fornire un servizio cortese, preciso e costante.", "Puntiamo a soddisfare le richieste di chi cerca casa aggiornando in tempo reale il nostro sito e miriamo a trovare sistemazioni ai nostri abbonati nel minor tempo possibile. Quello che conta per noi è fornire un servizio cortese, preciso e costante.",

View file

@ -707,6 +707,11 @@ export type LangDict = {
}; };
chi_siamo: { chi_siamo: {
title: string; title: string;
cta: {
title1: string;
title2: string;
desc: string;
};
mission: string; mission: string;
mission_desc: string; mission_desc: string;
vision: string; vision: string;

View file

@ -27,11 +27,13 @@ const ChiSiamo: NextPage = () => {
</div> </div>
<div className="max-w-lg flex-1 py-5 sm:mx-auto sm:text-center md:max-w-max md:text-left"> <div className="max-w-lg flex-1 py-5 sm:mx-auto sm:text-center md:max-w-max md:text-left">
<h3 className="text-3xl font-semibold text-gray-800 md:text-4xl"> <h3 className="text-3xl font-semibold text-gray-800 md:text-4xl">
Siamo presenti sul territorio da {t.chi_siamo.cta.title1}
<span className="text-indigo-600"> più di 25 anni !</span> <span className="text-indigo-600">
{t.chi_siamo.cta.title2}
</span>
</h3> </h3>
<p className="mt-3 leading-relaxed text-gray-500"> <p className="mt-3 leading-relaxed text-gray-500">
{t.proprietari.cta2.desc} {t.chi_siamo.cta.desc}
</p> </p>
</div> </div>
</section> </section>