import React from "react"; import { motion } from "framer-motion"; import { ImageWithFallback } from "./figma/ImageWithFallback"; const successMetricsImage = "https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=400&h=300&fit=crop&auto=format"; type Metric = { value: string; label: string; description: string; }; interface AppSuccessMetricsProps { metrics?: Metric[]; // optional so we can have a fallback } const defaultMetrics: Metric[] = [ { value: "75+", label: "App Developed", description: "Successful mobile applications delivered", }, { value: "25+", label: "App Deployed", description: "Live applications in production", }, { value: "3M+", label: "App downloads", description: "Total downloads across all platforms", }, ]; const AppSuccessMetrics: React.FC = ({ metrics }) => { const finalMetrics = metrics ?? defaultMetrics; return (
{/* Section Header */}

Proven Success in{" "} Mobile Innovation

Our portfolio speaks for itself — from concept to launch, we deliver exceptional mobile experiences that users love and businesses rely on.

{/* Main Visual Section */}
{/* Performance Statistics */} {finalMetrics.map((metric, index) => (
{metric.value}

{metric.label}

{metric.description}

))}
{/* Supporting Content */}

Every project we deliver combines cutting-edge technology with user-centered design, resulting in mobile applications that not only meet but exceed expectations across industries and platforms.

{/* Background Decorative Elements */}
); }; export { AppSuccessMetrics };