+
{project.name}
+
{project.title}
+
{project.flagEmoji}
{project.country}
diff --git a/components/FeaturedCaseStudies.tsx b/components/FeaturedCaseStudies.tsx
index 1e303d4..a725f95 100644
--- a/components/FeaturedCaseStudies.tsx
+++ b/components/FeaturedCaseStudies.tsx
@@ -4,12 +4,12 @@ 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,
+import {
+ ArrowRight,
+ TrendingUp,
+ Users,
+ Zap,
+ Eye,
ShoppingCart,
Heart,
Star,
@@ -26,7 +26,7 @@ import {
PieChart
} from "lucide-react";
import ranoutofLocalImage from '../src/images/ranoutof.webp';
-import seezunLocalImage from '../src/images/seezun.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';
@@ -52,22 +52,22 @@ const FeaturedCaseStudies = () => {
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: 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",
@@ -157,14 +157,14 @@ const FeaturedCaseStudies = () => {
return (
-
+
{/* Section Header */}
{
className="mb-6"
>
-
+
- Featured Work
+ 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 (
{
whileInView={{ opacity: 1, y: 0 }}
transition={{ duration: 0.6, delay: index * 0.2 }}
viewport={{ once: true }}
- className="group h-full"
+ className="h-full group"
>
- {
- if (study.title === 'Seezun') {
- navigate('/projects/seezun');
- } else if (study.title === 'WOKA') {
+ if (study.title === 'WOKA') {
navigate('/projects/woka');
- } else if (study.title === 'Tanami') {
+ }
+ // else if (study.title === 'Seezun') {
+ // navigate('/projects/seezun');
+ // }
+ else if (study.title === 'Tanami') {
navigate('/projects/tanami');
} else {
navigate('/case-studies');
@@ -220,20 +222,20 @@ const FeaturedCaseStudies = () => {
{/* Visual Section - Fixed Height */}
-
+
-
+
{/* Overlay with gradient */}
-
+
{/* Featured Badge */}
{study.featured && (
-
+
Featured
@@ -244,22 +246,21 @@ const FeaturedCaseStudies = () => {
-
+
-
+
{study.keyAchievement.number}
-
{study.keyAchievement.metric}
+
{study.keyAchievement.metric}
@@ -272,15 +273,15 @@ const FeaturedCaseStudies = () => {
{/* Project Title - Consistent Height */}
-
+
{study.title}
{/* Client & Description - Consistent Height */}
-
{study.client}
-
+
{study.client}
+
{study.description}
@@ -289,10 +290,10 @@ const FeaturedCaseStudies = () => {
{study.tags.map((tag) => (
-
{tag}
@@ -304,15 +305,17 @@ const FeaturedCaseStudies = () => {
{/* CTA Button - Fixed at Bottom */}
-
@@ -340,14 +343,14 @@ const FeaturedCaseStudies = () => {
viewport={{ once: true }}
className="mt-20 mb-16"
>
-
+
More Success Stories
-
-
+
+
{moreSuccessStories.map((story, index) => {
const AchievementIcon = story.keyAchievement.icon;
-
+
return (
{
whileInView={{ opacity: 1, y: 0 }}
transition={{ duration: 0.6, delay: index * 0.01 }}
viewport={{ once: true }}
- className="group h-full"
+ className="h-full group"
>
- {
if (story.title === 'TradersCircuit') {
@@ -376,36 +379,35 @@ const FeaturedCaseStudies = () => {
{/* Visual Section - Fixed Height */}
-
+
-
+
{/* Overlay with gradient */}
-
+
{/* Key Achievement - Overlaid on Visual */}
-
+
-
+
{story.keyAchievement.number}
-
{story.keyAchievement.metric}
+
{story.keyAchievement.metric}
@@ -418,15 +420,15 @@ const FeaturedCaseStudies = () => {
{/* Project Title - Consistent Height */}
-
+
{story.title}
{/* Client & Description - Consistent Height */}
-
{story.client}
-
+
{story.client}
+
{story.description}
@@ -435,10 +437,10 @@ const FeaturedCaseStudies = () => {
{story.tags.map((tag) => (
-
{tag}
@@ -450,8 +452,8 @@ const FeaturedCaseStudies = () => {
{/* CTA Button - Fixed at Bottom */}
-
@@ -487,12 +489,12 @@ const FeaturedCaseStudies = () => {
whileInView={{ opacity: 1, y: 0 }}
transition={{ duration: 0.8, delay: 0.6 }}
viewport={{ once: true }}
- className="text-center mt-16"
+ className="mt-16 text-center"
>
-