import React from "react"; import { motion } from "framer-motion"; import { ImageWithFallback } from "./figma/ImageWithFallback"; // import successMetricsImage from 'figma:asset/619c58bb9b76889672d43420adc0dd6ef9ef21f6.png'; const successMetricsImage = "https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=400&h=300&fit=crop&auto=format"; const AppSuccessMetrics = () => { const metrics = [ { 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", }, ]; 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 */}
{/* iPhone Mockups Display */}
{/* Performance Statistics */} {metrics.map((metric, index) => ( {/* Large Metric Number */}
{metric.value}
{/* Metric Label */}

{metric.label}

{/* Metric Description */}

{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 */}
{/* Subtle gradient orbs for depth */}
); }; export { AppSuccessMetrics };