export function ThreeSteps() { const steps = [ { image: "https://cdn.prod.website-files.com/605dd4e52b25d325bdc4370e/643fe73e6c78251cc7c6de1e_Join.png", title: "Join", description: "It's super simple to join! Just one approval to join the best marketing solution team around.", }, { image: "https://cdn.prod.website-files.com/605dd4e52b25d325bdc4370e/644b84254bdda05bc535bb94_Advertise%20(1)-2.png", title: "Advertise", description: "Share why you use Planpost AI with your audience or customers.", }, { image: "https://cdn.prod.website-files.com/605dd4e52b25d325bdc4370e/643fe76acb809e0f993e160d_Earn.png", title: "Earn", description: "Earn lifetime recurring commission, including renewals.", }, ] return (
{steps.map((step, index) => (
{step.title}

{step.title}

{step.description}

))}
) }