From 5f746ec1a91ab02344c33e816a517872b167be25 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 14:07:05 +0000 Subject: [PATCH] Update components/hero.tsx --- components/hero.tsx | 79 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 components/hero.tsx 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 */} +
+ + + +
+
+ ); +}