From b7128e4a7b4a15f17d6d5c841b1d82bdaae88517 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 12:59:26 +0000 Subject: [PATCH] Update components/how-it-works-section.tsx --- components/how-it-works-section.tsx | 75 +++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 components/how-it-works-section.tsx diff --git a/components/how-it-works-section.tsx b/components/how-it-works-section.tsx new file mode 100644 index 0000000..bfce8e4 --- /dev/null +++ b/components/how-it-works-section.tsx @@ -0,0 +1,75 @@ +"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}

+
+ ))} +
+
+ +
+
+
+ ); +}