import React from 'react'; import { ArrowRight, Clock, FileText, Lightbulb, Users, Code2, Smartphone, Building2, Heart, ShoppingCart, GraduationCap, Briefcase, Cpu, Utensils, MapPin, Scale, Leaf, Music, MessageCircle, Truck, Star as StarIcon, Church, Shield, Database, Zap } from 'lucide-react'; import { Navigation } from '@/components/Navigation'; import { Badge } from '@/components/ui/badge'; import { Card, CardContent } from '@/components/ui/card'; import { Button } from '@/components/ui/button'; import { Footer } from '@/components/Footer'; import { useNavigate } from 'react-router-dom'; interface CaseStudyComingSoonProps { projectTitle?: string; industry?: string; subtitle?: string; expectedLaunch?: string; description?: string; services?: string[]; technologies?: string[]; } export const CaseStudyComingSoon: React.FC = ({ projectTitle, industry = "Technology", subtitle, expectedLaunch = "Q2 2024", description, services = [], technologies = [] }) => { const getIndustryIcon = (industry: string) => { const icons = { "Technology": Smartphone, "E-commerce": ShoppingCart, "Education": GraduationCap, "FinTech": Building2, "Entertainment": Music, "Real Estate": Building2, "IoT": Cpu, "Healthcare": Heart, "Social Media": MessageCircle, "Government": Shield, "Automotive": Building2, "Food & Beverage": Utensils, "Agriculture": Leaf, "Enterprise Software": Database, "Travel": MapPin, "Legal": Scale, "Logistics": Truck, "Wellness": StarIcon, "Religious": Church, "HR Tech": Briefcase }; return icons[industry as keyof typeof icons] || Building2; }; const navigate = useNavigate(); const IconComponent = getIndustryIcon(industry); return (
{/* */} {/* Hero Section */}
{/* Background Pattern */}
{/* Coming Soon Badge */}
Case Study Coming Soon
{/* Project Title */}

{projectTitle}

{/* Subtitle */} {subtitle && (

{subtitle}

)} {/* Industry Badge */}
{industry}
{/* Description */} {description ? (

{description}

) : (

We're currently working on documenting this exciting project case study. Our team is gathering comprehensive insights, results, and learnings to share with you soon.

)} {/* Expected Launch */}
Expected: {expectedLaunch}
{/* What to Expect Section */}

What to Expect

This case study will provide detailed insights into our development process, challenges overcome, and results achieved.

{/* Development Process */}

Development Journey

Detailed breakdown of our technical approach, architecture decisions, and development methodology.

{/* Challenges & Solutions */}

Challenges & Solutions

Key obstacles encountered during development and innovative solutions implemented by our team.

{/* Results & Impact */}

Results & Impact

Measurable outcomes, user feedback, and business impact achieved through our solution.

{/* Project Preview Section */} {(services.length > 0 || technologies.length > 0) && (

Project Overview

{/* Services */} {services.length > 0 && (

Services Provided

{services.map((service, index) => ( {service} ))}
)} {/* Technologies */} {technologies.length > 0 && (

Technologies Used

{technologies.map((tech, index) => ( {tech} ))}
)}
)} {/* Progress Indicator */}

Documentation Progress

{/* Progress Bar */}
Research & Analysis 75%

Our team is currently gathering detailed project insights, conducting stakeholder interviews, and preparing comprehensive documentation to showcase this project's journey and impact.

{/* Subscribe for Updates */}

Get Notified When Published

Join our mailing list to be the first to know when this case study goes live.

{/* Explore Other Case Studies */}

Explore Our Published Case Studies

While you wait for this case study, discover other successful projects we've completed for our clients.

{/*
); }; export default CaseStudyComingSoon;