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"; import { ArrowRight, Monitor, Code, Smartphone, Zap, Target, Users, CheckCircle, Star, Palette, } from "lucide-react"; import { useNavigate } from "react-router-dom"; import { Helmet } from "react-helmet-async"; import { FrontendVector } from "@/components/vectors"; import { HireTalentHeroBanner } from "@/components/HireTalentHeroBanner"; export const HireFrontendDevelopers = () => { const navigate = useNavigate(); const expertise = [ { category: "JavaScript Frameworks", description: "React.js, Angular, Vue.js for dynamic and single-page applications", skills: ["React.js", "Angular", "Vue.js", "Next.js", "Svelte"], }, { category: "Core Technologies", description: "HTML5, CSS3 (Sass, Less), JavaScript (ES6+)", skills: ["HTML5", "CSS3", "JavaScript ES6+", "TypeScript", "Sass/Less"], }, { category: "Responsive Design", description: "Building interfaces that adapt flawlessly across all devices and screen sizes", skills: ["CSS Grid", "Flexbox", "Media Queries", "Mobile-First Design"], }, { category: "UI Libraries & Frameworks", description: "Bootstrap, Material-UI, Tailwind CSS", skills: [ "Bootstrap", "Material-UI", "Tailwind CSS", "Ant Design", "Chakra UI", ], }, { category: "Performance Optimization", description: "Ensuring fast loading times and smooth interactions", skills: [ "Webpack", "Vite", "Code Splitting", "Lazy Loading", "Performance Auditing", ], }, { category: "Cross-Browser Compatibility", description: "Developing solutions that work consistently across all major browsers", skills: [ "Browser Testing", "Polyfills", "Progressive Enhancement", "Feature Detection", ], }, ]; const heroBanner = [ { category: "Hire Expert Developers", title: "Hire Frontend Developers", 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.", primaryCTA: { text: "Hire Frontend Developers", href: "/start-a-project", icon: Monitor }, secondaryCTA: { text: "View Developer Profiles", href: "/hire-talent", icon: Users } }, ] const deliverables = [ { icon: Target, title: "Pixel-Perfect Implementation", description: "Translating UI/UX designs into precise code.", }, { icon: Zap, title: "Optimized Performance", description: "Writing efficient code for speed and responsiveness.", }, { icon: Smartphone, title: "Interactive & Dynamic UIs", description: "Creating engaging user experiences with animations and interactive elements.", }, { icon: Users, title: "Accessibility Standards", description: "Ensuring applications are usable for everyone.", }, { icon: Code, title: "Collaboration with Backend Teams", description: "Seamless integration with APIs and server-side logic.", }, ]; const projectTypes = [ "Rich Web Applications", "Interactive Dashboards & Admin Panels", "E-commerce Frontends", "Marketing Websites with Complex Animations", "Progressive Web Apps (PWAs)", ]; const testimonials = [ { 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.", author: "Lisa Anderson", role: "Product Manager, DesignCorp", rating: 5, }, { quote: "Our React-based dashboard is now lightning fast and incredibly user-friendly. The developer's expertise in performance optimization made all the difference.", author: "James Wilson", role: "Tech Lead, Analytics Pro", rating: 5, }, ]; return (
{/* */} {/* Page Title and Meta Description */} Hire Frontend Developers | Skilled Talent at WDI {/* Canonical Link */} {/* Open Graph Tags (for Facebook, LinkedIn) */} {/* Twitter Card Tags */} {/* Social Profiles (using JSON-LD Schema) */} {/* Hero Section */} {/* Introduction */}

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.

{/* Frontend Development Expertise */}

Our Frontend Development Expertise

Comprehensive frontend skills for modern web development

{expertise.map((area, index) => (

{area.category}

{area.description}

{area.skills.map((skill, skillIndex) => (
{skill}
))}
))}
{/* What Our Developers Bring */}

What Our Frontend Developers Bring

Exceptional frontend solutions that enhance user engagement

{deliverables.map((item, index) => (

{item.title}

{item.description}

))}
{/* Ideal Projects */}

Ideal for Projects Requiring

Frontend expertise that makes a difference

{projectTypes.map((project, index) => (
{project}
))}
{/* Testimonials */} {/*

Client Success Stories

Real results from satisfied clients

{testimonials.map((testimonial, index) => (
{[...Array(testimonial.rating)].map((_, i) => ( ))}

"{testimonial.quote}"

{testimonial.author}

{testimonial.role}

))}
*/} {/* CTA Section */}

Ready to Transform Your User Interface?

Connect with our frontend specialists and create user experiences that engage and convert.

{/*
); };