import { motion } from "framer-motion"; import { ImageWithFallback } from "../components/figma/ImageWithFallback"; import { Footer } from "../components/Footer"; import { Navigation } from "../components/Navigation"; import { Badge } from "../components/ui/badge"; import { Card, CardContent } from "../components/ui/card"; import { ShimmerButton } from "../components/ui/shimmer-button"; // High-quality iOS development images const swiftImage = "https://images.unsplash.com/photo-1517077304055-6e89abbf09b0?w=400&h=300&fit=crop&auto=format"; const swiftuiImage = "https://images.unsplash.com/photo-1551650975-87deedd944c3?w=400&h=300&fit=crop&auto=format"; import { Apple, CheckCircle, Code, DollarSign, Globe, Layers, Layout, MessageSquare, Shield, Smartphone, TrendingUp, Zap } from "lucide-react"; // iOS App Development Hero Section const iOSHeroWithCTA = () => { return (
{/* iOS Label */} iOS App Development {/* Main Heading */}

Premium iOS App Development Services

Create stunning, high-performance iOS applications that captivate users and drive business growth with our expert development team.

{/* CTAs */}
Start iOS Project
Schedule Consultation
{/* Right side with iOS development showcase */} {/* iOS Development Showcase */}
{/* Central iPhone Mockup */}
{/* iPhone Details */}
{/* Tech Stack Icons */}
{/* iOS Features */} Swift & SwiftUI Native Performance App Store Ready
); }; // Key Benefits of iOS Development const iOSBenefits = () => { const benefits = [ { icon: Apple, title: "Premium User Experience", description: "Native iOS apps deliver the smooth, polished experience Apple users expect." }, { icon: DollarSign, title: "Higher Revenue Potential", description: "iOS users typically spend more on apps and in-app purchases." }, { icon: Shield, title: "Enhanced Security", description: "iOS provides robust security features and App Store verification." }, { icon: Globe, title: "Global Market Reach", description: "Access to millions of iOS users worldwide through the App Store." }, { icon: TrendingUp, title: "Performance Excellence", description: "Optimized for Apple's hardware delivering superior performance." } ]; return (

Why Choose iOS App Development?

{benefits.slice(0, 3).map((benefit, index) => { const IconComponent = benefit.icon; return (

{benefit.title}

{benefit.description}

); })}
{/* Second row with 2 cards centered */} {benefits.slice(3).map((benefit, index) => { const IconComponent = benefit.icon; return (

{benefit.title}

{benefit.description}

); })}
); }; // iOS Technologies & Frameworks const iOSTechnologies = () => { const technologies = [ { title: "Swift Programming", description: "Modern, safe, and fast programming language designed for iOS development.", image: swiftImage, features: ["Type Safety", "Memory Management", "Performance Optimization", "Concurrency Support"], icon: Code }, { title: "SwiftUI Framework", description: "Declarative UI framework for building beautiful, responsive user interfaces.", image: swiftuiImage, features: ["Declarative Syntax", "Live Previews", "Cross-Platform", "Animation Support"], icon: Layout } ]; return (

iOS Development Technologies

We leverage the latest iOS technologies and frameworks to build exceptional apps.

{technologies.map((tech, index) => { const IconComponent = tech.icon; return ( {/* Image Section */}
{/* Content Section */}

{tech.title}

{tech.description}

{/* Features List */}

Key Features:

{tech.features.map((feature, idx) => (
{feature}
))}
); })}
); }; // Main iOS App Development Page export const IOSAppDevelopment = () => { return (
{/* Hero Section */}
{/* */}
{/* Benefits */}
{/* */}
{/* Technologies */}
{/* */}
{/* Footer */}
); };