diff --git a/components/lead-form.tsx b/components/lead-form.tsx new file mode 100644 index 0000000..2981402 --- /dev/null +++ b/components/lead-form.tsx @@ -0,0 +1,108 @@ +"use client"; +import { Container } from "@/components/container"; +import { KleapForm } from "@/components/kleap-form"; +import { motion } from "framer-motion"; + +export function LeadForm() { + const fields = [ + { + name: "full_name", + label: "Full Name / পূর্ণ নাম", + type: "text" as const, + required: true, + placeholder: "Enter your full name" + }, + { + name: "phone", + label: "Phone Number / ফোন নম্বর", + type: "tel" as const, + required: true, + placeholder: "+880 1XXX XXXXXX" + }, + { + name: "preferred_country", + label: "Preferred Country / পছন্দের দেশ", + type: "select" as const, + required: true, + options: [ + "Saudi Arabia", + "UAE", + "Qatar", + "Kuwait", + "Oman", + "Malaysia", + "Singapore", + "Other" + ] + }, + { + name: "skill_interest", + label: "Skill Interest / দক্ষতার আগ্রহ", + type: "select" as const, + required: true, + options: [ + "Construction", + "Hospitality", + "Healthcare", + "Technical/IT", + "Manufacturing", + "Agriculture", + "Other" + ] + } + ]; + + return ( +
+ + + {/* Section Header */} +
+

+ আজই শুরু করুন আপনার গ্লোবাল ক্যারিয়ার +

+

+ Start Your Global Career Today +

+

+ বিনামূল্যে পরামর্শের জন্য ফর্মটি পূরণ করুন • Fill the form for free consultation +

+
+ + {/* Form Card */} +
+ +
+ + {/* Trust Badge */} + +

+ 🔒 আপনার তথ্য সম্পূর্ণ নিরাপদ এবং গোপনীয় থাকবে +

+

+ Your information is completely safe and confidential +

+
+
+
+
+ ); +}