Files
Wdipl-react/pages/HireFrontendDevelopers.tsx

428 lines
15 KiB
TypeScript
Raw 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";
2025-07-21 15:57:34 +05:30
import {
ArrowRight,
Monitor,
Code,
Smartphone,
Zap,
Target,
Users,
CheckCircle,
Star,
Palette,
} 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 { FrontendVector } from "@/components/vectors";
import { HireTalentHeroBanner } from "@/components/HireTalentHeroBanner";
2025-07-11 16:54:37 +05:30
export const HireFrontendDevelopers = () => {
const navigate = useNavigate();
2025-07-11 16:54:37 +05:30
const expertise = [
{
category: "JavaScript Frameworks",
2025-07-21 15:57:34 +05:30
description:
"React.js, Angular, Vue.js for dynamic and single-page applications",
skills: ["React.js", "Angular", "Vue.js", "Next.js", "Svelte"],
2025-07-11 16:54:37 +05:30
},
{
category: "Core Technologies",
description: "HTML5, CSS3 (Sass, Less), JavaScript (ES6+)",
2025-07-21 15:57:34 +05:30
skills: ["HTML5", "CSS3", "JavaScript ES6+", "TypeScript", "Sass/Less"],
2025-07-11 16:54:37 +05:30
},
{
category: "Responsive Design",
2025-07-21 15:57:34 +05:30
description:
"Building interfaces that adapt flawlessly across all devices and screen sizes",
skills: ["CSS Grid", "Flexbox", "Media Queries", "Mobile-First Design"],
2025-07-11 16:54:37 +05:30
},
{
category: "UI Libraries & Frameworks",
description: "Bootstrap, Material-UI, Tailwind CSS",
2025-07-21 15:57:34 +05:30
skills: [
"Bootstrap",
"Material-UI",
"Tailwind CSS",
"Ant Design",
"Chakra UI",
],
2025-07-11 16:54:37 +05:30
},
{
category: "Performance Optimization",
description: "Ensuring fast loading times and smooth interactions",
2025-07-21 15:57:34 +05:30
skills: [
"Webpack",
"Vite",
"Code Splitting",
"Lazy Loading",
"Performance Auditing",
],
2025-07-11 16:54:37 +05:30
},
{
category: "Cross-Browser Compatibility",
2025-07-21 15:57:34 +05:30
description:
"Developing solutions that work consistently across all major browsers",
skills: [
"Browser Testing",
"Polyfills",
"Progressive Enhancement",
"Feature Detection",
],
},
2025-07-11 16:54:37 +05:30
];
2025-08-07 19:49:37 +05:30
const heroBanner = [
{
category: "Hire Expert Developers",
title: "Hire Frontend Developers",
2026-04-07 15:12:01 +05:30
description:
"Get access to expert frontend developers skilled in React, Vue, Angular, and modern web technologies. Create stunning, responsive user interfaces that deliver exceptional user experiences.",
2025-08-07 19:49:37 +05:30
primaryCTA: {
text: "Hire Frontend Developers",
href: "/start-a-project",
2026-04-07 15:12:01 +05:30
icon: Monitor,
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-07-11 16:54:37 +05:30
const deliverables = [
{
icon: Target,
title: "Pixel-Perfect Implementation",
2025-07-21 15:57:34 +05:30
description: "Translating UI/UX designs into precise code.",
2025-07-11 16:54:37 +05:30
},
{
icon: Zap,
title: "Optimized Performance",
2025-07-21 15:57:34 +05:30
description: "Writing efficient code for speed and responsiveness.",
2025-07-11 16:54:37 +05:30
},
{
icon: Smartphone,
title: "Interactive & Dynamic UIs",
2025-07-21 15:57:34 +05:30
description:
"Creating engaging user experiences with animations and interactive elements.",
2025-07-11 16:54:37 +05:30
},
{
icon: Users,
title: "Accessibility Standards",
2025-07-21 15:57:34 +05:30
description: "Ensuring applications are usable for everyone.",
2025-07-11 16:54:37 +05:30
},
{
icon: Code,
title: "Collaboration with Backend Teams",
2025-07-21 15:57:34 +05:30
description: "Seamless integration with APIs and server-side logic.",
},
2025-07-11 16:54:37 +05:30
];
const projectTypes = [
"Rich Web Applications",
"Interactive Dashboards & Admin Panels",
"E-commerce Frontends",
"Marketing Websites with Complex Animations",
2025-07-21 15:57:34 +05:30
"Progressive Web Apps (PWAs)",
2025-07-11 16:54:37 +05:30
];
const testimonials = [
{
2025-07-21 15:57:34 +05:30
quote:
"The frontend developer from WDI transformed our outdated interface into a modern, responsive design that our users love. The attention to detail was exceptional.",
2025-07-11 16:54:37 +05:30
author: "Lisa Anderson",
role: "Product Manager, DesignCorp",
2025-07-21 15:57:34 +05:30
rating: 5,
2025-07-11 16:54:37 +05:30
},
{
2025-07-21 15:57:34 +05:30
quote:
"Our React-based dashboard is now lightning fast and incredibly user-friendly. The developer's expertise in performance optimization made all the difference.",
2025-07-11 16:54:37 +05:30
author: "James Wilson",
role: "Tech Lead, Analytics Pro",
2025-07-21 15:57:34 +05:30
rating: 5,
},
2025-07-11 16:54:37 +05:30
];
return (
<div className="dark min-h-screen bg-background">
{/* <Navigation /> */}
2025-07-21 15:57:34 +05:30
2025-08-07 19:49:37 +05:30
<Helmet>
2025-07-23 18:53:54 +05:30
{/* Page Title and Meta Description */}
<title>Hire Frontend Developers | Skilled Talent at WDI</title>
<meta
name="description"
content="Hire frontend developers from WDI to build high-quality, responsive, and scalable web applications tailored to your business needs with expert skills"
/>
{/* Canonical Link */}
2026-04-07 15:12:01 +05:30
<link
rel="canonical"
href="https://www.wdipl.com/hire-talent/frontend-developers"
/>
2025-07-23 18:53:54 +05:30
{/* Open Graph Tags (for Facebook, LinkedIn) */}
2026-04-07 15:12:01 +05:30
<meta
property="og:title"
content="Hire Frontend Developers | Skilled Talent at WDI"
/>
2025-07-23 18:53:54 +05:30
<meta
property="og:description"
content="Hire frontend developers from WDI to build high-quality, responsive, and scalable web applications tailored to your business needs with expert skills"
/>
<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
{/* 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 Frontend Developers | Skilled Talent at WDI"
/>
2025-07-23 18:53:54 +05:30
<meta
name="twitter:description"
content="Hire frontend developers from WDI to build high-quality, responsive, and scalable web applications tailored to your business needs with expert skills"
/>
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
{/* Social Profiles (using JSON-LD Schema) */}
<script type="application/ld+json">
{`
{
"@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/"
]
}
`}
</script>
</Helmet>
2025-07-21 15:57:34 +05:30
2025-08-07 19:49:37 +05:30
{/* Hero Section */}
<HireTalentHeroBanner
vectorComponent={FrontendVector}
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">
2025-07-21 15:57:34 +05:30
Our experts ensure your users enjoy seamless navigation and a
visually compelling journey. From responsive layouts to complex
interactions, we bring your frontend vision to life with precision
and creativity.
2025-07-11 16:54:37 +05:30
</p>
</div>
</div>
</section>
{/* Frontend 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 Frontend Development Expertise
</h2>
<p className="text-muted-foreground max-w-2xl mx-auto">
2026-04-07 15:12:01 +05:30
Comprehensive frontend skills for modern web development,
including React, Vue, Angular, and AIpowered design across
responsive, highperformance interfaces.
2025-07-11 16:54:37 +05:30
</p>
</div>
2025-07-21 15:57:34 +05:30
2025-07-11 16:54:37 +05:30
<div className="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
{expertise.map((area, index) => (
2025-07-21 15:57:34 +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-6">
<h3 className="text-lg font-semibold text-white mb-3 group-hover:text-[#E5195E] transition-colors duration-300">
{area.category}
</h3>
2025-07-21 15:57:34 +05:30
2025-07-11 16:54:37 +05:30
<p className="text-muted-foreground text-sm mb-4 leading-relaxed">
{area.description}
</p>
2025-07-21 15:57:34 +05:30
2025-07-11 16:54:37 +05:30
<div className="space-y-1">
{area.skills.map((skill, skillIndex) => (
<div key={skillIndex} className="flex items-center gap-2">
<div className="w-1.5 h-1.5 rounded-full bg-[#E5195E]" />
2025-07-21 15:57:34 +05:30
<span className="text-muted-foreground text-xs">
{skill}
</span>
2025-07-11 16:54:37 +05:30
</div>
))}
</div>
</CardContent>
</Card>
))}
</div>
</div>
</section>
{/* What Our Developers Bring */}
<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 Frontend Developers Bring
</h2>
<p className="text-muted-foreground max-w-2xl mx-auto">
2026-04-07 15:12:01 +05:30
Exceptional frontend solutions that enhance user engagement and
deliver AIpowered, responsive web and mobile experiences.
2025-07-11 16:54:37 +05:30
</p>
</div>
2025-07-21 15:57:34 +05:30
2025-07-11 16:54:37 +05:30
<div className="grid md:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto">
{deliverables.map((item, index) => (
2025-07-21 15:57:34 +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 Requiring
</h2>
<p className="text-muted-foreground max-w-2xl mx-auto">
2026-04-07 15:12:01 +05:30
Frontend expertise that makes a difference with AIpowered design
and highperformance web and mobile interfaces.
2025-07-11 16:54:37 +05:30
</p>
</div>
2025-07-21 15:57:34 +05:30
2025-07-11 16:54:37 +05:30
<div className="grid md:grid-cols-2 gap-6 max-w-3xl mx-auto">
{projectTypes.map((project, index) => (
2025-07-21 15:57:34 +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 */}
2025-07-21 20:16:17 +05:30
{/* <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">
Client Success Stories
</h2>
<p className="text-muted-foreground max-w-2xl mx-auto">
Real results from satisfied clients
</p>
</div>
2025-07-21 15:57:34 +05:30
2025-07-11 16:54:37 +05:30
<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) => (
2025-07-21 15:57:34 +05:30
<Star
key={i}
className="w-5 h-5 text-yellow-400 fill-current"
/>
2025-07-11 16:54:37 +05:30
))}
</div>
2025-07-21 15:57:34 +05:30
2025-07-11 16:54:37 +05:30
<p className="text-muted-foreground mb-6 leading-relaxed italic">
"{testimonial.quote}"
</p>
2025-07-21 15:57:34 +05:30
2025-07-11 16:54:37 +05:30
<div className="border-t border-white/10 pt-6">
2025-07-21 15:57:34 +05:30
<h4 className="text-white font-semibold">
{testimonial.author}
</h4>
2025-07-11 16:54:37 +05:30
<p className="text-[#E5195E] text-sm">{testimonial.role}</p>
</div>
</CardContent>
</Card>
))}
</div>
</div>
2025-07-21 20:16:17 +05:30
</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 Transform Your User Interface?
</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 frontend specialists and create AIpowered,
engaging user experiences that convert.
2025-07-11 16:54:37 +05:30
</p>
<div className="flex flex-col sm:flex-row gap-4 justify-center">
2025-07-21 15:57:34 +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>
2025-07-21 15:57:34 +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
View Portfolio
</Button>
</div>
</div>
</div>
</section>
{/* <Footer /> */}
2025-07-11 16:54:37 +05:30
</div>
);
2025-07-21 15:57:34 +05:30
};