import React, { useState, useRef } from "react"; import { motion } from "framer-motion"; import { Navigation } from "../components/Navigation"; import { Footer } from "../components/Footer"; import { Button } from "../components/ui/button"; import { ShimmerButton } from "../components/ui/shimmer-button"; import { Badge } from "../components/ui/badge"; import { Card, CardContent } from "../components/ui/card"; import { Input } from "../components/ui/input"; import { Textarea } from "../components/ui/textarea"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "../components/ui/select"; import { Checkbox } from "../components/ui/checkbox"; import { RadioGroup, RadioGroupItem } from "../components/ui/radio-group"; import { Label } from "../components/ui/label"; import { GridPattern } from "../components/GridPattern"; import CustomReCaptcha, { ReCaptchaRef } from "../components/CustomReCaptcha"; import { useStoreContactUsMutation } from "@/src/services/storeContactUs"; import { useNavigate } from "react-router-dom"; import * as Yup from "yup"; import { Rocket, Users, Target, Heart, Mail, Phone, Calendar, Upload, FileText, CheckCircle, ArrowRight, Briefcase, Settings, Eye, Trophy, Star, Lightbulb, Monitor, Building, Globe, MapPin, Clock, Headphones, Shield, } from "lucide-react"; import GlobalOffices from "@/components/GlobalOffices"; import { AboutYourProject } from "@/components/AboutYourProject"; // Hero Section const HeroSection = () => { return (
Start Your Project

Turn Your Next Big Idea into Reality

Connect with Mobile App and AI Development Experts Today.

); }; // Make Your Vision Come to Life Section const VisionSection = () => { const navigate = useNavigate(); return (

Make Your Vision Come to Life with{" "} Best-in-Class App Development

Have a big idea and are looking for customised solutions? From bespoke app development to AI-enabled platforms, and scalable system upgrades, our experts can turn ideas into premium digital products. Let's connect and create scalable and thriving solutions.

); }; // We'd love to talk to you Section const ProcessStepsSection = () => { const steps = [ { step: "1", title: "Enter Details", description: "Fill in the required information correctly to initiate the process. This will ensure that your request is handled efficiently and smoothly.", icon: FileText, }, { step: "2", title: "Submit Details", description: "Carefully review your entries and submit them to ensure smooth processing. It is a simple step for confirmation of your request.", icon: CheckCircle, }, { step: "3", title: "Book Appointment", description: "Select your convenient time slot, so that planning is made easier and on-time support can be received from our consultancy expertise.", icon: Calendar, }, ]; return (

We'd love to talk to you

Need guidance or a development partner for next-generation application development? WDI will be your trusted partner for secure, scalable, cutting-edge solutions. Start here and fill out the following form to begin bringing your vision to life into something truly remarkable.

{steps.map((step, index) => { const IconComponent = step.icon; return (
{step.step}

{step.title}

{step.description}

); })}
{/* */}
); }; // Join WDI Section const JoinWDISection = () => { const navigate = useNavigate(); const benefits = [ { icon: Rocket, title: "Innovative Projects", description: "Work on cutting-edge technology projects with global impact", }, { icon: Users, title: "Collaborative Culture", description: "Be part of a supportive team that values diversity and inclusion", }, { icon: Target, title: "Growth Opportunities", description: "Continuous learning, training, and career advancement opportunities", }, { icon: Heart, title: "Work-Life Balance", description: "Flexible working arrangements and comprehensive benefits", }, ]; return (

Join the WDI Family & Shape the Future of{" "} Technology

We're always looking for passionate, talented individuals to join our growing team. If you're ready to work on innovative projects and make a real impact, we'd love to hear from you.

{benefits.map((benefit, index) => { const IconComponent = benefit.icon; return (

{benefit.title}

{benefit.description}

); })}
{/* */}

Ready to build the future with us? Let's create something amazing together.

); }; // Why Partner with WDI Section const WhyPartnerSection = () => { const features = [ { icon: Trophy, title: "Award-Winning Team", description: "Recognized expertise in mobile app development and AI solutions", }, { icon: Star, title: "5-Star Client Satisfaction", description: "Consistently rated 4.9/5 on Clutch with 47+ verified reviews", }, { icon: Lightbulb, title: "Innovation-First Approach", description: "Cutting-edge solutions using the latest technologies and methodologies", }, { icon: Monitor, title: "End-to-End Solutions", description: "From concept to deployment, we handle every aspect of your project", }, { icon: Building, title: "Enterprise-Grade Security", description: "Robust security measures and compliance with industry standards", }, { icon: Globe, title: "Global Reach", description: "Serving clients worldwide with 24/7 support and communication", }, ]; return (

Why Partner with WDI?

Choose WDI for your next project and experience the difference of working with a team that's committed to your success.

{features.map((feature, index) => { const IconComponent = feature.icon; return (

{feature.title}

{feature.description}

); })}
); }; // Contact Information Section const ContactInfoSection = () => { const navigate = useNavigate(); const contactMethods = [ { icon: Mail, title: "Email Us", description: "Get in touch via email", contact: "ideas@wdipl.com", action: "mailto:ideas@wdipl.com", }, { icon: Phone, title: "Call Us", description: "Speak with our team", contact: "+91 7700900039", action: "tel:+91 7700900039", }, { icon: MapPin, title: "Visit Us", description: "Our office locations", contact: "614, 6th floor Palm spring centre, Malad west, Mumbai Maharshatra", action: () => navigate("/company/office-locations"), }, { icon: Clock, title: "Business Hours", description: "We're available", contact: "Mon-Fri 11AM-8PM", action: () => navigate("/contact/schedule-a-discovery-call"), }, ]; return (

Get in Touch with Our Experts

Ready to discuss your project? Our team is here to help you every step of the way.

{contactMethods.map((method, index) => { const IconComponent = method.icon; return ( { if (typeof method.action === "string") { window.open(method.action, "_blank"); } else { method.action(); } }} >

{method.title}

{method.description}

{method.contact}

); })}
); }; // Main component export const StartAProject = () => { return (
{/* */} {/*
); };