import React from "react"; import { motion } from "framer-motion"; 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, MapPin, Clock, Users, Mail, Code, Palette, Settings, TrendingUp, Briefcase, Building, Database } from "lucide-react"; export const Careers = () => { // Job positions data const openPositions = [ { title: "Frontend Developer", department: "Engineering", location: "Remote", type: "Full-time", description: "Build responsive web applications using React, TypeScript, and modern CSS frameworks.", icon: Code }, { title: "Backend Developer", department: "Engineering", location: "Mumbai", type: "Full-time", description: "Develop scalable APIs and server-side applications using Node.js, Python, or Java.", icon: Database }, { title: "Mobile App Developer", department: "Engineering", location: "Remote", type: "Full-time", description: "Create native iOS and Android apps or cross-platform solutions using React Native.", icon: Code }, { title: "UI/UX Designer", department: "Design", location: "Remote", type: "Full-time", description: "Design intuitive user interfaces and create engaging user experiences for digital products.", icon: Palette }, { title: "Product Manager", department: "Product", location: "Mumbai", type: "Full-time", description: "Drive product strategy, roadmap planning, and cross-functional team collaboration.", icon: Settings }, { title: "DevOps Engineer", department: "Engineering", location: "Remote", type: "Full-time", description: "Build and maintain CI/CD pipelines, cloud infrastructure, and deployment automation.", icon: Building }, { title: "Sales Executive", department: "Sales", location: "Mumbai", type: "Full-time", description: "Generate leads, build client relationships, and drive revenue growth for our services.", icon: TrendingUp }, { title: "QA Engineer", department: "Engineering", location: "Remote", type: "Full-time", description: "Ensure software quality through manual and automated testing across web and mobile platforms.", icon: Briefcase } ]; // Smooth scroll to Send CV section const scrollToSendCV = () => { const element = document.getElementById('send-cv-section'); if (element) { element.scrollIntoView({ behavior: 'smooth', block: 'start' }); } }; // Handle Send Your CV button click const handleSendCV = () => { const subject = 'Job Application'; const body = `Dear HR Team, I am interested in exploring career opportunities at WDI. Please find my resume attached. Best regards, [Your Name]`; const mailtoLink = `mailto:hr@wdipl.com?subject=${encodeURIComponent(subject)}&body=${encodeURIComponent(body)}`; window.open(mailtoLink, '_blank'); }; return (
{/* Hero Section */}
Join Our Team

Build the Future of Technology

{/* We're Hiring Section */}

We're Hiring

Discover exciting opportunities to grow your career with our talented team.

{openPositions.map((position, index) => { const IconComponent = position.icon; return (
{/* Job Info */}

{position.title}

{position.department}
{position.location}
{position.type}

{position.description}

{/* Apply Button */}
); })}
{/* Send Your CV Section */}

Want to Work With Us Anyway?

Share your CV with us. We'll reach out if something matches.

{/* HR Email Display */}

HR Email

hr@wdipl.com
{/* Send CV Button */}
{/* Company Stats */}
{[ { number: "50+", label: "Team Members", color: "from-blue-400 to-blue-600" }, { number: "15+", label: "Countries", color: "from-green-400 to-green-600" }, { number: "98%", label: "Employee Satisfaction", color: "from-purple-400 to-purple-600" }, { number: "4.9/5", label: "Company Rating", color: "from-[#E5195E] to-[#FF6B9D]" } ].map((stat, index) => (
{stat.number}
{stat.label}
))}
); };