import { motion } from "framer-motion"; import { ArrowLeft, ExternalLink, Users, BookOpen, TrendingUp, Search, Figma, Zap, Shield, Settings, Rocket, PlayCircle, Heart, Star } 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"; import wokaImage from "../src/images/woka-side-award.webp" const projectMetrics = [ { icon: , label: "Active Young Learners", value: "100K+", description: "Kids engaged in learning activities" }, { icon: , label: "User Retention", value: "+300%", description: "Increase in daily active users" }, { icon: , label: "Parent Satisfaction", value: "95%", description: "Parents recommend Woka" } ]; const keyFeatures = [ { title: "Animated Learning Content", description: "Engaging animated shows that make learning fun and memorable for kids of all ages." }, { title: "Interactive Video Games", description: "Educational games that combine entertainment with learning objectives and skill development." }, { title: "Educational Web Series", description: "Structured learning content delivered through engaging episodic format." }, { title: "Safe Learning Environment", description: "Child-friendly platform with robust safety measures and parental controls." }, { title: "Progress Tracking", description: "Comprehensive analytics for parents and educators to monitor learning progress." }, { title: "Multi-Device Compatibility", description: "Seamless experience across tablets, smartphones, and computers." } ]; const processPhases = [ { phase: "Phase 1", title: "Educational Research & Analysis", icon: , description: "Conducted comprehensive research on educational methodologies and children's learning patterns.", details: "Analyzed current edutainment market, identified learning gaps, and collaborated with educational experts to define age-appropriate content strategies. Developed comprehensive understanding of child psychology and learning preferences." }, { phase: "Phase 2", title: "Child-Centric Design", icon: , description: "Created intuitive, colorful, and engaging user interfaces specifically designed for children.", details: "Developed interactive prototypes with focus on accessibility and ease of use. Implemented child-friendly navigation patterns, vibrant color schemes, and engaging visual elements that stimulate learning and exploration." }, { phase: "Phase 3", title: "Platform Development", icon: , description: "Built robust learning platform with streaming capabilities, game engines, and content management systems.", details: "Implemented scalable architecture supporting high-quality video streaming, interactive games, and real-time progress tracking. Developed content delivery systems optimized for various devices and network conditions." }, { phase: "Phase 4", title: "Safety & Security Testing", icon: , description: "Implemented comprehensive child safety measures and parental control systems.", details: "Conducted thorough security audits focusing on child protection protocols. Implemented content filtering, screen time management, and robust privacy controls. Ensured compliance with children's online safety regulations." }, { phase: "Phase 5", title: "Content Management & Analytics", icon: , description: "Deployed content management systems with real-time analytics and performance monitoring.", details: "Established automated content delivery pipelines and learning analytics dashboard. Implemented real-time monitoring for content performance, user engagement, and learning outcomes measurement." }, { phase: "Phase 6", title: "Launch & Community Building", icon: , description: "Executed successful launch strategy with focus on educational community engagement.", details: "Coordinated launch campaign targeting parents, educators, and schools. Established partnerships with educational institutions and content creators. Implemented feedback systems for continuous improvement and community building." } ]; export const WokaProject = () => { return (
{/* Hero Section */}
{/* Back Button */}
{/* Content */}

Change the Way Kids Learn and Play with{" "} Woka

Animated Shows, Video Games, and Web Series for Kids

Woka makes learning a fun and exciting experience. From animated content to interactive video games and engaging web series, every feature is designed to inspire kids while playing.

+300% User Retention Education Learning Platform Kids
{/* Project Image */}
{/* Metrics Section */}
{projectMetrics.map((metric, index) => (
{metric.icon}
{metric.value}
{metric.label}
{metric.description}
))}
{/* Main Content Section */}

Redefining Edutainment with Woka

Developed Woka as a vibrant platform where learning meets play. With a safe and fun environment to explore, learn, and grow effortlessly.

{/* 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 Transform Children's Learning Experience?

Let's create an educational platform that makes learning fun and engaging. From concept to launch, we'll help you build a platform that inspires children to learn and grow.

); };