{/* 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: "Secure, Compliance-Ready Apps",
icon: ShieldCheck
},
{
id: "devices",
title: "Seamless Experience Across Devices",
icon: Settings
}
];
return (
{/* Main Heading */}
What Helps Founders and CTOs Trust WDI
{/* Subtext */}
We do more than just offer mobile application development services in India; we are your most trusted 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 navigate = useNavigate();
const services = [
{
title: "iOS App Development",
icon: Smartphone,
description: "High-performing native iOS applications created with Swift and optimized for the App Store.",
link: "/services/ios-app-development"
},
{
title: "Android App Development",
icon: Smartphone,
description:
<>
Innovative{" "}
Android apps
{" "} built with the help of Kotlin and optimized through Google Play.>,
// "High-performance Android apps using Kotlin with Google Play optimization.",
link: "/services/android-app-development"
},
{
title: "Cross-Platform Development",
icon: Layers,
description: "Efficient cross-platform solutions using React Native and Flutter.",
link: "/services/cross-platform-app-development"
},
{
title: "Wearable App Development",
icon: Watch,
description: "Smart watch and wearable device applications for health and fitness.",
link: "/services/wearable-device-development"
},
{
title: "Progressive Web Apps",
icon: Globe,
description: "Web applications that work like native mobile apps across all devices.",
link: "/services/pwa-development"
},
{
title: "Enterprise Mobile Solutions",
icon: Building,
description: "Secure, scalable mobile solutions for enterprise business needs.",
link: "/services/enterprise-software-solutions"
}
];
return (
Mobile App Development Services in India
Transform the application with a comprehensive offshore mobile app development in India. Reshape your ideas into efficient, user-friendly apps that run smoothly across all platforms.
Get access to top-tier AI app development company experts who can bring your vision to life with AI-powered features and proven expertise.
{developers.map((developer, index) => {
const IconComponent = developer.icon;
return (
{/* Header with icon and title */}
Mobile Development
{developer.title}
{/* Skills section */}
{developer.skills.map((skill) => (
{skill}
))}
{/* CTA Buttons - Updated with ShimmerButton */}
navigate(developer.link)}
>
Hire Now
);
})}
);
};
// FAQ data for Mobile App Development
const mobileAppFAQs = [
{
question: "Do you develop both iOS and Android apps?",
answer: "Yes, our AI mobile application developers create native iOS apps using Swift (including AI iOS development) and Android apps using Kotlin. We also offer cross-platform AI mobile app development using React Native and Flutter for cost-effective multi-platform deployment."
},
{
question: "What is the typical timeline for mobile app development?",
answer: "Timeline varies based on complexity. Simple AI mobile apps take 8-12 weeks, while complex enterprise apps with AI-powered features can take 16-24 weeks. We provide detailed project timelines after requirements analysis."
},
{
question: "How much does mobile app development cost?",
answer: "Costs depend on features, platforms, and complexity for AI app development company services. We offer competitive pricing with transparent estimates. Contact us for a detailed quote based on your specific requirements."
},
{
question: "Do you help with App Store submissions?",
answer: "Yes, we handle the complete App Store submission process for both Apple App Store and Google Play Store, including AI mobile app optimization, compliance, and approval assistance."
},
{
question: "Can you integrate third-party services and APIs?",
answer: "Absolutely! Our AI mobile application developers integrate various third-party services including payment gateways, social media, analytics, push notifications, maps, and custom APIs to enhance AI-powered features."
},
{
question: "Do you provide app maintenance and updates?",
answer: "Yes, our AI app development company offers comprehensive maintenance services including bug fixes, OS updates, security patches, AI-powered feature enhancements, and performance optimization to keep your app current."
},
{
question: "What about app security and data protection?",
answer: "We implement robust security measures including data encryption, secure API communication, user authentication, and compliance with privacy regulations like GDPR and CCPA for all AI mobile apps."
},
{
question: "Can you develop offline-capable mobile apps?",
answer: "Yes, we can develop offline-capable AI mobile apps using local storage, caching strategies, and data synchronization to ensure your app works seamlessly even without internet connectivity."
}
];
// Main Mobile App Development Page Component
export const MobileAppDevelopmentIndia = () => {
// Set document title for SEO
React.useEffect(() => {
document.title = "Mobile App Development Services | WDI - iOS & Android App Development";
// Update meta description for SEO
const metaDescription = document.querySelector('meta[name="description"]');
if (metaDescription) {
metaDescription.setAttribute('content', 'Professional mobile app development services at WDI. Build secure, scalable iOS and Android apps with expert developers. Cross-platform solutions available.');
}
}, []);
return (
{/* */}
{/* Hero Section */}
{/* Industries Scroller */}
{/* Why Choose WDI */}
{/* Service Categories */}
{/* Process Steps */}
{/* Hire Developers */}
{/* Final CTA */}
{/* FAQ Section */}
{/* */}