From cbbb53ac50609ea19bb3e31be185b981df0204d1 Mon Sep 17 00:00:00 2001 From: Marco Pedone Date: Fri, 8 Aug 2025 18:54:19 +0200 Subject: [PATCH] Add CTA section to "Chi Siamo" page with descriptive text in English and Italian --- apps/infoalloggi/src/i18n/en.ts | 5 +++++ apps/infoalloggi/src/i18n/it.ts | 5 +++++ apps/infoalloggi/src/i18n/locales.ts | 5 +++++ apps/infoalloggi/src/pages/chi-siamo.tsx | 8 +++++--- 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/apps/infoalloggi/src/i18n/en.ts b/apps/infoalloggi/src/i18n/en.ts index 019962c..fa9cf5a 100644 --- a/apps/infoalloggi/src/i18n/en.ts +++ b/apps/infoalloggi/src/i18n/en.ts @@ -1250,6 +1250,11 @@ The Stable Rent service, ideal for those with demonstrable work references and f }, chi_siamo: { 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_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.", diff --git a/apps/infoalloggi/src/i18n/it.ts b/apps/infoalloggi/src/i18n/it.ts index b4960ce..ecc2034 100644 --- a/apps/infoalloggi/src/i18n/it.ts +++ b/apps/infoalloggi/src/i18n/it.ts @@ -1251,6 +1251,11 @@ export const it: LangDict = { }, 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_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.", diff --git a/apps/infoalloggi/src/i18n/locales.ts b/apps/infoalloggi/src/i18n/locales.ts index 6b8be2f..97b0b38 100644 --- a/apps/infoalloggi/src/i18n/locales.ts +++ b/apps/infoalloggi/src/i18n/locales.ts @@ -707,6 +707,11 @@ export type LangDict = { }; chi_siamo: { title: string; + cta: { + title1: string; + title2: string; + desc: string; + }; mission: string; mission_desc: string; vision: string; diff --git a/apps/infoalloggi/src/pages/chi-siamo.tsx b/apps/infoalloggi/src/pages/chi-siamo.tsx index 216e2f7..0990303 100644 --- a/apps/infoalloggi/src/pages/chi-siamo.tsx +++ b/apps/infoalloggi/src/pages/chi-siamo.tsx @@ -27,11 +27,13 @@ const ChiSiamo: NextPage = () => {

- Siamo presenti sul territorio da - più di 25 anni ! + {t.chi_siamo.cta.title1} + + {t.chi_siamo.cta.title2} +

- {t.proprietari.cta2.desc} + {t.chi_siamo.cta.desc}