export default function ProcessFlow({ steps, compact = false }) { return (
{steps.map((step, index) => (
{String(index + 1).padStart(2, "0")}

{step.title}

{step.detail}

))}
) }