const STEPS = [ { n: "01", title: "Private execution", body: "Transactions run on a permissioned layer — fast finality, controlled access, confidential data where it belongs.", }, { n: "02", title: "Commitment", body: "A relayer posts cryptographic commitments: state roots that prove what happened without exposing private detail.", }, { n: "03", title: "Public anchor", body: "The public chain holds the proof. Anyone can verify the anchor; only permitted parties see the private payload.", }, ] as const; export function HybridJourney() { return (
    {STEPS.map((step, i) => (
  1. {step.n}

    {step.title}

    {step.body}

    {i < STEPS.length - 1 ? ( ) : null}
  2. ))}
); }