import { Calendar, Upload, CheckCircle } from 'lucide-react'; const steps = [ { id: 1, name: 'Book', description: 'Schedule your consultation with our tax experts', icon: Calendar, }, { id: 2, name: 'Prepare', description: 'Securely upload your documents and we prepare your returns', icon: Upload, }, { id: 3, name: 'Delivered', description: 'Receive your completed returns with detailed explanations', icon: CheckCircle, }, ]; export function ProcessSteps() { return (

Simple 3-Step Process

We make tax preparation straightforward and stress-free. Here's how we work together to get your taxes done right.

{steps.map((step) => (
Step {step.id}: {step.name}

{step.description}

))}
); }