// Why Us + Clients wall (Industries strip removed from homepage) const SFWhyUs = ({ lang, accent }) => { const t = (en, zh) => sfT(lang, en, zh); const items = [ { n:'01', en:'One team, end to end', zh:'一個團隊,由頭到尾', bodyEn:'Design, supply, install, support — never subcontracted.', bodyZh:'設計、供應、安裝、支援 — 絕不分判。' }, { n:'02', en:'Fixed scope, fixed price', zh:'固定範圍,固定收費', bodyEn:'Quotes name parts and labour. SLAs name response time.', bodyZh:'報價列明器材與工時,SLA 列明回應時間。' }, { n:'03', en:'Built for fault tolerance', zh:'為容錯而設計', bodyEn:'A/B feeds, N+1 cooling, redundant fabric — by default.', bodyZh:'A/B 雙路、N+1 冷卻、雙路網絡 — 預設標準。' }, { n:'04', en:'24/7 SOC monitoring', zh:'24/7 SOC 監察', bodyEn:'SIEM-backed eyes on every site we hand over.', bodyZh:'每個交付場地由 SIEM 系統 24 小時監察。' }, ]; return (
{t('Why Sun Forest', '為何選擇SFL')}

{t('You hire one team. It stays your team.', '一次合作,長久關係。')}

{items.map((it, i)=>(
0 ? 24 : 0, }}>
{it.n}

{t(it.en, it.zh)}

{t(it.bodyEn, it.bodyZh)}

))}
); }; const SFClients = ({ lang, accent }) => { const t = (en, zh) => sfT(lang, en, zh); return (
{t('Trusted by', '信賴的客戶')}

{t('500+ projects across HK, Macau, and the region.', '在港澳及大中華區完成超過 500 個項目。')}

{t('Local ISPs · banks & FSI · schools · SMBs · hotels · government.', '本地 ISP · 銀行金融 · 學校 · 中小企業 · 酒店 · 政府部門。')}

{SF_CLIENTS.map((c, i)=>(
{c}
))}

{t(' ', ' ')}

); }; // Industries strip — kept for non-homepage use (e.g. about page) const SFIndustries = ({ lang, accent }) => { const t = (en, zh) => sfT(lang, en, zh); return (
{t('Industries served', '服務行業')}
{SF_INDUSTRIES.map((c, i)=>( {t(c.en, c.zh)} ))}
); }; window.SFIndustries = SFIndustries; window.SFWhyUs = SFWhyUs; window.SFClients = SFClients;