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 (
Discover exciting opportunities to grow your career with our talented team.
{position.description}
Share your CV with us. We'll reach out if something matches.
{/* HR Email Display */}