import React from "react"; import { motion } from "framer-motion"; import { Button } from "./ui/button"; import { Badge } from "./ui/badge"; import { Card, CardContent } from "./ui/card"; import { ImageWithFallback } from "./figma/ImageWithFallback"; import { ArrowRight, TrendingUp, Users, Zap, Eye, ShoppingCart, Heart, Star, Clock, Target, Smartphone, BarChart3, Settings, Network, Search, Calendar, PlayCircle, PartyPopper, PieChart } from "lucide-react"; import ranoutofLocalImage from '../src/images/ranoutof.webp'; import seezunLocalImage from '../src/images/seezun.webp'; import simpletendLocalImage from '../src/images/simplitend.webp'; import wokasideawardLocalImage from '../src/images/woka-side-award.webp'; import traderCircuitLocalImage from '../src/images/traders-circuit.webp'; import goodTimesLocalImage from '../src/images/goodtimes.webp'; import prospertyLocalImage from '../src/images/prosperty.webp'; import { useNavigate } from "react-router-dom"; const FeaturedCaseStudies = () => { const caseStudies = [ { id: 1, title: "SimplyTend", client: "Simply Tend", description: "SimpliTend is a mobile-first care management platform that connects patients and caregivers through real-time alerts, scheduling, and safety tools—delivered via dual apps and an admin dashboard.", keyAchievement: { number: "95%", metric: "Care Coordination Efficiency", icon: Heart }, visual: simpletendLocalImage, tags: ["Mobile App", "Care Management", "Real-Time Alerts", "Scheduling"], gradient: "from-blue-500/20 to-cyan-500/20", accentColor: "blue", featured: true }, { id: 2, title: "Seezun", client: "Seezun", description: "Seezun is a trend-driven P2P fashion marketplace enabling users to rent, buy, sell, or lend South Asian ethnicwear via mobile and web platforms.", keyAchievement: { number: "85%", metric: "Brand Recognition", icon: TrendingUp }, visual: seezunLocalImage, tags: ["Marketplace", "P2P", "Fashion", "Mobile & Web"], gradient: "from-purple-500/20 to-pink-500/20", accentColor: "purple", featured: false }, { id: 3, title: "WOKA", client: "WOKA Creations Pvt. Ltd", description: "WDI transformed WOKA's hybrid app into a high-performance native Android and iOS platform featuring seamless streaming, deep analytics, and robust 120-hour monthly support.", keyAchievement: { number: "300%", metric: "User Retention", icon: Users }, visual: wokasideawardLocalImage, tags: ["Native App", "Streaming", "Analytics", "Support"], gradient: "from-green-500/20 to-emerald-500/20", accentColor: "green", featured: false } ]; const moreSuccessStories = [ { id: 4, title: "TradersCircuit", client: "TradersCircuit", description: "TradersCircuit empowers India's millennials and Gen Z with smarter investments through seamless investment experience and ultra-personalized financial planning.", keyAchievement: { number: "300%", metric: "User Growth", icon: TrendingUp }, visual: traderCircuitLocalImage, tags: ["FinTech", "Trading Platform", "Indian Market", "Mobile App"], gradient: "from-green-500/20 to-emerald-500/20", accentColor: "green", featured: false }, { id: 5, title: "RanOutOf", client: "Global Ease Solutions", description: "WDI developed a smart grocery planning app with barcode scanning, voice commands, reminders, and a web-based admin CMS for Global Ease Solutions.", keyAchievement: { number: "75%", metric: "Shopping Efficiency", icon: ShoppingCart }, visual: ranoutofLocalImage, tags: ["Mobile App", "Barcode Scanning", "Voice AI", "Grocery Tech"], gradient: "from-green-500/20 to-emerald-500/20", accentColor: "green", featured: false }, { id: 6, title: "Prosperty", client: "Prosperty Ltd", description: "Break the barrier of real estate investing. With Prosperty, you can invest in portions of properties, making portfolio diversification smarter and more accessible.", keyAchievement: { number: "300%", metric: "Portfolio Options", icon: PieChart }, visual: prospertyLocalImage, tags: ["Real Estate", "Investment", "FinTech", "Portfolio"], gradient: "from-blue-500/20 to-cyan-500/20", accentColor: "blue", featured: false }, { id: 7, title: "GoodTimes", client: "GoodTimes Ltd", description: "From casual hangouts to special celebrations, Good Times makes browsing and booking a breeze, so you never miss out.", keyAchievement: { number: "250%", metric: "Event Discovery", icon: PartyPopper }, visual: goodTimesLocalImage, tags: ["Events", "Booking", "Lifestyle", "Mobile App"], gradient: "from-purple-500/20 to-pink-500/20", accentColor: "purple", featured: false } ]; const navigate = useNavigate(); return (
{/* Section Header */}
Featured Work

Featured Success Stories

Discover how we've helped companies across industries achieve remarkable results with our innovative development solutions.

{/* Case Studies Grid - Consistent Dimensions */}
{caseStudies.map((study, index) => { const AchievementIcon = study.keyAchievement.icon; return ( { if (study.title === 'Seezun') { navigate('/projects/seezun'); } else if (study.title === 'WOKA') { navigate('/projects/woka'); } else if (study.title === 'Tanami') { navigate('/projects/tanami'); } else { navigate('/case-studies'); } }} > {/* Visual Section - Fixed Height */}
{/* Overlay with gradient */}
{/* Featured Badge */} {study.featured && (
Featured
)} {/* Key Achievement - Overlaid on Visual */}
{study.keyAchievement.number}
{study.keyAchievement.metric}
{/* Content Section - Flexible Height with Consistent Spacing */}
{/* Project Title - Consistent Height */}

{study.title}

{/* Client & Description - Consistent Height */}
{study.client}

{study.description}

{/* Tags - Consistent Height */}
{study.tags.map((tag) => ( {tag} ))}
{/* CTA Button - Fixed at Bottom */}
); })}
{/* More Success Stories Section */}

More Success Stories

{moreSuccessStories.map((story, index) => { const AchievementIcon = story.keyAchievement.icon; return ( { if (story.title === 'TradersCircuit') { navigate('/projects/traderscircuit'); } else if (story.title === 'GoodTimes') { navigate('/projects/goodtimes'); } else if (story.title === 'Prosperty') { navigate('/projects/prosperty'); } else if (story.title === 'RanOutOf') { navigate('/projects/ranoutof'); } else { navigate('/case-studies'); } }} > {/* Visual Section - Fixed Height */}
{/* Overlay with gradient */}
{/* Key Achievement - Overlaid on Visual */}
{story.keyAchievement.number}
{story.keyAchievement.metric}
{/* Content Section - Flexible Height with Consistent Spacing */}
{/* Project Title - Consistent Height */}

{story.title}

{/* Client & Description - Consistent Height */}
{story.client}

{story.description}

{/* Tags - Consistent Height */}
{story.tags.map((tag) => ( {tag} ))}
{/* CTA Button - Fixed at Bottom */}
); })}
{/* Bottom CTA */}
); }; export default FeaturedCaseStudies;