File size: 18,175 Bytes
67f7aba | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Live Demo | QuantumCart</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
.demo-card {
transition: all 0.3s ease;
}
.demo-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.product-image {
transition: transform 0.3s ease;
}
.product-image:hover {
transform: scale(1.05);
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-sm py-4 sticky top-0 z-50">
<div class="container mx-auto px-4 md:px-6 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i data-feather="shopping-cart" class="text-purple-600 h-6 w-6"></i>
<span class="text-xl font-bold bg-gradient-to-r from-purple-600 to-indigo-600 bg-clip-text text-transparent">QuantumCart</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="index.html" class="text-gray-600 hover:text-purple-600 transition">Home</a>
<a href="features.html" class="text-gray-600 hover:text-purple-600 transition">Features</a>
<a href="pricing.html" class="text-gray-600 hover:text-purple-600 transition">Pricing</a>
<a href="blog.html" class="text-gray-600 hover:text-purple-600 transition">Blog</a>
<a href="contact.html" class="text-gray-600 hover:text-purple-600 transition">Contact</a>
<a href="demo.html" class="text-purple-600 font-medium transition">Live Demo</a>
</div>
<button class="md:hidden text-gray-600">
<i data-feather="menu"></i>
</button>
</div>
</nav>
<!-- Hero Section -->
<section class="bg-gradient-to-r from-purple-600 to-indigo-600 text-white py-20">
<div class="container mx-auto px-4 md:px-6 text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Experience <span class="bg-white text-purple-600 px-2 rounded-lg">QuantumCart</span></h1>
<p class="text-xl max-w-3xl mx-auto opacity-90">
Explore our interactive demo showcasing the power of AI-powered e-commerce automation.
</p>
</div>
</section>
<!-- Live Demo Section -->
<section class="py-16">
<div class="container mx-auto px-4 md:px-6">
<h2 class="text-3xl font-bold text-center mb-12">Interactive <span class="text-purple-600">Demo</span></h2>
<div class="max-w-6xl mx-auto">
<!-- Demo Navigation -->
<div class="flex flex-wrap justify-center gap-4 mb-12">
<button class="demo-nav bg-white text-purple-600 px-6 py-3 rounded-lg font-medium transition-all transform hover:scale-105">
Product Catalog
</button>
<button class="demo-nav bg-gray-100 hover:bg-white text-gray-800 px-6 py-3 rounded-lg font-medium transition-all transform hover:scale-105">
AI Recommendations
</button>
<button class="demo-nav bg-gray-100 hover:bg-white text-gray-800 px-6 py-3 rounded-lg font-medium transition-all transform hover:scale-105">
Smart Inventory
</button>
<button class="demo-nav bg-gray-100 hover:bg-white text-gray-800 px-6 py-3 rounded-lg font-medium transition-all transform hover:scale-105">
Analytics Dashboard
</button>
</div>
<!-- Product Showcase -->
<div class="demo-card bg-white rounded-xl shadow-sm p-8 mb-8">
<h3 class="text-2xl font-bold mb-6 text-center">Featured Products</h3>
<div class="grid md:grid-cols-3 gap-8">
<!-- Product 1 -->
<div class="bg-gray-50 rounded-lg p-6 text-center">
<img src="http://static.photos/electronics/320x240/1" alt="Wireless Headphones" class="w-full h-48 object-cover rounded-lg mb-4 product-image">
<h4 class="text-lg font-bold mb-2">Wireless Headphones</h4>
<p class="text-gray-600 mb-4">Premium sound quality with active noise cancellation</p>
<div class="flex justify-between items-center">
<span class="text-xl font-bold text-purple-600">$199.99</span>
<button class="bg-purple-600 hover:bg-purple-700 text-white px-4 py-2 rounded-lg transition">
Add to Cart
</button>
</div>
</div>
<!-- Product 2 -->
<div class="bg-gray-50 rounded-lg p-6 text-center">
<img src="http://static.photos/technology/320x240/2" alt="Smart Watch" class="w-full h-48 object-cover rounded-lg mb-4 product-image">
<h4 class="text-lg font-bold mb-2">Smart Watch Pro</h4>
<p class="text-gray-600 mb-4">Advanced health tracking and smart notifications</p>
<div class="flex justify-between items-center">
<span class="text-xl font-bold text-purple-600">$249.99</span>
<button class="bg-purple-600 hover:bg-purple-700 text-white px-4 py-2 rounded-lg transition">
Add to Cart
</button>
</div>
</div>
<!-- Product 3 -->
<div class="bg-gray-50 rounded-lg p-6 text-center">
<img src="http://static.photos/office/320x240/3" alt="Ergonomic Chair" class="w-full h-48 object-cover rounded-lg mb-4 product-image">
<h4 class="text-lg font-bold mb-2">Ergonomic Office Chair</h4>
<p class="text-gray-600 mb-4">Premium comfort with adjustable lumbar support</p>
<div class="flex justify-between items-center">
<span class="text-xl font-bold text-purple-600">$349.99</span>
<button class="bg-purple-600 hover:bg-purple-700 text-white px-4 py-2 rounded-lg transition">
Add to Cart
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- AI Recommendations Demo -->
<div class="demo-card bg-white rounded-xl shadow-sm p-8">
<h3 class="text-2xl font-bold mb-6 text-center">AI-Powered Recommendations</h3>
<div class="bg-purple-50 rounded-lg p-6 mb-6">
<h4 class="text-lg font-bold mb-4 text-center">Based on your interests, you might like:</h4>
<div class="grid md:grid-cols-2 gap-6">
<!-- Recommended Product 1 -->
<div class="flex items-center space-x-4">
<img src="http://static.photos/electronics/200x200/4" alt="Wireless Earbuds" class="w-20 h-20 object-cover rounded-lg">
<div>
<h5 class="font-bold">Wireless Earbuds</h5>
<p class="text-gray-600 text-sm">Perfect companion for your active lifestyle</p>
</div>
<!-- Recommended Product 2 -->
<div class="flex items-center space-x-4">
<img src="http://static.photos/technology/200x200/5" alt="Phone Case" class="w-20 h-20 object-cover rounded-lg">
<div>
<h5 class="font-bold">Phone Case & Stand</h5>
<p class="text-gray-600 text-sm">Protect your device with premium materials</p>
</div>
</div>
</div>
</div>
</section>
<!-- Features Demo -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4 md:px-6">
<h2 class="text-3xl font-bold text-center mb-12">Live <span class="text-purple-600">Features</span></h2>
<div class="grid md:grid-cols-2 gap-12">
<!-- Smart Inventory Demo -->
<div class="demo-card bg-white p-8 rounded-xl shadow-sm">
<div class="w-14 h-14 rounded-lg bg-purple-100 flex items-center justify-center mb-6">
<i data-feather="repeat" class="text-purple-600 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold mb-3">Smart Inventory Management</h3>
<p class="text-gray-600 mb-4">Watch inventory levels update in real-time as products are added to cart.</p>
<div class="bg-gray-100 rounded-lg p-4">
<div class="flex justify-between items-center mb-2">
<span>Current Stock:</span>
<span class="text-purple-600 font-medium">24 units</span>
</div>
</div>
<!-- Analytics Demo -->
<div class="demo-card bg-white p-8 rounded-xl shadow-sm">
<div class="w-14 h-14 rounded-lg bg-purple-100 flex items-center justify-center mb-6">
<i data-feather="bar-chart-2" class="text-purple-600 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold mb-3">Real-time Analytics</h3>
<p class="text-gray-600 mb-4">Monitor sales performance and customer behavior in real-time.</p>
<div class="bg-gray-100 rounded-lg p-4">
<div class="space-y-2">
<div class="flex justify-between">
<span>Today's Sales:</span>
<span class="text-purple-600 font-medium">$2,847</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Call to Action -->
<section class="py-16 bg-gradient-to-r from-purple-600 to-indigo-600 text-white">
<div class="container mx-auto px-4 md:px-6 text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Get Started?</h2>
<p class="text-xl max-w-2xl mx-auto mb-10 opacity-90">
Experience the full power of QuantumCart with our 14-day free trial.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="index.html#cta" class="bg-white text-purple-600 hover:bg-purple-50 px-8 py-3 rounded-lg font-semibold transition-all transform hover:scale-105 text-center">
Start Free Trial
</a>
<a href="contact.html" class="bg-transparent border-2 border-white hover:bg-white hover:text-purple-600 px-8 py-3 rounded-lg font-semibold transition-all transform hover:scale-105 text-center">
Contact Sales
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-gray-400 py-12">
<div class="container mx-auto px-4 md:px-6">
<div class="grid md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-6">
<i data-feather="shopping-cart" class="text-purple-400 h-6 w-6"></i>
<span class="text-xl font-bold text-white">QuantumCart</span>
</div>
<p class="mb-6">The future of e-commerce automation and AI-powered shopping experiences.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="linkedin"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="github"></i></a>
</div>
</div>
<div>
<h4 class="text-white font-medium mb-4">Product</h4>
<ul class="space-y-2">
<li><a href="features.html" class="hover:text-white transition">Features</a></li>
<li><a href="pricing.html" class="hover:text-white transition">Pricing</a></li>
<li><a href="blog.html" class="hover:text-white transition">Blog</a></li>
<li><a href="demo.html" class="hover:text-white transition">Live Demo</a></li>
<li><a href="#" class="hover:text-white transition">Roadmap</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-medium mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition">Documentation</a></li>
<li><a href="#" class="hover:text-white transition">API</a></li>
<li><a href="#" class="hover:text-white transition">Community</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-medium mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition">About</a></li>
<li><a href="contact.html" class="hover:text-white transition">Contact</a></li>
<li><a href="#" class="hover:text-white transition">Careers</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p>© 2023 QuantumCart. All rights reserved.</p>
<div class="flex space-x-6 mt-4 md:mt-0">
<a href="#" class="hover:text-white transition">Privacy</a>
<a href="#" class="hover:text-white transition">Terms</a>
</div>
</div>
</div>
</footer>
<script>
feather.replace();
// Demo interactivity
document.addEventListener('DOMContentLoaded', function() {
const demoCards = document.querySelectorAll('.demo-card');
const demoNavs = document.querySelectorAll('.demo-nav');
// Add click handlers for demo navigation
demoNavs.forEach((nav, index) => {
nav.addEventListener('click', function() {
// Remove active state from all navs
demoNavs.forEach(n => n.classList.remove('bg-white', 'text-purple-600'));
demoNavs.forEach(n => n.classList.add('bg-gray-100', 'text-gray-800'));
// Add active state to clicked nav
this.classList.remove('bg-gray-100', 'text-gray-800'));
this.classList.add('bg-white', 'text-purple-600'));
// Simple animation for demo cards
demoCards.forEach((card, cardIndex) => {
card.style.opacity = '0';
card.style.transform = 'translateY(20px)';
anime({
targets: card,
opacity: 1,
translateY: 0,
delay: cardIndex * 100,
duration: 600,
easing: 'easeOutExpo'
});
});
});
});
});
</script>
</body>
</html> |