diff --git a/app/services/page.tsx b/app/services/page.tsx new file mode 100644 index 0000000..a23092f --- /dev/null +++ b/app/services/page.tsx @@ -0,0 +1,90 @@ +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Footer } from "@/components/footer"; +import { Card, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"; +import { MessageSquare, Search, Users, TrendingUp, Shield, Heart } from "lucide-react"; +import { Metadata } from "next"; + +export const metadata: Metadata = { + title: "Our Services - Badnaam Safar", + description: "Free travel consultation, budget comparison, agency recommendations, and guidance for solo and group trips. We help you choose the right travel option.", +}; + +export default function ServicesPage() { + const services = [ + { + icon: , + title: "Free Trip Consultation", + description: "Get honest, unbiased advice about your travel plans. We listen to your needs and help you understand your options without any sales pressure." + }, + { + icon: , + title: "Budget & Itinerary Comparison", + description: "We compare multiple travel agencies, their packages, itineraries, and pricing so you can see exactly what you're getting for your money." + }, + { + icon: , + title: "Connecting with Trusted Agencies", + description: "We suggest 2-3 suitable travel agencies based on your budget and preferences. You choose the one that feels right for you." + }, + { + icon: , + title: "Guidance for Solo & Group Trips", + description: "Whether you're traveling alone or joining a group of strangers, we help you find safe, affordable, and enjoyable options." + }, + { + icon: , + title: "Avoiding Scams & Bad Deals", + description: "We help you identify red flags, understand what's realistic, and avoid agencies or packages that seem too good to be true." + }, + { + icon: , + title: "Personalized Recommendations", + description: "Every traveler is different. We take the time to understand your style, budget, and preferences to give you tailored suggestions." + } + ]; + + return ( +
+
+ +
+ + Our Services + +

+ We offer free, independent travel consultation to help you make informed decisions. Here's how we can help you. +

+
+ +
+ {services.map((service, index) => ( + + +
{service.icon}
+ {service.title} + + {service.description} + +
+
+ ))} +
+ +
+

+ Important Notice +

+

+ We do not sell tour packages or collect payments. +

+

+ Badnaam Safar is an independent consultant. All bookings, payments, and trip services are handled directly by the travel agencies we recommend. We simply help you choose the right one. +

+
+
+
+
+ ); +}