function Clients({ lang = 'th' }) { const t = window.tr('clients', lang); const C = ['SCG', 'CP Group', 'BTS', 'TRUE', 'PTT', 'BDMS', 'Central', 'Major', 'BMW', 'Toyota', 'Honda', 'Nissan']; return (
{t.eyebrow}

{t.h1a}
{t.h1b}

{t.desc}
{C.map((c, i) => (
{c}
))}
); } window.Clients = Clients;