import React from "react"; import { motion, Variants } from "framer-motion"; import { Button } from "@/components/ui/button"; import { Badge } from "@/components/ui/badge"; import { ArrowRight, CheckCircle, Users, Target, Award, Sparkles, } from "lucide-react"; import { home } from "@/services/Constants"; const AboutUs: React.FC = () => { const containerVariants: Variants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.2, delayChildren: 0.3, }, }, }; const itemVariants: Variants = { hidden: { opacity: 0, y: 20 }, visible: { opacity: 1, y: 0, transition: { duration: 0.6, ease: "easeOut" }, }, }; const imageVariants: Variants = { hidden: { opacity: 0, scale: 0.8 }, visible: { opacity: 1, scale: 1, transition: { duration: 0.8, ease: "easeOut" }, }, }; return (
{/* Left Side - Images */} {/* Main Large Image */}

Team Collaboration

{/* Top Right Small Image */}
{/* Bottom Left Small Image */}
{/* Bottom Right Floating Card */}

500K+

Successful Hires

{/* Decorative Elements */} {/* Right Side - Content */} {home.about.badge} {home.about.heading} {home.about.subheading} {home.about.description} {/* Stats Grid */} {home.about.stats.map((stat, index) => (

{stat.value}

{stat.label}

))}
{/* Highlights */} {home.about.highlights.map((highlight, index) => (
{highlight}
))}
{/* CTA Button */} {/* Trust Badge */}
{[1, 2, 3, 4].map((i) => (
{i}
))}
Trusted by 15,000+ companies worldwide
); }; export default AboutUs;