--- interface Step { n: string; title: string; body: string; code?: string; } const steps: Step[] = [ { n: '01', title: 'Point us at your Camel app', body: 'Drop it in, or connect one you already run. No code changes.', }, { n: '02', title: 'We take it from there', body: 'Every route, every processor, every exchange — discovered and traced automatically. Sensitive fields are masked by default.', }, { n: '03', title: 'Watch it run', body: 'Browse executions, tap live traffic, replay failed exchanges, follow flows across services.', }, ]; ---

For engineers

How it works

Three steps. Nothing to maintain.

    {steps.map((step) => (
  1. {step.n}

    {step.title}

    {step.body}

    {step.code && (
    {step.code}
    )}
  2. ))}