diff --git a/components/services.tsx b/components/services.tsx new file mode 100644 index 0000000..a71b9aa --- /dev/null +++ b/components/services.tsx @@ -0,0 +1,103 @@ +"use client"; +import { Container } from "@/components/container"; +import { Card, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"; +import { motion } from "framer-motion"; +import { GraduationCap, Award, Briefcase, FileText, Shield } from "lucide-react"; + +const services = [ + { + icon: GraduationCap, + title: "Industry-Based Skill Training", + titleBn: "ইন্ডাস্ট্রি-ভিত্তিক স্কিল ট্রেনিং", + description: "Practical, job-oriented training aligned with international demand", + descriptionBn: "আন্তর্জাতিক চাহিদা অনুযায়ী ব্যবহারিক, চাকরি-ভিত্তিক প্রশিক্ষণ" + }, + { + icon: Award, + title: "International Standard Certificate", + titleBn: "আন্তর্জাতিক মানের সার্টিফিকেট", + description: "Globally recognized skill certification", + descriptionBn: "বিশ্বব্যাপী স্বীকৃত দক্ষতা সার্টিফিকেশন" + }, + { + icon: Briefcase, + title: "Overseas Job Assistance", + titleBn: "বিদেশে চাকরির সহায়তা", + description: "Support for job placement in international markets", + descriptionBn: "আন্তর্জাতিক বাজারে চাকরি প্রাপ্তির সহায়তা" + }, + { + icon: FileText, + title: "Visa Process Guidance & Documentation", + titleBn: "ভিসা প্রক্রিয়া গাইডেন্স ও ডকুমেন্টেশন", + description: "Complete visa application and documentation support", + descriptionBn: "সম্পূর্ণ ভিসা আবেদন এবং ডকুমেন্টেশন সহায়তা" + }, + { + icon: Shield, + title: "Transparent & Ethical Process", + titleBn: "স্বচ্ছ ও নৈতিক প্রক্রিয়া", + description: "Trusted, honest consultancy service", + descriptionBn: "বিশ্বস্ত, সৎ পরামর্শ সেবা" + } +]; + +export function Services() { + return ( +
+ + {/* Section Header */} + +

+ আমাদের সেবাসমূহ +

+

+ Our Services +

+

+ Comprehensive support for your international career journey +

+
+ + {/* Services Grid */} +
+ {services.map((service, index) => ( + + + +
+ +
+ + {service.titleBn} + + + {service.title} + + + {service.descriptionBn} + + + {service.description} + +
+
+
+ ))} +
+
+
+ ); +}