import { useState } from "react"; import { ShoppingCart, Zap, CreditCard, Package, TrendingUp, Smartphone, Search, Shield, ArrowRight, Check, Play } from "lucide-react"; import Navigation from "@/components/Navigation"; import Footer from "@/components/Footer"; import { Button } from "@/components/ui/button"; import { Card } from "@/components/ui/card"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; import { Link } from "react-router-dom"; const ECommerce = () => { const [selectedTheme, setSelectedTheme] = useState("modern"); const [showSuccess, setShowSuccess] = useState(false); const features = [ { icon: Zap, title: "Lightning Fast", description: "Optimized for speed with 95+ PageSpeed scores", stat: "<1s load time" }, { icon: Smartphone, title: "Mobile-First Design", description: "Responsive layouts that convert on any device", stat: "60% mobile traffic" }, { icon: CreditCard, title: "Payment Integration", description: "Multiple payment gateways, secure checkout", stat: "20+ gateways" }, { icon: Search, title: "SEO Optimized", description: "Built for search engines from the ground up", stat: "Top 3 rankings" }, { icon: Package, title: "Inventory Sync", description: "Real-time stock management and alerts", stat: "99.9% accuracy" }, { icon: Shield, title: "Secure & Compliant", description: "PCI-DSS compliant, SSL encrypted", stat: "Bank-level security" } ]; const themes = [ { id: "modern", name: "Modern", color: "from-blue-500 to-purple-500" }, { id: "minimal", name: "Minimal", color: "from-gray-800 to-gray-600" }, { id: "vibrant", name: "Vibrant", color: "from-pink-500 to-orange-500" } ]; const packages = [ { name: "Starter Store", price: "Starting at AED 15,000", features: [ "Up to 100 products", "1 payment gateway", "Mobile responsive", "Basic SEO setup", "Contact form", "3 months support" ] }, { name: "Business Store", price: "Starting at AED 30,000", popular: true, features: [ "Unlimited products", "Multiple payment gateways", "Advanced SEO", "Analytics dashboard", "Cart recovery", "1 year support", "Custom features" ] }, { name: "Enterprise", price: "Custom pricing", features: [ "Everything in Business", "Multi-vendor support", "Custom integrations", "Dedicated manager", "Priority support", "Advanced analytics", "Scalable infrastructure" ] } ]; const conversionFeatures = [ { label: "One-Page Checkout", increase: "35% higher conversion" }, { label: "Smart Product Filters", increase: "40% more engagement" }, { label: "Cart Abandonment Recovery", increase: "25% recovered sales" }, { label: "Wishlist & Compare", increase: "50% return visitors" } ]; return (
Beautiful stores that convert visitors into customers.
Fast, secure, and built to sell. From concept to launch, we create online stores that drive revenue.
Powerful features that drive sales and delight customers
{feature.description}
See your store come to life with real-time theme previews
Selected Theme: {themes.find(t => t.id === selectedTheme)?.name}
Every feature is designed to increase sales
Transparent pricing with no hidden fees
Let's build an e-commerce experience that your customers will love
{!showSuccess ? ( ) : (Our e-commerce specialists will contact you within 24 hours.