"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}

))}
); }