import { AppCard } from "@/components/ui/app-card"; 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) => (

{String(index + 1).padStart(2, "0")}

{step.title}

{step.description}

))}
); }