/* 慶宜僱傭代理 — Services page */ function ServicesPage({ setPage, t }) { const S = t.svcPage; const [route, setRoute] = React.useState("overseas"); const r = S.routes[route]; const noteAmt = (a) => !a.includes("HK$"); return (
{/* page header (text + image) */}
{S.eyebrow}

{S.title}

{S.lede}

{S.badges[0]} {S.badges[1]} {S.badges[2]}
{/* full service grid */}
{t.services.map((s, i) => (

{s.title}

{s.desc}

{s.tag}
))}
{/* hiring routes */}
{Object.keys(S.routes).map((k) => ( ))}
{r.steps.map((s, i) => (
{i + 1}

{s[0]}

{s[1]}

))}

{r.label} — {S.important}

{r.note}

{r.time}
{S.estTime}
{/* fees */}

{S.oneTime}

{S.oneTimeTag}
{S.feesProcessing.map((f, i) => (
{f[0]}{f[1]}
))}

{S.statutory}

{S.statutoryTag}
{S.feesStatutoryRows.map((f, i) => (
{f[0]}{f[1]}
))}
); } window.ServicesPage = ServicesPage;