import { motion } from "framer-motion"; import { ArrowLeft, ExternalLink, Calendar, MapPin, Users, Clock, Zap, Shield, Settings, Rocket, Target, Activity, Smartphone, Globe, Star, Ticket } from "lucide-react"; import { Navigation } from "../components/Navigation"; import { Footer } from "../components/Footer"; import { Button } from "../components/ui/button"; import { GridPattern } from "../components/GridPattern"; import { ImageWithFallback } from "../components/figma/ImageWithFallback"; import { navigateTo } from "../App"; const projectMetrics = [ { icon: , label: "Event Discovery", value: "250%", description: "Increase in event discovery" }, { icon: , label: "User Engagement", value: "180%", description: "Growth in user engagement" }, { icon: , label: "Bookings Made", value: "50K+", description: "Successful event bookings" } ]; const keyFeatures = [ { title: "Effortless Event Discovery", description: "Browse through a curated selection of local events with smart filtering and personalized recommendations based on your interests and location." }, { title: "Seamless Booking Experience", description: "One-click booking system with secure payment processing and instant confirmation for all types of events and celebrations." }, { title: "Real-time Event Updates", description: "Get instant notifications about event changes, new listings, and personalized recommendations based on your preferences." }, { title: "Social Event Planning", description: "Invite friends, create groups, and coordinate event attendance with built-in social features and group booking capabilities." }, { title: "Location-Based Recommendations", description: "Discover events happening near you with intelligent location-based suggestions and interactive maps." }, { title: "Event History & Reviews", description: "Track your event history, leave reviews, and discover new events based on your past preferences and ratings." } ]; const processPhases = [ { phase: "Phase 1", title: "Event Market Research & User Analysis", icon: , description: "Comprehensive analysis of local event markets and user behavior patterns for event discovery.", details: "Studied event discovery trends, user preferences for different event types, and analyzed booking patterns across various demographics. Identified key pain points in existing event platforms and opportunities for improvement." }, { phase: "Phase 2", title: "Event-Centric UX Design", icon: , description: "Designed intuitive interfaces optimized for event browsing and booking experiences.", details: "Created user-friendly designs focusing on visual event discovery, streamlined booking flows, and social features. Developed prototypes with emphasis on event imagery, clear information hierarchy, and effortless navigation." }, { phase: "Phase 3", title: "Platform Development & Integration", icon: , description: "Built scalable event platform with booking systems, payment processing, and real-time features.", details: "Developed robust architecture supporting event listings, booking management, payment integration, and real-time notifications. Implemented search algorithms, recommendation engines, and social features for group planning." }, { phase: "Phase 4", title: "Security & Payment Integration", icon: , description: "Implemented secure payment processing and data protection for user transactions.", details: "Integrated secure payment gateways, implemented booking confirmation systems, and ensured data protection compliance. Added fraud prevention measures and secure user authentication systems." }, { phase: "Phase 5", title: "Performance & Mobile Optimization", icon: , description: "Optimized platform performance for fast event discovery and seamless mobile experience.", details: "Fine-tuned application performance for quick event loading, efficient search results, and smooth mobile interactions. Implemented caching strategies and optimized image delivery for event listings." }, { phase: "Phase 6", title: "Launch & Community Building", icon: , description: "Successfully launched platform and built active community of event organizers and attendees.", details: "Executed comprehensive launch strategy, onboarded event organizers, and established user community. Implemented feedback systems and iterative improvements based on user behavior and preferences." } ]; export const GoodTimesProject = () => { return (
{/* Hero Section */}
{/* Back Button */}
{/* Content */}

Find Top Local Events with{" "} Good Times

Find events for any event, any time, effortless

From casual hangouts to special celebrations, Good Times makes browsing and booking a breeze, so you never miss out.

+250% Event Discovery Events Booking Lifestyle
{/* Project Image */}
{/* Metrics Section */}
{projectMetrics.map((metric, index) => (
{metric.icon}
{metric.value}
{metric.label}
{metric.description}
))}
{/* Main Content Section */}

Revolutionizing how you discover events with Good Times

Positioned Good Times as the go-to platform for event discovery, creating an intuitive experience that connects people with memorable experiences.

{/* Key Features */}

Key Features & Capabilities

{keyFeatures.map((feature, index) => (

{feature.title}

{feature.description}

))}
{/* Project Delivery Process */}

Project Delivery Lifecycle

{/* Continuous background line */}
{/* Animated line overlay */}
{processPhases.map((phase, index) => ( {/* Mobile connection line */} {index < processPhases.length - 1 && (
)}
{/* Phase indicator with fixed width container */}
{/* Icon with background to mask the line */}
{phase.icon}
{/* Icon glow effect */}
{/* Connection dot for timeline */}
{index + 1} {phase.phase}
{phase.title}
{/* Content with consistent left alignment */}

{phase.description}

{phase.details}

))}
{/* CTA Section */}

Ready to Build Your Next Event Platform?

Let's create an exceptional event discovery platform together. From concept to launch, we'll help you build a platform that connects people with unforgettable experiences.

); };