From 319c446f19c9ad20bc49689e704db6ab066194a7 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 14:06:51 +0000 Subject: [PATCH] Update components/why-choose-us.tsx --- components/why-choose-us.tsx | 77 ++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 components/why-choose-us.tsx diff --git a/components/why-choose-us.tsx b/components/why-choose-us.tsx new file mode 100644 index 0000000..1313983 --- /dev/null +++ b/components/why-choose-us.tsx @@ -0,0 +1,77 @@ +"use client"; +import { Container } from "@/components/container"; +import { motion } from "framer-motion"; +import { CheckCircle2 } from "lucide-react"; + +const reasons = [ + { + textBn: "Enam Group দ্বারা বিশ্বস্ত", + textEn: "Trusted by Enam Group" + }, + { + textBn: "চাকরি-ভিত্তিক দক্ষতা উন্নয়ন", + textEn: "Job-oriented skill development" + }, + { + textBn: "শক্তিশালী চাকরি সহায়তা", + textEn: "Strong job assistance support" + }, + { + textBn: "স্বচ্ছ ও নৈতিক প্রক্রিয়া", + textEn: "Transparent & ethical process" + }, + { + textBn: "শুরু থেকে শেষ পর্যন্ত গাইডেন্স", + textEn: "End-to-end guidance" + } +]; + +export function WhyChooseUs() { + return ( +
+ + +

+ কেন আমাদের বেছে নেবেন? +

+

+ Why Choose Us? +

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

+ {reason.textBn} +

+

+ {reason.textEn} +

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