import React, { useState, useEffect } from 'react'; import { motion, AnimatePresence } from 'framer-motion'; import { useInView } from 'react-intersection-observer'; import { Heart, Users, Calendar, Trophy, Star, Target, TrendingUp, Award, Flag, Building2, Laptop, Map, UserPlus, ShoppingBag, Store, Gift, Music, PartyPopper, MapPin, Briefcase, Lightbulb, Camera, X, ChevronLeft, ChevronRight } from 'lucide-react'; import ParticlesBackground from '../components/ParticlesBackground'; import { Helmet } from "react-helmet"; const stats = [ { icon: , value: '80K+', label: 'Happy Guests', description: 'Delighted attendees at our events', }, { icon: , value: '98%', label: 'Client Satisfaction', description: 'Consistently exceeding expectations', }, { icon: , // Changed from Store to UserPlus value: '50+', label: 'Vendors', description: 'Trusted partners for quality services', }, { icon: , // Changed from Star to Building2 value: '40+', label: 'Venue Partners', description: 'Build with trusted partners', }, ]; const expertise = [ { title: 'Wedding Planning', percentage: 98, color: 'bg-secondary', }, { title: 'Corporate Events', percentage: 98, color: 'bg-primary', }, { title: 'Social Gatherings', percentage: 98, color: 'bg-accent', }, { title: 'Destination Events', percentage: 70, color: 'bg-purple-500', }, { title: 'Festive Events', percentage: 98, color: 'bg-sky-500', }, { title: 'Artist Management', percentage: 90, color: 'bg-gray-600', }, ]; const milestones = [ { year: 2020, title: 'Company Founded', description: 'Started with a vision to transform event experiences', icon: , // Changed from Target to Flag }, { year: 2021, title: 'Quality Team', description: 'Hired top talent to deliver exceptional events', icon: , // Changed from TrendingUp to Users }, { year: 2022, title: 'Expanded Services', description: 'Hotel & Venues Partnerships', icon: , // Changed from Award to Building2 }, { year: 2023, title: 'Industry Recognition', description: 'Received multiple recognitions', icon: , // Kept Trophy }, { year: 2024, title: 'Technology Integration', description: 'Implemented cutting-edge event tech solutions', icon: , // Changed from Star to Laptop }, { year: 2025, title: 'Regional Expansion', description: 'Expanded operations', icon: , // Changed from Star to Map }, ]; const About = () => { const [ref, inView] = useInView({ triggerOnce: true, threshold: 0.1, }); const [journeyRef, journeyInView] = useInView({ triggerOnce: false, // Allow animation to restart if scrolled out and back in threshold: 0.2, // Trigger when 20% is visible }); // Background sketch elements configuration - Expanded list const sketchIcons = [ { icon: Users, size: 'w-16 h-16', top: '15%', left: '10%', rotate: -15 }, { icon: Calendar, size: 'w-12 h-12', top: '30%', right: '12%', rotate: 20 }, { icon: Trophy, size: 'w-20 h-20', top: '75%', left: '18%', rotate: 5 }, { icon: Gift, size: 'w-14 h-14', top: '50%', left: '40%', rotate: -10 }, { icon: Music, size: 'w-10 h-10', top: '88%', right: '15%', rotate: 18 }, { icon: PartyPopper, size: 'w-16 h-16', top: '8%', right: '25%', rotate: -5 }, { icon: Star, size: 'w-12 h-12', top: '60%', right: '30%', rotate: 12 }, { icon: MapPin, size: 'w-14 h-14', top: '25%', left: '30%', rotate: 10 }, { icon: Briefcase, size: 'w-16 h-16', top: '40%', right: '20%', rotate: -8 }, { icon: Lightbulb, size: 'w-12 h-12', top: '65%', left: '5%', rotate: 15 }, { icon: TrendingUp, size: 'w-18 h-18', top: '80%', left: '45%', rotate: -3 }, { icon: Award, size: 'w-14 h-14', top: '10%', left: '50%', rotate: 25 }, { icon: Camera, size: 'w-12 h-12', top: '90%', left: '30%', rotate: -12 }, { icon: Flag, size: 'w-16 h-16', top: '5%', left: '5%', rotate: 8 }, { icon: Laptop, size: 'w-14 h-14', top: '55%', right: '5%', rotate: -18 }, ]; return (
About Us | Amoeba Productions - Event Management Company Patna {/* Hero Section */}

About Us

Crafting Unforgettable Moments Since 2020

{/* Our Story Section */}

Our Story

Founded in 2020, Amoeba Productions has grown from a small team of passionate event planners to one of Patna's leading event management companies. Our journey has been marked by innovation, dedication, and a relentless pursuit of excellence.

We believe in creating not just events, but experiences that leave lasting impressions. Our approach combines creativity with meticulous planning, ensuring every detail contributes to the overall success of your event.

6+

Years Experience

125+

Events Completed

98%

Client Satisfaction

Team planning session
{/* Statistics Section */}

Our Impact

{stats.map((stat, idx) => (
{stat.icon}

{stat.value}

{stat.label}

{stat.description}

))}
{/* Experience Graph Section */}

6 Years of Growth

{/* Events Growth Chart */}

Growth Trajectory

{/* Increased height for better visibility */} {/* Adjusted viewBox */} {/* Grid lines with labels */} {[0, 1, 2, 3, 4].map((i) => ( ))} {/* Smooth rising growth curve */} {/* Data points */} {['2020', '2021', '2022', '2023', '2024', '2025'].map((year, i) => ( {year} ))}
{/* Expertise Levels */}

Areas of Expertise

{expertise.map((skill, idx) => (
{skill.title} {skill.percentage}%
))}
{/* Milestones Section with Animated Background */}
{/* Animated Background Elements */}
{sketchIcons.map((item, idx) => ( ))}
{/* Main Content */}

Our Journey

{/* Timeline line */}
{milestones.map((milestone, idx) => (
{/* Content card */}

{milestone.year}

{milestone.title}

{milestone.description}

{/* Icon circle */}
{React.cloneElement(milestone.icon, { className: 'w-6 h-6 text-white' })}
))}
); }; export default About;