"use client"; import { Container } from "@/components/container"; import { Heading } from "@/components/heading"; import { CheckCircle2 } from "lucide-react"; export function WhyChoose() { const reasons = [ { title: "Honest Advice", description: "No hidden agendas. We don't sell packages or earn commissions from agencies." }, { title: "Multiple Options", description: "We give you 2-3 agency options so you can choose what works best for you." }, { title: "No Hidden Agenda", description: "We're independent consultants. Your satisfaction is our only goal." }, { title: "Budget-Friendly", description: "Our consultation is completely free. You only pay the agency you choose." } ]; return (
Why Choose Badnaam Safar?

We're different because we put your needs first, not our profits.

{reasons.map((reason, index) => (

{reason.title}

{reason.description}

))}
); }