import React from "react"; import { motion } from "framer-motion"; import { Card, CardContent } from "./ui/card"; import { Button } from "./ui/button"; import { Badge } from "./ui/badge"; import { ArrowRight, ExternalLink, TrendingUp, Users, Clock, Star } from "lucide-react"; import { ImageWithFallback } from "./figma/ImageWithFallback"; import { navigateTo } from "../App"; // High-quality project images const regroupImage = "https://images.unsplash.com/photo-1551650975-87deedd944c3?w=600&h=400&fit=crop&auto=format"; const seezunImage = "https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?w=600&h=400&fit=crop&auto=format"; const wokaAwardImage = "https://images.unsplash.com/photo-1517077304055-6e89abbf09b0?w=600&h=400&fit=crop&auto=format"; const caseStudies = [ { id: 1, title: "Regroup", subtitle: "Social Networking Revolution", description: "A comprehensive social platform that connects communities worldwide with advanced messaging, group management, and content sharing capabilities.", image: regroupImage, category: "Social Platform", client: "Regroup Technologies", duration: "8 months", teamSize: "12 developers", technologies: ["React Native", "Node.js", "MongoDB", "WebRTC", "AWS"], results: [ { metric: "User Engagement", value: "+240%" }, { metric: "Active Communities", value: "50K+" }, { metric: "Daily Messages", value: "2.5M+" } ], awards: ["Best Social App 2023", "Innovation Award"], link: "/projects/regroup", featured: true }, { id: 2, title: "Seezun", subtitle: "Next-Gen E-commerce Platform", description: "Revolutionary e-commerce solution with AI-powered recommendations, seamless checkout, and integrated inventory management for modern retailers.", image: seezunImage, category: "E-commerce", client: "Seezun Retail", duration: "6 months", teamSize: "8 developers", technologies: ["React", "Python", "PostgreSQL", "Redis", "Stripe"], results: [ { metric: "Conversion Rate", value: "+180%" }, { metric: "Page Load Speed", value: "2.1s" }, { metric: "Customer Satisfaction", value: "4.9/5" } ], awards: ["E-commerce Excellence Award"], link: "/projects/seezun", featured: true }, { id: 3, title: "Woka", subtitle: "Award-Winning Fitness App", description: "Comprehensive fitness and wellness platform with personalized workout plans, nutrition tracking, and community features that won multiple industry awards.", image: wokaAwardImage, category: "Health & Fitness", client: "Woka Wellness", duration: "10 months", teamSize: "15 developers", technologies: ["Flutter", "Firebase", "TensorFlow", "Apple HealthKit", "Google Fit"], results: [ { metric: "User Retention", value: "+320%" }, { metric: "Workout Completions", value: "1M+" }, { metric: "App Store Rating", value: "4.8/5" } ], awards: ["App of the Year 2023", "Health Innovation Award", "User Choice Award"], link: "/projects/woka", featured: true } ]; export const CaseStudyHighlight = () => { return (
{/* Section Header */} Featured Work

Success Stories That Define Excellence

Explore our award-winning projects that have transformed businesses and delighted millions of users worldwide.

{/* Featured Case Studies Grid */}
{caseStudies.map((study, index) => ( navigateTo(study.link)} > {/* Image Header */}
{/* Category Badge */}
{study.category}
{/* Awards */} {study.awards.length > 0 && (
Award Winner
)} {/* Project Title Overlay */}

{study.title}

{study.subtitle}

{/* Content */}

{study.description}

{/* Key Metrics */}
{study.results.slice(0, 3).map((result, idx) => (
{result.value}
{result.metric}
))}
{/* Technologies */}

Technologies:

{study.technologies.slice(0, 3).map((tech) => ( {tech} ))} {study.technologies.length > 3 && ( +{study.technologies.length - 3} more )}
{/* Project Details */}
{study.duration}
{study.teamSize}
{/* Awards List */} {study.awards.length > 0 && (

Awards:

{study.awards.slice(0, 2).map((award, idx) => (
{award}
))}
)} {/* CTA Button */}
))}
{/* Call-to-Action */}

Ready to Create Your Success Story?

Join the ranks of industry leaders who have transformed their businesses with our innovative solutions.

); };