AMOEBA PRODUCTIONS & STUDIO | Best Event Management Company in Patna
{/* Hero Section */}
{/* Video Section */}
{sliderImages.map((slide, idx) => (
{slide.title}
{slide.subtitle}
setIsBookingOpen(true)}
className="px-8 py-3 bg-primary text-white rounded-full hover:bg-primary-dark transition-colors duration-200"
>
Book Now
))}
{/* Upcoming Events */}
{sectionVisible && (
Upcoming Events
{loading ? (
) : upcomingEvents.length === 0 ? (
No upcoming events at the moment.
Check back soon for exciting events!
) : (
{upcomingEvents.map((event) => (
))}
)}
)}
{/* Services */}
Our Services
{services.map((service, idx) => (
{service.icon}
{service.title}
{service.description}
{service.items.map((item, itemIdx) => (
-
{item}
))}
{/* Contextual links to Gallery and Contact */}
See our Gallery
Contact Us
))}
{/* Auto Typing Section */}
Why Hire an Event Planner?
Time Saving
Expert Network
Budget Control
Stress Relief
setIsBookingOpen(true)}
className="px-8 py-3 bg-white text-primary font-medium rounded-full hover:bg-gray-100 transition-colors duration-200"
whileHover={{ scale: 1.05 }}
whileTap={{ scale: 0.95 }}
>
Book a Consultation
{/* Portfolio Section */}
{/* Team Section */}
Meet Our Team
{teamMembers.map((member, idx) => (
{member.name}
{member.position}
))}
{/* Gallery Section */}
{/* Trust Elements Section */}
{/* Statistics Counter Section */}
{/* Instagram Feed Section */}
{/* Bio Modal */}
{selectedMember !== null && (
{teamMembers[selectedMember].name}
{teamMembers[selectedMember].position}
{teamMembers[selectedMember].bio}
Areas of Expertise:
{teamMembers[selectedMember].expertise.map((skill, idx) => (
-
{skill}
))}
)}
setIsBookingOpen(false)} />
);
};
export default Home;