diff --git a/components/why-choose.tsx b/components/why-choose.tsx new file mode 100644 index 0000000..a96415b --- /dev/null +++ b/components/why-choose.tsx @@ -0,0 +1,53 @@ +"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}

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