function Process() { const [open, setOpen] = React.useState(0); const steps = [ { t: "Understand the need", d: "We partner closely with clients to understand business goals, culture, team dynamics, and success criteria." }, { t: "Source exceptional talent", d: "Leverage our network, research capabilities, referrals, and market intelligence." }, { t: "Expert evaluation", d: "Candidates are assessed by industry leaders and subject matter experts." }, { t: "Validation & verification", d: "Technical expertise, leadership capability, communication, and organizational fit are evaluated." }, { t: "Curated introduction", d: "Only the strongest candidates are presented." }, { t: "Successful placement", d: "We support the hiring process through offer acceptance and onboarding." }, ]; const roman = ['i.','ii.','iii.','iv.','v.','vi.']; return (
How Synvori works

Six stages from brief to placement.

A retained engagement is sequenced, deliberate, and measured. Every introduction is earned.

{steps.map((s, i) => (
setOpen(open === i ? -1 : i)}>
{roman[i]}

{s.t}

{s.d}

+
))}
); } window.Process = Process;