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 {
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";
import { Helmet } from "react-helmet-async";
import { useNavigate } from "react-router-dom";
// Enhanced Hero Section
const HeroWithCTA = () => {
const navigate = useNavigate();
return (
{/* Page Title and Meta Description */}
Web & Cloud Solutions | Expert Services by WDI
{/* Canonical Link */}
{/* Open Graph Tags (for Facebook, LinkedIn) */}
{/* Twitter Card Tags */}
{/* Social Profiles (using JSON-LD Schema) */}
{/* 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 */}
navigate("/contact/schedule-a-discovery-call")}
onClick={() => navigate("/start-a-project")}
>
Schedule Cloud Consultation
navigate("/case-studies")}
>
View Web Projects
{/* Right side with stats */}
{/* Image Container - FOLLOWING ALL COMPREHENSIVE CSS REQUIREMENTS */}
{/* Hero Image with comprehensive CSS styling */}
{/* 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 (
);
})}
{/* Second and third sets for seamless loop */}
{[...technologies, ...technologies].map((tech, index) => {
const IconComponent = tech.icon;
return (
);
})}
);
};
// 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",
},
];
const navigate = useNavigate();
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 (
navigate(service.link)}
>
{service.title}
{service.description}
);
})}
);
};
// Updated CTA Section with new design
const InlineCTA = () => {
const navigate = useNavigate();
return (
{/* Ready to Launch Badge */}
{/* 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 */}
navigate("/contact/schedule-a-discovery-call")}
onClick={() => navigate("/start-a-project")}
>
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",
},
];
const navigate = useNavigate();
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 */}
{/* Skills */}
{specialist.skills.map((skill) => (
{skill}
))}
{/* CTA */}
navigate(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 (
);
}