"use client"; import { Container } from "@/components/container"; import { Heading } from "@/components/heading"; import { Button } from "@/components/ui/button"; import { MessageCircle, Search, Users, CheckCircle } from "lucide-react"; export function HowItWorksSection() { const steps = [ { number: "1", icon: , title: "Contact Us on WhatsApp", description: "Reach out to us with your travel plans and questions." }, { number: "2", icon: , title: "Share Your Preferences", description: "Tell us your budget, dates, destination, and travel style." }, { number: "3", icon: , title: "Get Agency Options", description: "We suggest 2-3 suitable travel agencies based on your needs." }, { number: "4", icon: , title: "Choose & Book", description: "You choose the best option and book directly with the agency." } ]; const handleWhatsAppClick = () => { window.open("https://wa.me/919999999999?text=Hi, I need help planning my trip", "_blank"); }; return (
How It Works

Getting started is simple. Just four easy steps to find your perfect trip.

{steps.map((step, index) => (
{step.icon}
STEP {step.number}

{step.title}

{step.description}

))}
); }