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 regroupImage from '../src/images/regroup.webp'; // import seezunImage from '../src/images/seezun.webp'; // import wokaImage from '../src/images/woka.webp'; import wokaAwardImage from '../src/images/woka.webp'; import tanamiImage from '../src/images/tanami.webp'; import { useNavigate } from "react-router-dom"; 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: wokaAwardImage, 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: seezunImage // }, { 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: regroupImage }, { 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: tanamiImage } ]; 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'; } }; const navigate = useNavigate(); return ( navigate(getNavigationPath(study.title))} > {study.achievement} {study.title} {study.description} {study.industryTags.map((tag) => ( {tag} ))} { e.stopPropagation(); navigate(getNavigationPath(study.title)); }} > View Case Study ); }; export const CaseStudyHighlight = () => { const navigate = useNavigate(); return ( See What We've Built Real results from real projects. Here's how we've helped companies scale their digital products. navigate('/projects/woka')} > {featuredCaseStudy.achievement} {featuredCaseStudy.title} {featuredCaseStudy.description} {featuredCaseStudy.metrics.map((metric) => ( {metric.label} {metric.value} ))} {featuredCaseStudy.industryTags.map((tag) => ( {tag} ))} { e.stopPropagation(); navigate('/projects/woka'); }} > View Full Case Study {caseStudies.map((study, index) => ( ))} navigate('/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}