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
26 lines
1.4 KiB
TypeScript
26 lines
1.4 KiB
TypeScript
import type { SupportedLocale } from './navigation';
|
|
|
|
/** Meta pagina principale — usato da BaseLayout */
|
|
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;
|