export interface PipelineStep { title: string; detail: string; /** mono stat shown beside the title, e.g. "64,232 entries" */ stat?: string; } export interface PipelineStepsProps { steps: PipelineStep[]; } /** Numbered construction-pipeline steps with a hairline connector spine. */ export default function PipelineSteps({ steps }: PipelineStepsProps) { return (
{step.detail}