From 87bea29cda6f583174a662f8f9d2d7a1d457a3e7 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 12:59:11 +0000 Subject: [PATCH] Update app/how-it-works/page.tsx --- app/how-it-works/page.tsx | 122 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 122 insertions(+) create mode 100644 app/how-it-works/page.tsx diff --git a/app/how-it-works/page.tsx b/app/how-it-works/page.tsx new file mode 100644 index 0000000..111bb31 --- /dev/null +++ b/app/how-it-works/page.tsx @@ -0,0 +1,122 @@ +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Footer } from "@/components/footer"; +import { Button } from "@/components/ui/button"; +import { MessageCircle, Search, Users, CheckCircle } from "lucide-react"; +import { Metadata } from "next"; + +export const metadata: Metadata = { + title: "How It Works - Badnaam Safar", + description: "Learn how our simple 4-step process helps you find the perfect travel agency and trip for your budget and preferences.", +}; + +export default function HowItWorksPage() { + const steps = [ + { + number: "1", + icon: , + title: "You Contact Us on WhatsApp", + description: "Start by reaching out to us on WhatsApp. Tell us you're planning a trip and need help choosing the right option.", + details: [ + "No need to fill long forms", + "Quick and easy conversation", + "Available on your schedule" + ] + }, + { + number: "2", + icon: , + title: "We Understand Your Budget, Dates & Preferences", + description: "We'll ask you a few simple questions to understand what you're looking for.", + details: [ + "What's your budget?", + "When do you want to travel?", + "What kind of trip are you interested in? (solo, group, adventure, relaxation, etc.)", + "Any specific destinations or preferences?" + ] + }, + { + number: "3", + icon: , + title: "We Suggest 2–3 Suitable Travel Agencies", + description: "Based on your needs, we'll recommend 2-3 trusted travel agencies that match your budget and style.", + details: [ + "We compare their packages and pricing", + "We explain the pros and cons of each option", + "We give you honest, unbiased advice" + ] + }, + { + number: "4", + icon: , + title: "You Choose and Book Directly with the Agency", + description: "You pick the agency and package that feels right for you, then book directly with them.", + details: [ + "You make the final decision", + "You handle payment directly with the agency", + "We're here if you need any clarification" + ] + } + ]; + + 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}

+
    + {step.details.map((detail, idx) => ( +
  • + + {detail} +
  • + ))} +
+
+
+ ))} +
+ +
+ +

+ Free consultation • No obligations • Honest advice +

+
+
+
+
+ ); +}