{/* First set of industries */}
{industries.map((industry, index) => {
const IconComponent = industry.icon;
return (
{industry.name}
);
})}
{/* Second set for seamless loop */}
{industries.map((industry, index) => {
const IconComponent = industry.icon;
return (
{industry.name}
);
})}
{/* Third set for extra smoothness */}
{industries.map((industry, index) => {
const IconComponent = industry.icon;
return (
{industry.name}
);
})}
);
};
// Updated Title-Only Layout - No Body Text
const SideBySideContentWithIcons = () => {
const trustFactors = [
{
id: "engineering",
title: "24+ Years in App Engineering",
icon: Award
},
{
id: "ownership",
title: "100% Ownership, No Lock-ins",
icon: Shield
},
{
id: "agile",
title: "Agile Sprints with Rapid Iteration",
icon: Zap
},
{
id: "security",
title: "Enterprise Security & Compliance-Ready",
icon: ShieldCheck
},
{
id: "devices",
title: "Deep Experience Across Devices",
icon: Settings
}
];
return (
{/* Main Heading */}
Why Founders and CTOs Trust WDI
{/* Subtext */}
Not just a dev agency. A product partner.
{/* Uniform Grid - Title Only Cards */}
{trustFactors.map((factor, index) => {
const IconComponent = factor.icon;
return (
{/* Icon - Clean without background */}
{/* Title */}
{factor.title}
);
})}
);
};
// Enhanced Mobile Expertise Grid
const TabbedServiceDisplay = () => {
const services = [
{
title: "iOS App Development",
icon: Smartphone,
description: "Transforming Concepts Into Captivating Mobile Experiences With Our Expert App Developments Service"
},
{
title: "Android App Development",
icon: Smartphone,
description: "Transforming Concepts Into Captivating Mobile Experiences With Our Expert App Developments Service"
},
{
title: "Wearable App Development",
icon: Watch,
description: "Transforming Concepts Into Captivating Mobile Experiences With Our Expert App Developments Service"
},
{
title: "Tablet",
icon: Tablet,
description: "Transforming Concepts Into Captivating Mobile Experiences With Our Expert App Developments Service"
},
{
title: "TV",
icon: Tv,
description: "Transforming Concepts Into Captivating Mobile Experiences With Our Expert App Developments Service"
},
{
title: "IoT",
icon: Database,
description: "Transforming Concepts Into Captivating Mobile Experiences With Our Expert App Developments Service"
}
];
return (
Innovating Mobility, Empowering Connectivity
Where creativity meets technology! We are a leading app development company committed to transforming your ideas into powerful, user-friendly, and cutting-edge mobile applications.
);
};
// Enhanced FAQ Accordion
const AccordionFAQs = () => {
const items = [
{
question: "Do you help with app store publishing?",
answer: "Yes. We help you publish, optimize, and comply with Apple & Google guidelines."
},
{
question: "Can you build MVPs quickly?",
answer: "Absolutely. Most MVPs are shipped in 4–6 weeks using cross-platform stacks."
},
{
question: "How do you handle security?",
answer: "From secure APIs to encrypted storage, our apps are built with enterprise-grade security in mind."
}
];
return (
);
};
// Updated Large Call to Action with ShimmerButton
const LargeCallToAction = () => {
return (
{/* Badge with black background and gradient border */}
Ready to Launch Your App?
{/* Main Heading */}
Build Your Next Mobile App with{" "}
WDI
{/* Subtitle */}
Join the companies who trust us to bring their app ideas to life with cutting-edge technology and expert craftsmanship.
{/* CTA Section - Updated with ShimmerButton */}
{/* Main CTA Button with ShimmerButton */}
navigateTo('/contact')}>
Get Started
{/* Secondary CTA */}
Free consultation • No commitment • Quick turnaround
{/* Background Decorative Elements */}
{/* Subtle gradient orbs */}
);
};
// Main Mobile App Development Page
// FAQ data for Mobile App Development
const mobileAppFAQs = [
{
question: "What platforms do you develop mobile apps for?",
answer: "We develop mobile apps for iOS, Android, and cross-platform solutions using technologies like React Native and Flutter. Our team has expertise in native development as well as hybrid approaches to ensure optimal performance and user experience."
},
{
question: "How long does it take to develop a mobile app?",
answer: "The development timeline varies based on app complexity, features, and platform requirements. Simple apps typically take 8-12 weeks, while complex enterprise applications can take 4-6 months. We provide detailed project timelines during the planning phase."
},
{
question: "Do you provide app store submission and approval support?",
answer: "Yes, we handle the complete app store submission process for both Apple App Store and Google Play Store. Our team ensures your app meets all guidelines and requirements, and we provide ongoing support for app updates and maintenance."
},
{
question: "Can you integrate AI and machine learning features into mobile apps?",
answer: "Absolutely! We specialize in integrating AI and ML capabilities including chatbots, recommendation engines, image recognition, natural language processing, and predictive analytics to enhance user engagement and app functionality."
},
{
question: "What is your approach to mobile app security?",
answer: "We implement comprehensive security measures including data encryption, secure API connections, authentication systems, and compliance with industry standards like GDPR and HIPAA. Security is built into every layer of our development process."
}
];
export function MobileAppDevelopment() {
return (