import { SectionHeading } from "./section-heading"; import type { ProcessSectionCopy } from "./types"; type ProcessSectionProps = { copy: ProcessSectionCopy; }; export function ProcessSection({ copy }: ProcessSectionProps) { return (
    {copy.steps.map((step, index) => (
  1. {String(index + 1).padStart(2, "0")}

    {step.title}

    {step.description}

  2. ))}
); }