Avvia i18n reale della home su IT EN TH.

Introduco contenuti localizzati per menu, footer e principali sezioni della homepage, includendo il form contatti e i messaggi client per mantenere coerenza UX tra le tre lingue.

Made-with: Cursor
This commit is contained in:
Javaxman
2026-04-27 09:12:00 +02:00
parent ddab32d3ef
commit 0714ec1335
14 changed files with 1068 additions and 308 deletions

View File

@ -1,6 +1,25 @@
import type { SupportedLocale } from './navigation';
/** Meta pagina principale — usato da BaseLayout */
export const siteMeta = {
title: 'NexStudio — Ingegneria del software e IA per settori regolamentati',
description:
'NexStudio: software company con sede a Bangkok. SaaS ad alta complessità, integrazione di IA in flussi professionali, Legal Tech e Health Tech.',
const siteMetaByLocale = {
it: {
title: 'NexStudio — Ingegneria del software e IA per settori regolamentati',
description:
'NexStudio: software company con sede a Bangkok. SaaS ad alta complessità, integrazione di IA in flussi professionali, Legal Tech e Health Tech.',
},
en: {
title: 'NexStudio — Software engineering and AI for regulated industries',
description:
'NexStudio is a software company based in Bangkok. We build high-complexity SaaS products and integrate AI into professional workflows across Legal Tech and Health Tech.',
},
th: {
title: 'NexStudio — วิศวกรรมซอฟต์แวร์และ AI สำหรับอุตสาหกรรมที่มีข้อกำกับ',
description:
'NexStudio คือบริษัทซอฟต์แวร์ในกรุงเทพฯ พัฒนา SaaS ความซับซ้อนสูง และผสาน AI เข้ากับเวิร์กโฟลว์ระดับมืออาชีพในสาย Legal Tech และ Health Tech',
},
} as const;
export const getSiteMeta = (locale: SupportedLocale) => siteMetaByLocale[locale];
/** Retro-compatibilità: fallback italiano. */
export const siteMeta = siteMetaByLocale.it;