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 (
{/* Hero Section */}

Custom E-Commerce Solutions

Beautiful stores that convert visitors into customers.

Fast, secure, and built to sell. From concept to launch, we create online stores that drive revenue.

{/* Animated Store Preview */} {/*
Live Demo Available
{[ { label: "Products", value: "10K+" }, { label: "Orders/day", value: "500+" }, { label: "Conversion", value: "3.8%" }, { label: "Avg. Order", value: "AED 450" } ].map((stat, i) => (
{stat.value}
{stat.label}
))}
*/}
{/* Features Grid */}

Everything You Need to Sell Online

Powerful features that drive sales and delight customers

{features.map((feature, index) => (

{feature.title}

{feature.description}

{feature.stat}
))}
{/* Theme Playground */} {/*

Live Theme Customizer

See your store come to life with real-time theme previews

{themes.map((theme) => ( ))}

Selected Theme: {themes.find(t => t.id === selectedTheme)?.name}

*/} {/* Conversion Features */}

Conversion-Optimized Features

Every feature is designed to increase sales

{conversionFeatures.map((feature, index) => (
{feature.label}
{feature.increase}
))}
{/* Pricing Packages */} {/*

Choose Your Package

Transparent pricing with no hidden fees

{packages.map((pkg, index) => ( {pkg.popular && (
Most Popular
)}

{pkg.name}

{pkg.price}
    {pkg.features.map((feature, i) => (
  • {feature}
  • ))}
))}
*/} {/* CTA Section */}

Ready to Launch Your Store?

Let's build an e-commerce experience that your customers will love

{!showSuccess ? ( ) : (

Request Received!

Our e-commerce specialists will contact you within 24 hours.

)}
); }; export default ECommerce;