Files
Wdipl-react/pages/HireMobileAppDevelopers.tsx

419 lines
15 KiB
TypeScript
Raw Permalink Normal View History

2025-07-11 16:54:37 +05:30
import React from "react";
import { Navigation } from "../components/Navigation";
import { Footer } from "../components/Footer";
import { Button } from "../components/ui/button";
import { Badge } from "../components/ui/badge";
import { Card, CardContent } from "../components/ui/card";
2026-04-07 15:12:01 +05:30
import {
ArrowRight,
Smartphone,
Apple,
Code,
Zap,
Shield,
Target,
Users,
CheckCircle,
Star,
} from "lucide-react";
import { useNavigate } from "react-router-dom";
2025-07-23 18:53:54 +05:30
import { Helmet } from "react-helmet-async";
2025-08-07 19:49:37 +05:30
import { HireTalentHeroBanner } from "@/components/HireTalentHeroBanner";
import { MobileAppVector } from "@/components/vectors";
2025-07-11 16:54:37 +05:30
export const HireMobileAppDevelopers = () => {
const navigate = useNavigate();
2025-07-11 16:54:37 +05:30
const expertise = [
{
icon: Apple,
title: "iOS Developers",
2026-04-07 15:12:01 +05:30
description:
"Proficient in Swift and Objective-C for crafting robust and elegant applications for iPhone and iPad.",
skills: ["Swift", "Objective-C", "Xcode", "Core Data", "SwiftUI"],
2025-07-11 16:54:37 +05:30
},
{
icon: Code,
title: "Android Developers",
2026-04-07 15:12:01 +05:30
description:
"Skilled in Kotlin and Java to build feature-rich and scalable apps for the vast Android ecosystem.",
skills: [
"Kotlin",
"Java",
"Android Studio",
"Room Database",
"Jetpack Compose",
],
2025-07-11 16:54:37 +05:30
},
{
icon: Smartphone,
title: "Cross-Platform Developers",
2026-04-07 15:12:01 +05:30
description:
"Experts in frameworks like React Native and Flutter for efficient development across multiple platforms with a single codebase.",
skills: ["React Native", "Flutter", "Dart", "Expo", "Xamarin"],
2025-07-11 16:54:37 +05:30
},
{
icon: Code,
title: "Hybrid App Developers",
2026-04-07 15:12:01 +05:30
description:
"Experience with technologies like Ionic and Xamarin for web-based mobile applications.",
skills: ["Ionic", "Cordova", "PhoneGap", "Progressive Web Apps"],
},
2025-07-11 16:54:37 +05:30
];
const deliverables = [
{
icon: Target,
title: "Intuitive UI/UX",
2026-04-07 15:12:01 +05:30
description: "Ensuring a seamless and engaging user experience.",
2025-07-11 16:54:37 +05:30
},
{
icon: Zap,
title: "High Performance",
2026-04-07 15:12:01 +05:30
description: "Optimized apps for speed, responsiveness, and stability.",
2025-07-11 16:54:37 +05:30
},
{
icon: Shield,
title: "Robust Security",
2026-04-07 15:12:01 +05:30
description:
"Implementing best practices for data protection and user privacy.",
2025-07-11 16:54:37 +05:30
},
{
icon: Code,
title: "API Integration",
2026-04-07 15:12:01 +05:30
description:
"Connecting with backend services and third-party APIs seamlessly.",
2025-07-11 16:54:37 +05:30
},
{
icon: Users,
title: "Scalability",
2026-04-07 15:12:01 +05:30
description:
"Building apps that can grow with your user base and feature set.",
2025-07-11 16:54:37 +05:30
},
{
icon: CheckCircle,
title: "Post-Launch Support",
2026-04-07 15:12:01 +05:30
description:
"Assistance with updates, maintenance, and performance monitoring.",
},
2025-07-11 16:54:37 +05:30
];
2025-08-07 19:49:37 +05:30
const heroBanner = [
{
category: "Hire Expert Developers",
2026-04-02 12:11:43 +05:30
title: "Hire Mobile App Developers for Your Project",
2026-04-07 15:12:01 +05:30
description:
"Get access to toptier AI mobile application developers specialized in iOS, Android, React Native, and Flutter. Build engaging, highperformance AI mobile apps that users love.",
2025-08-07 19:49:37 +05:30
primaryCTA: {
text: "Hire Mobile Developers",
href: "/start-a-project",
2026-04-07 15:12:01 +05:30
icon: Smartphone,
2025-08-07 19:49:37 +05:30
},
secondaryCTA: {
text: "View Developer Profiles",
href: "/hire-talent",
2026-04-07 15:12:01 +05:30
icon: Users,
},
2025-08-07 19:49:37 +05:30
},
2026-04-07 15:12:01 +05:30
];
2025-08-07 19:49:37 +05:30
2025-07-11 16:54:37 +05:30
const projectTypes = [
"E-commerce & Retail Apps",
"On-Demand Services & Delivery Apps",
"Social Networking Platforms",
"Enterprise & Business Productivity Tools",
"Health & Fitness Trackers",
2026-04-07 15:12:01 +05:30
"Educational Apps & E-learning Platforms",
2025-07-11 16:54:37 +05:30
];
const testimonials = [
{
2026-04-07 15:12:01 +05:30
quote:
"The mobile app developers from WDI delivered an exceptional iOS app that exceeded our expectations. Their expertise in Swift and attention to detail was outstanding.",
2025-07-11 16:54:37 +05:30
author: "Sarah Johnson",
role: "CTO, TechStart Inc.",
2026-04-07 15:12:01 +05:30
rating: 5,
2025-07-11 16:54:37 +05:30
},
{
2026-04-07 15:12:01 +05:30
quote:
"Our React Native app was completed ahead of schedule and performs flawlessly across both platforms. The team's cross-platform expertise saved us significant time and cost.",
2025-07-11 16:54:37 +05:30
author: "Michael Chen",
role: "Product Manager, InnovateNow",
2026-04-07 15:12:01 +05:30
rating: 5,
},
2025-07-11 16:54:37 +05:30
];
return (
<div className="dark min-h-screen bg-background">
{/* <Navigation /> */}
2026-03-30 19:33:06 +05:30
<Helmet>
{/* Page Title and Meta Description */}
2026-04-07 15:12:01 +05:30
<title>
Hire Mobile App Developers | Dedicated App Experts - WDIPL
</title>
2026-03-30 19:33:06 +05:30
<meta
name="description"
content="Hire mobile app developers with proven expertise in iOS, Android and cross-platform apps. Scale faster with dedicated developers and agile delivery."
/>
2025-07-23 18:53:54 +05:30
2026-03-30 19:33:06 +05:30
{/* Canonical Link */}
<link rel="canonical" href="https://www.wdipl.com/services" />
2025-07-23 18:53:54 +05:30
2026-03-30 19:33:06 +05:30
{/* Open Graph Tags (for Facebook, LinkedIn) */}
2026-04-07 15:12:01 +05:30
<meta
property="og:title"
content="Hire Mobile App Developers | Expert Talent at WDI"
/>
2026-03-30 19:33:06 +05:30
<meta
property="og:description"
content="Hire mobile app developers with proven expertise in iOS, Android and cross-platform apps. Scale faster with dedicated developers and agile delivery."
/>
<meta property="og:url" content="https://www.wdipl.com/services" />
<meta property="og:type" content="website" />
2026-04-07 15:12:01 +05:30
<meta
property="og:image"
content="https://www.wdipl.com/your-preview-image.jpg"
/>
2025-07-23 18:53:54 +05:30
2026-03-30 19:33:06 +05:30
{/* Twitter Card Tags */}
<meta name="twitter:card" content="summary_large_image" />
2026-04-07 15:12:01 +05:30
<meta
name="twitter:title"
content="Hire Mobile App Developers | Expert Talent at WDI"
/>
2026-03-30 19:33:06 +05:30
<meta
name="twitter:description"
content="Hire mobile app developers with proven expertise in iOS, Android and cross-platform apps. Scale faster with dedicated developers and agile delivery."
/>
2026-04-07 15:12:01 +05:30
<meta
name="twitter:image"
content="https://www.wdipl.com/your-preview-image.jpg"
/>
2025-07-23 18:53:54 +05:30
2026-03-30 19:33:06 +05:30
{/* Social Profiles (using JSON-LD Schema) */}
<script type="application/ld+json">
{`
2025-07-23 18:53:54 +05:30
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "WDI",
"url": "https://www.wdipl.com",
"sameAs": [
"https://www.facebook.com/wdideas",
"https://www.linkedin.com/in/website-developers-india/",
"https://www.instagram.com/wdipl/"
]
}
`}
2026-03-30 19:33:06 +05:30
</script>
</Helmet>
2025-08-07 19:49:37 +05:30
{/* Hero Section with MobileAppVector */}
<HireTalentHeroBanner
vectorComponent={MobileAppVector}
category={heroBanner[0].category}
title={heroBanner[0].title}
description={heroBanner[0].description}
primaryCTA={heroBanner[0].primaryCTA}
secondaryCTA={heroBanner[0].secondaryCTA}
/>
2025-07-11 16:54:37 +05:30
{/* Introduction */}
<section className="py-16 bg-card/50">
<div className="container mx-auto px-6 lg:px-8">
<div className="max-w-4xl mx-auto text-center">
<p className="text-lg text-muted-foreground leading-relaxed">
2026-04-07 15:12:01 +05:30
Our developers are adept at building intuitive, secure, and
scalable mobile applications that engage users and drive business
growth. From native iOS and Android apps to cross-platform
solutions, we have the expertise to bring your mobile vision to
life.
2025-07-11 16:54:37 +05:30
</p>
</div>
</div>
</section>
{/* Mobile Development Expertise */}
<section className="py-16 bg-background">
<div className="container mx-auto px-6 lg:px-8">
<div className="text-center mb-12">
<h2 className="text-3xl md:text-4xl font-bold mb-4 text-white">
Our Mobile App Development Expertise
</h2>
<p className="text-muted-foreground max-w-2xl mx-auto">
2026-04-07 15:12:01 +05:30
Comprehensive AI mobile app development skills across all major
platforms and frameworks, including native iOS and Android, React
Native, and Flutter.
2025-07-11 16:54:37 +05:30
</p>
</div>
2025-08-07 19:49:37 +05:30
2025-07-11 16:54:37 +05:30
<div className="grid md:grid-cols-2 gap-8">
{expertise.map((area, index) => (
2026-04-07 15:12:01 +05:30
<Card
key={index}
className="bg-card/50 border-white/10 hover:border-[#E5195E]/30 transition-all duration-300 group"
>
2025-07-11 16:54:37 +05:30
<CardContent className="p-8">
<area.icon className="w-12 h-12 text-[#E5195E] mb-6 group-hover:scale-110 transition-transform duration-300" />
2025-08-07 19:49:37 +05:30
2025-07-11 16:54:37 +05:30
<h3 className="text-xl font-bold text-white mb-4 group-hover:text-[#E5195E] transition-colors duration-300">
{area.title}
</h3>
2025-08-07 19:49:37 +05:30
2025-07-11 16:54:37 +05:30
<p className="text-muted-foreground mb-6 leading-relaxed">
{area.description}
</p>
2025-08-07 19:49:37 +05:30
2025-07-11 16:54:37 +05:30
<div className="flex flex-wrap gap-2">
{area.skills.map((skill, skillIndex) => (
2026-04-07 15:12:01 +05:30
<Badge
key={skillIndex}
variant="outline"
className="border-white/20 text-white text-xs"
>
2025-07-11 16:54:37 +05:30
{skill}
</Badge>
))}
</div>
</CardContent>
</Card>
))}
</div>
</div>
</section>
{/* What Our Developers Deliver */}
<section className="py-16 bg-card/50">
<div className="container mx-auto px-6 lg:px-8">
<div className="text-center mb-12">
<h2 className="text-3xl md:text-4xl font-bold mb-4 text-white">
What Our Mobile Developers Deliver
</h2>
<p className="text-muted-foreground max-w-2xl mx-auto">
2026-04-07 15:12:01 +05:30
Comprehensive AI mobile app development solutions that exceed
expectations with highperformance, usercentric iOS and
crossplatform applications.
2025-07-11 16:54:37 +05:30
</p>
</div>
2025-08-07 19:49:37 +05:30
2025-07-11 16:54:37 +05:30
<div className="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
{deliverables.map((item, index) => (
2026-04-07 15:12:01 +05:30
<Card
key={index}
className="bg-background/50 border-white/10 hover:border-[#E5195E]/30 transition-all duration-300 group"
>
2025-07-11 16:54:37 +05:30
<CardContent className="p-6 text-center">
<item.icon className="w-8 h-8 text-[#E5195E] mb-4 mx-auto group-hover:scale-110 transition-transform duration-300" />
<h3 className="text-lg font-semibold text-white mb-3 group-hover:text-[#E5195E] transition-colors duration-300">
{item.title}
</h3>
<p className="text-muted-foreground text-sm leading-relaxed">
{item.description}
</p>
</CardContent>
</Card>
))}
</div>
</div>
</section>
{/* Ideal Projects */}
<section className="py-16 bg-background">
<div className="container mx-auto px-6 lg:px-8">
<div className="text-center mb-12">
<h2 className="text-3xl md:text-4xl font-bold mb-4 text-white">
Ideal for Projects Like
</h2>
<p className="text-muted-foreground max-w-2xl mx-auto">
2026-04-07 15:12:01 +05:30
Our AI mobile application developers excel across various industry
verticals, delivering AI mobile app development solutions for iOS,
Android, React Native, and Flutter.
2025-07-11 16:54:37 +05:30
</p>
</div>
2025-08-07 19:49:37 +05:30
2025-07-11 16:54:37 +05:30
<div className="grid md:grid-cols-2 lg:grid-cols-3 gap-6 max-w-4xl mx-auto">
{projectTypes.map((project, index) => (
2026-04-07 15:12:01 +05:30
<div
key={index}
className="flex items-center gap-3 p-4 rounded-lg bg-card/50 border border-white/10 hover:border-[#E5195E]/30 transition-all duration-300"
>
2025-07-11 16:54:37 +05:30
<CheckCircle className="w-5 h-5 text-[#E5195E] flex-shrink-0" />
<span className="text-white">{project}</span>
</div>
))}
</div>
</div>
</section>
{/* Testimonials */}
{/* <section className="py-16 bg-card/50">
2025-07-11 16:54:37 +05:30
<div className="container mx-auto px-6 lg:px-8">
<div className="text-center mb-12">
<h2 className="text-3xl md:text-4xl font-bold mb-4 text-white">
What Our Clients Say
</h2>
<p className="text-muted-foreground max-w-2xl mx-auto">
Success stories from satisfied clients
</p>
</div>
<div className="grid md:grid-cols-2 gap-8 max-w-4xl mx-auto">
{testimonials.map((testimonial, index) => (
<Card key={index} className="bg-background/50 border-white/10">
<CardContent className="p-8">
<div className="flex gap-1 mb-4">
{[...Array(testimonial.rating)].map((_, i) => (
<Star key={i} className="w-5 h-5 text-yellow-400 fill-current" />
))}
</div>
<p className="text-muted-foreground mb-6 leading-relaxed italic">
"{testimonial.quote}"
</p>
<div className="border-t border-white/10 pt-6">
<h4 className="text-white font-semibold">{testimonial.author}</h4>
<p className="text-[#E5195E] text-sm">{testimonial.role}</p>
</div>
</CardContent>
</Card>
))}
</div>
</div>
</section> */}
2025-07-11 16:54:37 +05:30
{/* CTA Section */}
<section className="py-16 bg-background">
<div className="container mx-auto px-6 lg:px-8">
<div className="max-w-4xl mx-auto text-center">
<h2 className="text-3xl md:text-4xl font-bold mb-6 text-white">
Ready to Build Your Mobile App?
</h2>
<p className="text-lg text-muted-foreground mb-8 max-w-2xl mx-auto">
2026-04-07 15:12:01 +05:30
Connect with our expert AI mobile application developers and turn
your vision into a powerful AI mobile app experience.
2025-07-11 16:54:37 +05:30
</p>
<div className="flex flex-col sm:flex-row gap-4 justify-center">
2026-04-07 15:12:01 +05:30
<Button
size="lg"
className="bg-[#E5195E] hover:bg-[#E5195E]/90 text-white"
onClick={() => navigate("/start-a-project")}
2025-07-21 15:57:34 +05:30
>
2025-07-11 16:54:37 +05:30
Get Started Today
<ArrowRight className="ml-2 w-4 h-4" />
</Button>
2026-04-07 15:12:01 +05:30
<Button
size="lg"
variant="outline"
className="border-white/20 text-white hover:bg-white/10"
>
2025-07-11 16:54:37 +05:30
Schedule a Consultation
</Button>
</div>
</div>
</div>
</section>
{/* <Footer /> */}
2025-07-11 16:54:37 +05:30
</div>
);
2026-04-07 15:12:01 +05:30
};