diff --git a/components/career-flow.tsx b/components/career-flow.tsx new file mode 100644 index 0000000..f53ec03 --- /dev/null +++ b/components/career-flow.tsx @@ -0,0 +1,92 @@ +"use client"; +import { Container } from "@/components/container"; +import { motion } from "framer-motion"; +import { ArrowRight } from "lucide-react"; + +export function CareerFlow() { + const steps = [ + { + number: "01", + titleBn: "স্কিল ট্রেনিং", + titleEn: "Skill Training", + descriptionBn: "আন্তর্জাতিক মানের প্রশিক্ষণ", + descriptionEn: "International standard training" + }, + { + number: "02", + titleBn: "চাকরি-ভিত্তিক কাজ", + titleEn: "Job-Oriented Work", + descriptionBn: "বাস্তব অভিজ্ঞতা অর্জন", + descriptionEn: "Gain practical experience" + }, + { + number: "03", + titleBn: "গ্লোবাল ক্যারিয়ার", + titleEn: "Global Career Placement", + descriptionBn: "বিদেশে চাকরি নিশ্চিতকরণ", + descriptionEn: "Secure overseas employment" + } + ]; + + return ( +
+ {/* Background Pattern */} +
+
+
+ + + +

+ আপনার ক্যারিয়ার যাত্রা +

+

+ Your Career Journey +

+
+ +
+
+ {steps.map((step, index) => ( + +
+
+ {step.number} +
+

+ {step.titleBn} +

+
+ {step.titleEn} +
+

{step.descriptionBn}

+

{step.descriptionEn}

+
+ + {/* Arrow between steps */} + {index < steps.length - 1 && ( +
+ +
+ )} +
+ ))} +
+
+
+
+ ); +}