diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..a507524 --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,79 @@ +"use client"; +import { Container } from "@/components/container"; +import { Button } from "@/components/ui/button"; +import { motion } from "framer-motion"; +import { ArrowRight, Phone } from "lucide-react"; + +export function Hero() { + return ( +
+ {/* Background Pattern */} +
+ + + + {/* Bangla Headline */} +

+ বিদেশে যেতে চান, কিন্তু skill না থাকায়
+ সুযোগ হারাচ্ছেন? এখন আর না ❌ +

+ + {/* English Headline */} +

+ Start Your Global Career with Skill, Confidence & Proper Guidance +

+ + {/* Subheading */} +

+ International Skill Training • Job Assistance • Visa Assurance Program +

+ + {/* CTA Buttons */} +
+ + +
+ + {/* Trust Badge */} + +

+ 🏢 A Concern of Enam Group - Your Trusted Partner +

+
+
+
+ + {/* Bottom Wave */} +
+ + + +
+
+ ); +}