import React from "react"; import { motion } from "framer-motion"; import { Navigation } from "../components/Navigation"; import { Footer } from "../components/Footer"; import { ProcessSection } from "../components/ProcessSection"; import { FAQSection } from "../components/FAQSection"; import { AnimatedGradientText } from "../components/AnimatedGradientText"; 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 { GridPattern } from "../components/GridPattern"; import { navigateTo } from "../App"; import { Globe, Cloud, Server, Database, Shield, Zap, Users, Star, ArrowRight, ChevronRight, Clock, TrendingUp, Code, Layers, Target, Layout, Rocket, Monitor, Lock, RefreshCcw, ShieldCheck, MessageSquare, Heart, CheckCircle, Lightbulb, Coffee, Download, Calendar, Camera, Music, Gamepad2, CreditCard, Bell, Mail, Search, Home, MapPin, Github, Slack, Figma, Chrome, Zap as ZapIcon, Video, MessageCircle, Brain, Cog, Settings, Sparkles, Handshake, Eye, Award, UserPlus, Cpu, ShoppingCart, } from "lucide-react"; import heroMockupImage from "../src/images/webandcloud-hero.webp"; // Enhanced Hero Section const HeroWithCTA = () => { return (
{/* Web & Cloud Label */} Web & Cloud Solutions {/* Main Heading */}

Scalable Web & Cloud Solutions for Modern Business

Build high-performance web applications and robust cloud infrastructure that scales with your business growth.

{/* CTAs */} navigateTo("/contact/schedule-a-discovery-call")} >
Schedule Cloud Consultation
{/* Right side with stats */} {/* Image Container - FOLLOWING ALL COMPREHENSIVE CSS REQUIREMENTS */}
{/* Hero Image with comprehensive CSS styling */} Mobile App Development Services - Fashion, Social, and Fitness Apps {/* Alternative background method for enhanced browser support */}
); }; // Enhanced Horizontal Tag Scroller with Technologies const HorizontalTagScroller = () => { const technologies = [ { name: "React & Next.js", icon: Code, color: "text-blue-400" }, { name: "AWS & Azure", icon: Cloud, color: "text-green-400" }, { name: "Node.js & Python", icon: Server, color: "text-purple-400" }, { name: "Docker & Kubernetes", icon: Layers, color: "text-cyan-400" }, { name: "MongoDB & PostgreSQL", icon: Database, color: "text-orange-400" }, { name: "GraphQL & REST APIs", icon: Zap, color: "text-yellow-400" }, ]; return (

Cutting-Edge Technologies We Master

Modern web and cloud technologies that power enterprise-grade solutions.

{/* First set */} {technologies.map((tech, index) => { const IconComponent = tech.icon; return (
{tech.name}
); })} {/* Second and third sets for seamless loop */} {[...technologies, ...technologies].map((tech, index) => { const IconComponent = tech.icon; return (
{tech.name}
); })}
); }; // Why Choose WDI Section const SideBySideContentWithIcons = () => { const advantages = [ { id: "scalable", title: "Scalable Architecture", icon: TrendingUp, }, { id: "security", title: "Enterprise Security", icon: Shield, }, { id: "performance", title: "High Performance", icon: Zap, }, { id: "monitoring", title: "24/7 Monitoring", icon: Eye, }, { id: "devops", title: "DevOps Excellence", icon: Settings, }, ]; return (

Why Choose WDI for Web & Cloud

Enterprise-grade solutions with proven reliability.

{advantages.map((advantage, index) => { const IconComponent = advantage.icon; return (

{advantage.title}

); })}
); }; // Service Categories Grid const TabbedServiceDisplay = () => { const services = [ { title: "Custom Web Application Development", icon: Globe, description: "Build scalable, secure web applications with modern frameworks.", link: "/services/custom-web-app-development", }, { title: "SaaS Product Engineering", icon: Cloud, description: "End-to-end SaaS development with multi-tenant architecture.", link: "/services/saas-product-engineering", }, { title: "E-commerce Platforms", icon: ShoppingCart, description: "High-converting online stores with seamless payment integration.", link: "/services/ecommerce-platforms", }, { title: "Admin Panels & Dashboards", icon: Monitor, description: "Intuitive admin interfaces with real-time analytics.", link: "/services/admin-panels-dashboards", }, { title: "API & Backend Development", icon: Server, description: "Robust APIs and scalable backend infrastructure.", link: "/services/api-backend-development", }, { title: "System Architecture & DevOps", icon: Layers, description: "Cloud-native architecture with automated deployment.", link: "/services/system-architecture-devops", }, ]; return (

Web & Cloud Service Areas

Comprehensive web development and cloud solutions designed for scalability and performance.

{services.map((service, index) => { const IconComponent = service.icon; return ( navigateTo(service.link)} >

{service.title}

{service.description}

); })}
); }; // Updated CTA Section with new design const InlineCTA = () => { return (
{/* Ready to Launch Badge */}
Ready to Launch?
{/* Main Heading */}

Build Scalable Web Solutions with{" "} Cloud-First Architecture

{/* Subtitle */}

Deploy robust, secure, and high-performance applications that scale with your business growth.

{/* CTA Button */}
navigateTo("/contact/schedule-a-discovery-call")} >
Start Your Cloud Project
{/* Small benefit text */}

Free architecture review • Scalability assessment • Performance optimization

); }; // Cloud Specialists Section const HireDevelopersSection = () => { const specialists = [ { title: "Full Stack Developers", icon: Code, skills: ["React", "Node.js", "Python", "TypeScript"], iconBg: "bg-blue-500", iconColor: "text-white", link: "/hire-talent/full-stack-developers", }, { title: "Cloud Architects", icon: Cloud, skills: ["AWS", "Azure", "GCP", "Kubernetes"], iconBg: "bg-green-500", iconColor: "text-white", link: "/hire-talent/full-stack-developers", }, { title: "DevOps Engineers", icon: Settings, skills: ["Docker", "Jenkins", "Terraform", "CI/CD"], iconBg: "bg-purple-500", iconColor: "text-white", link: "/hire-talent/full-stack-developers", }, { title: "Backend Developers", icon: Server, skills: ["API Design", "Microservices", "Databases"], iconBg: "bg-orange-500", iconColor: "text-white", link: "/hire-talent/backend-developers", }, ]; return (

Hire Our Cloud Specialists

Get access to expert developers who specialize in modern web and cloud technologies.

{specialists.map((specialist, index) => { const IconComponent = specialist.icon; return ( {/* Header */}
Cloud Development

{specialist.title}

{/* Skills */}
{specialist.skills.map((skill) => ( {skill} ))}
{/* CTA */}
navigateTo(specialist.link)} >
Hire Now
); })}
); }; // FAQ data for Web & Cloud Services const webCloudFAQs = [ { question: "What web technologies do you specialize in?", answer: "We specialize in modern web technologies including React, Next.js, Node.js, Python, TypeScript, and various cloud platforms like AWS, Azure, and Google Cloud. Our team stays current with the latest frameworks and best practices.", }, { question: "How do you ensure web application security?", answer: "We implement security best practices including secure coding standards, regular security audits, SSL certificates, data encryption, authentication systems, and compliance with industry standards like GDPR and HIPAA.", }, { question: "Can you migrate our existing application to the cloud?", answer: "Yes, we provide comprehensive cloud migration services. We assess your current infrastructure, create a migration strategy, and execute the transition while minimizing downtime and ensuring data integrity.", }, { question: "What is your approach to scalable architecture?", answer: "We design applications with scalability in mind from the start, using microservices architecture, containerization, load balancing, and auto-scaling features. This ensures your application can handle growth efficiently.", }, { question: "Do you provide ongoing maintenance and support?", answer: "Yes, we offer comprehensive maintenance packages including regular updates, security patches, performance monitoring, backup management, and 24/7 technical support to keep your applications running smoothly.", }, ]; export function WebCloudServices() { return (
); }