From a9d20488c259b2a90a96efd416cc7ee0e7e9dbc7 Mon Sep 17 00:00:00 2001 From: priyanshuvish Date: Thu, 17 Jul 2025 14:03:33 +0530 Subject: [PATCH] fix import in casesutdy --- components/CaseStudyHighlight.tsx | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/components/CaseStudyHighlight.tsx b/components/CaseStudyHighlight.tsx index 279165d..c2da1eb 100644 --- a/components/CaseStudyHighlight.tsx +++ b/components/CaseStudyHighlight.tsx @@ -4,18 +4,13 @@ import { Button } from "./ui/button"; import { GridPattern } from "./GridPattern"; import { ImageWithFallback } from "./figma/ImageWithFallback"; import { navigateTo } from "../App"; -import regroupImage from '../public/images/regroup.webp'; -import seezunImage from '../public/images/seezun.webp'; -// import wokaImage from '../public/images/woka.webp'; -import wokaAwardImage from '../public/images/woka.webp'; -import tanamiImage from '../public/images/tanami.webp'; 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, + image: "/images/woka.webp", metrics: [ { label: "Active Users", value: "500K+" }, { label: "User Retention", value: "+300%" }, @@ -29,21 +24,21 @@ const caseStudies = [ 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 + 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: regroupImage + 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: tanamiImage + image: "/images/tanami.webp", } ];