import { motion } from "framer-motion"; import { ArrowLeft, ExternalLink, Users, Globe, TrendingUp, Search, Figma, Zap, Shield, Settings, Rocket, ShoppingBag, Recycle, Tag } from "lucide-react"; import { Navigation } from "../components/Navigation"; import { Footer } from "../components/Footer"; import { Button } from "../components/ui/button"; import { GridPattern } from "../components/GridPattern"; import { ImageWithFallback } from "../components/figma/ImageWithFallback"; import { navigateTo } from "../App"; import seezunImage from "../src/images/seezun.webp"; const projectMetrics = [ { icon: , label: "Active Users", value: "50K+", description: "Fashion enthusiasts connected" }, { icon: , label: "Sustainability Impact", value: "+85%", description: "Reduction in fashion waste" }, { icon: , label: "Transaction Growth", value: "+200%", description: "Monthly marketplace activity" } ]; const keyFeatures = [ { title: "Rental Marketplace", description: "Rent South Asian clothing for special occasions, making premium fashion accessible and affordable." }, { title: "Buy & Sell Platform", description: "Purchase new and pre-loved clothing from verified sellers with secure payment processing." }, { title: "Sustainable Fashion Focus", description: "Promote circular fashion economy by encouraging reuse and extending garment lifecycles." }, { title: "Authentic South Asian Styles", description: "Curated collection of traditional and contemporary South Asian clothing and accessories." }, { title: "Size & Fit Matching", description: "Advanced size recommendation system ensuring perfect fit for every customer." }, { title: "Community Reviews", description: "Trusted rating system with detailed reviews from verified customers and renters." } ]; const processPhases = [ { phase: "Phase 1", title: "Discovery & Market Research", icon: , description: "Conducted extensive research into South Asian fashion market trends and customer behavior patterns.", details: "Analyzed competitor landscape, identified key pain points in traditional clothing shopping, and defined unique value propositions for rent-buy-sell model. Developed comprehensive user personas and market positioning strategy." }, { phase: "Phase 2", title: "UX Design & Prototyping", icon: , description: "Created intuitive user journeys for browsing, renting, buying, and selling South Asian clothing.", details: "Designed mobile-first interface with cultural sensitivity and accessibility in mind. Built interactive prototypes for user testing and stakeholder validation. Established visual design system reflecting South Asian aesthetic preferences." }, { phase: "Phase 3", title: "Marketplace Development", icon: , description: "Built robust marketplace platform with rental management, inventory tracking, and payment processing.", details: "Implemented agile development methodology with weekly sprints. Developed custom rental calendar system, automated pricing algorithms, and multi-vendor management tools. Integrated secure payment gateways and shipping logistics." }, { phase: "Phase 4", title: "Quality Assurance & Testing", icon: , description: "Comprehensive testing across all user flows, payment systems, and rental management features.", details: "Performed extensive functional testing, security audits, and performance optimization. Conducted user acceptance testing with beta customers. Implemented fraud detection and content moderation systems for marketplace safety." }, { phase: "Phase 5", title: "Platform Deployment", icon: , description: "Deployed scalable cloud infrastructure with automated deployment pipelines and monitoring systems.", details: "Set up containerized microservices architecture for optimal scalability. Implemented automated backup systems, real-time monitoring, and performance analytics. Established robust CI/CD pipeline for continuous feature delivery." }, { phase: "Phase 6", title: "Launch & Growth", icon: , description: "Executed successful market launch with comprehensive marketing strategy and customer onboarding.", details: "Coordinated launch campaign targeting South Asian communities globally. Implemented customer acquisition strategies, vendor onboarding programs, and community building initiatives. Established ongoing support and feature enhancement roadmap." } ]; export const SeezunProject = () => { return (
{/* Hero Section */}
{/* Back Button */}
{/* Content */}

Revolutionize the Way You Shop South Asian Clothing with{" "} Seezun

Rent, Buy, or Sell Old & New Clothes

Step into a new way of buying. Rent, buy, or sell South Asian clothing from others. Whether it be new or pre-loved clothing, Seezun covers it all.

+200% Transaction Growth E-commerce Marketplace Fashion
{/* Project Image */}
{/* Metrics Section */}
{projectMetrics.map((metric, index) => (
{metric.icon}
{metric.value}
{metric.label}
{metric.description}
))}
{/* Main Content Section */}

Transfigured the South Asian Clothing Market in Seezun

Created Seezun as a dynamic customer-driven platform connecting buyers, sellers, and renters for a seamless marketplace that renders fashion accessible, sustainable, and affordable.

{/* Key Features */}

Key Features & Capabilities

{keyFeatures.map((feature, index) => (

{feature.title}

{feature.description}

))}
{/* Project Delivery Process */}

Project Delivery Lifecycle

{/* Continuous background line */}
{/* Animated line overlay */}
{processPhases.map((phase, index) => ( {/* Mobile connection line */} {index < processPhases.length - 1 && (
)}
{/* Phase indicator with fixed width container */}
{/* Icon with background to mask the line */}
{phase.icon}
{/* Icon glow effect */}
{/* Connection dot for timeline */}
{index + 1} {phase.phase}
{phase.title}
{/* Content with consistent left alignment */}

{phase.description}

{phase.details}

))}
{/* CTA Section */}

Ready to Transform Your Fashion Marketplace?

Let's create a sustainable fashion platform together. From concept to launch, we'll help you build a marketplace that revolutionizes how people shop, rent, and sell clothing.

); };