import { motion } from "framer-motion"; import { ArrowRight, ExternalLink } from "lucide-react"; import { Button } from "./ui/button"; import { GridPattern } from "./GridPattern"; import { ImageWithFallback } from "./figma/ImageWithFallback"; import { navigateTo } from "../App"; const featuredCaseStudy = { title: "Woka", description: "Developed Woka as a vibrant platform where learning meets play. With a safe and fun environment to explore, learn, and grow effortlessly.", achievement: "+300% User Retention", industryTags: ["Education", "Learning Platform"], image: "/images/woka.webp", metrics: [ { label: "Active Users", value: "500K+" }, { label: "User Retention", value: "+300%" }, { label: "Learning Hours", value: "+180%" } ] }; const caseStudies = [ { title: "Seezun", description: "Created Seezun as a dynamic customer-driven platform connecting buyers, sellers, and renters for a seamless marketplace that renders fashion accessible, sustainable, and affordable.", achievement: "+85% Brand Recognition", industryTags: ["Branding", "Fashion"], image: "/images/seezun.webp", }, { title: "Regroup", description: "Built Regroup as a social platform that brings together passion, global connections, teamwork, and love for sports through a vibrant online community.", achievement: "+150% User Engagement", industryTags: ["Social Media", "Digital Products"], image: "/images/regroup.webp", }, { title: "Tanami", description: "Revolutionized Tanami Capital into a powerful, intuitive platform that streamlines portfolio management and empowers users to grow their wealth effortlessly.", achievement: "+200% Portfolio Growth", industryTags: ["FinTech", "Wealth Management"], image: "/images/tanami.webp", } ]; const SmallCaseStudyCard = ({ study, index }: { study: typeof caseStudies[0]; index: number }) => { const getNavigationPath = (title: string) => { switch (title) { case 'Seezun': return '/projects/seezun'; case 'Woka': return '/projects/woka'; case 'Tanami': return '/projects/tanami'; case 'Regroup': return '/projects/regroup'; default: return '/case-studies'; } }; return ( navigateTo(getNavigationPath(study.title))} > {study.achievement} {study.title} {study.description} {study.industryTags.map((tag) => ( {tag} ))} { e.stopPropagation(); navigateTo(getNavigationPath(study.title)); }} > View Case Study ); }; export const CaseStudyHighlight = () => { return ( See What We've Built Real results from real projects. Here's how we've helped companies scale their digital products. navigateTo('/projects/woka')} > {featuredCaseStudy.achievement} {featuredCaseStudy.title} {featuredCaseStudy.description} {featuredCaseStudy.metrics.map((metric) => ( {metric.label} {metric.value} ))} {featuredCaseStudy.industryTags.map((tag) => ( {tag} ))} { e.stopPropagation(); navigateTo('/projects/woka'); }} > View Full Case Study {caseStudies.map((study, index) => ( ))} navigateTo('/case-studies')} className="bg-accent hover:bg-accent/90 text-accent-foreground px-8 py-3 rounded-[10px]" > View All Case Studies ); };
{study.description}
Real results from real projects. Here's how we've helped companies scale their digital products.
{featuredCaseStudy.description}