import { useState, useEffect } from 'react'; import { Calendar, MapPin, Users, ChevronLeft, ChevronRight, ArrowRight, Star, Award, Building, Rocket, CheckCircle, Clock, Share2, Download, ArrowDown } from 'lucide-react'; export default function TechEventLanding() { const [currentSlide, setCurrentSlide] = useState(0); const [isScrolled, setIsScrolled] = useState(false); const [activeTrack, setActiveTrack] = useState(null); const [selectedTrack, setSelectedTrack] = useState(null); const [showModal, setShowModal] = useState(false); useEffect(() => { const handleScroll = () => { setIsScrolled(window.scrollY > 50); }; window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); const eventDetails = { date: "February 13-15, 2025", venue: "Sobus Center of Excellence, NMIMS Campus, Shirpur", registration: "Open until August 30, 2024" }; const eventHighlights = [ { number: "500+", label: "Participants", icon: Users }, { number: "50+", label: "Mentors", icon: Star }, { number: "$100K", label: "Prize Pool", icon: Award }, { number: "25+", label: "Partners", icon: Building } ]; const tracks = [ { title: "Agriculture", description: "Revolutionize farming with sustainable technology solutions", color: "from-green-500 to-green-600", icon: "🌾" }, { title: "Health", description: "Transform healthcare delivery and patient care", color: "from-red-500 to-red-600", icon: "🏥" }, { title: "Skilling", description: "Innovative solutions for workforce development", color: "from-blue-500 to-blue-600", icon: "💡" }, { title: "Energy", description: "Clean and sustainable energy solutions", color: "from-yellow-500 to-yellow-600", icon: "⚡" }, { title: "Education", description: "Reimagine learning for the digital age", color: "from-purple-500 to-purple-600", icon: "📚" }, { title: "Sustainability", description: "Build solutions for a sustainable future", color: "from-emerald-500 to-emerald-600", icon: "🌱" } ]; const trackDetails = { "Agriculture": { expectations: [ "Solutions for sustainable farming practices", "Smart irrigation systems", "Crop disease detection", "Supply chain optimization", "Farm management solutions" ], requirements: [ "Focus on local farming challenges", "Cost-effective implementation", "Environmental sustainability", "Scalability to different farm sizes" ], impact: "Projects should demonstrate clear benefits for local farmers and agricultural sustainability." }, "Health": { expectations: [ "Telemedicine solutions", "Health monitoring systems", "Medical record management", "Healthcare accessibility tools", "Preventive healthcare innovations" ], requirements: [ "Data privacy compliance", "User-friendly interface", "Offline functionality", "Regional language support" ], impact: "Solutions should improve healthcare accessibility and affordability in rural areas." }, "Skilling": { expectations: [ "Vocational training platforms", "Skill assessment tools", "Job matching systems", "Remote learning solutions", "Practical skill development" ], requirements: [ "Mobile-first approach", "Interactive learning features", "Progress tracking", "Industry relevance" ], impact: "Projects should enhance employability and practical skills development." }, "Energy": { expectations: [ "Renewable energy solutions", "Energy efficiency tools", "Power management systems", "Sustainable lighting", "Waste-to-energy concepts" ], requirements: [ "Cost-effectiveness", "Easy maintenance", "Local resource utilization", "Environmental impact" ], impact: "Solutions should promote sustainable energy usage and accessibility." }, "Education": { expectations: [ "Interactive learning platforms", "Educational assessment tools", "Personalized learning systems", "Educational resource management", "Parent-teacher communication" ], requirements: [ "Offline accessibility", "Multi-language support", "Engaging content delivery", "Progress monitoring" ], impact: "Projects should enhance learning outcomes and educational accessibility." }, "Sustainability": { expectations: [ "Waste management solutions", "Resource conservation tools", "Environmental monitoring", "Green technology innovations", "Eco-friendly alternatives" ], requirements: [ "Environmental impact", "Community engagement", "Long-term viability", "Resource efficiency" ], impact: "Solutions should contribute to environmental conservation and sustainable practices." } }; const timeline = [ { phase: "Application", date: "Aug 1-30", description: "Submit your innovative idea" }, { phase: "Selection", date: "Sept 1-5", description: "Top teams will be shortlisted" }, { phase: "Event", date: "Sept 15-17", description: "Build, learn, and pitch" }, { phase: "Demo Day", date: "Sept 17", description: "Present to investors" } ]; const partners = [ "https://placeholder.com/150x50", "https://placeholder.com/150x50", "https://placeholder.com/150x50", "https://placeholder.com/150x50", "https://placeholder.com/150x50", "https://placeholder.com/150x50" ]; const Modal = ({ isOpen, onClose, track }) => { if (!isOpen || !track) return null; return (

{track.title}

Expected Solutions

    {trackDetails[track.title].expectations.map((exp, index) => (
  • {exp}
  • ))}

Requirements

    {trackDetails[track.title].requirements.map((req, index) => (
  • {req}
  • ))}

Expected Impact

{trackDetails[track.title].impact}

); }; return (

Where Innovation Meets Opportunity

Join the biggest Idea Hackathon event of 2024. One month of tinkering with ideas, creating plans for new technologies, solving problems at the grassroot level. Three final days of innovation, networking, and breakthrough technologies.

{eventDetails.date}
{eventDetails.venue}
{eventHighlights.map((highlight, index) => (
{highlight.number}
{highlight.label}
))}

What is Innovent?

Innovent is India's premier startup competition and mentorship program, designed to transform groundbreaking ideas into successful businesses. We bring together entrepreneurs, mentors, and investors to create a thriving startup ecosystem that drives innovation across multiple sectors.

500+
Entries
50+
Mentors
₹10L+
Prizes
6
Domains
25+
Investors
15+
Partners

Previous Events

Innovent 2023 Highlights

Watch the amazing journey of our previous participants and their innovative solutions that made a difference.

Innovation Tracks

{tracks.map((track, index) => (
{ setSelectedTrack(track); setShowModal(true); }} onMouseEnter={() => setActiveTrack(index)} onMouseLeave={() => setActiveTrack(null)} className={`relative overflow-hidden rounded-2xl p-8 transition-all duration-300 cursor-pointer ${ activeTrack === index ? 'bg-gradient-to-r ' + track.color + ' text-white transform scale-105' : 'bg-white hover:shadow-xl' }`} >
{track.icon}

{track.title}

{track.description}

))}
setShowModal(false)} track={selectedTrack} />

Event Timeline

{timeline.map((phase, index) => (
{phase.date}

{phase.phase}

{phase.description}

{index < timeline.length - 1 && ( )}
))}

Register Your Idea

{[ "AI/ML", "Software", "Website", "App", "UI/UX Design", "Data Analytics", "IoT", "Robotics", "Blockchain", "Cyber Security", "Online Portal/Dashboard" ].map((tech, index) => ( ))}
Team Lead
Team Member 2

Drag and drop your pitch deck here, or click to browse

Accepted formats: PDF, PPT, PPTX, DOC, DOCX (Max size: 10MB)

Our Partners

{partners.map((partner, index) => ( {`Partner ))}
); }