veza/apps/web/desy/legacy/templates/market.html
2026-01-22 17:23:11 +01:00

197 lines
No EOL
11 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Veza Market | Shop</title>
<link
href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="../css/style.css">
</head>
<body>
<div class="page-bg"></div>
<div class="flex h-screen overflow-hidden">
<!-- SIDEBAR -->
<!-- SIDEBAR NAV -->
<aside class="w-64 bg-void-50/80 backdrop-blur border-r border-void-200 hidden md:flex flex-col p-4 z-50">
<div class="mb-8 flex items-center gap-3 px-2">
<div class="w-8 h-8 rounded bg-gradient-to-tr from-cyan-500 to-magenta-500 animate-pulse-slow"></div>
<div class="flex flex-col">
<span class="font-display text-2xl tracking-widest text-white leading-none">VEZA</span>
<span class="text-[10px] text-void-500 font-mono tracking-widest uppercase">Design System
v5.0</span>
</div>
</div>
<nav class="space-y-1 flex-grow overflow-y-auto no-scrollbar pb-20">
<div class="px-2 mb-2 text-xs font-mono text-void-500 uppercase tracking-widest">Templates</div>
<a href="auth.html" class="nav-item">Authentication</a>
<a href="nexus.html" class="nav-item">Nexus Profile</a>
<a href="social.html" class="nav-item">Social Feed</a>
<a href="market.html" class="nav-item active">Marketplace</a>
<a href="studio.html" class="nav-item">Creator Studio</a>
<a href="productivity.html" class="nav-item">Productivity</a>
<a href="education.html" class="nav-item">Education</a>
<a href="admin.html" class="nav-item">Admin & Moderation</a>
<a href="hardware.html" class="nav-item">Hardware Gear</a>
<a href="developers.html" class="nav-item">Developer API</a>
<a href="gaming.html" class="nav-item">Gaming & XP</a>
<div class="px-2 mt-6 mb-2 text-xs font-mono text-void-500 uppercase tracking-widest">Atom Library</div>
<a href="../index.html#intro" class="nav-item">Introduction</a>
<a href="../index.html#colors" class="nav-item">Color Palette</a>
<a href="../index.html#typography" class="nav-item">Typography</a>
<a href="../index.html#buttons" class="nav-item">Buttons & Actions</a>
<a href="../index.html#badges" class="nav-item">Badges & Status</a>
<a href="../index.html#inputs" class="nav-item">Forms & Inputs</a>
<a href="../index.html#cards" class="nav-item">Cards & Containers</a>
<a href="../index.html#tables" class="nav-item">Tables & Data</a>
<a href="../index.html#feedback" class="nav-item">Feedback & Modals</a>
</nav>
<!-- Theme Toggle Foot -->
<div class="pt-4 border-t border-void-200">
<div class="flex items-center justify-between px-2">
<div class="flex items-center gap-2">
<div class="w-2 h-2 rounded-full bg-lime-500 shadow-glow-green"></div>
<span class="text-xs text-void-400 font-mono">SYSTEM: ONLINE</span>
</div>
<button id="themeToggle"
class="w-8 h-8 rounded-full bg-void-200 text-void-600 hover:text-cyan-500 hover:bg-void-100 flex items-center justify-center transition-all">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="5"></circle>
<path
d="M12 1v2M12 21v2M4.22 4.22l1.42 1.42M18.36 18.36l1.42 1.42M1 12h2M21 12h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42">
</path>
</svg>
</button>
</div>
</div>
</aside>
<main class="flex-grow overflow-y-auto relative scroll-smooth h-full p-4 md:p-8">
<div class="max-w-7xl mx-auto flex gap-8 items-start">
<!-- PRODUCT GRID -->
<div class="flex-grow">
<div class="flex items-center justify-between mb-8">
<h2 class="text-2xl font-display text-white mb-0">New Arrivals</h2>
<div class="flex gap-2">
<button class="btn btn-sm btn-outline active">All</button>
<button class="btn btn-sm btn-ghost">Software</button>
<button class="btn btn-sm btn-ghost">Hardware</button>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Product 1 -->
<div class="product-card">
<div class="product-image">
<img src="https://images.unsplash.com/photo-1542751371-adc38448a05e?q=80&w=2670&auto=format&fit=crop"
class="w-full h-full object-cover opacity-80 hover:opacity-100 transition-opacity">
<span class="product-price">2000 XP</span>
</div>
<div class="p-4">
<h3 class="text-white text-lg font-bold mb-1">Cyberdeck v3.0</h3>
<p class="text-sm text-dim mb-4">High-performance deck for netrunners. 16TB Neural
Storage.</p>
<button class="btn btn-primary w-full">Add to Cart</button>
</div>
</div>
<!-- Product 2 -->
<div class="product-card">
<div class="product-image">
<img src="https://images.unsplash.com/photo-1620641788421-7a1c342ea42e?q=80&w=2574&auto=format&fit=crop"
class="w-full h-full object-cover opacity-80 hover:opacity-100 transition-opacity">
<span class="product-price">500 XP</span>
</div>
<div class="p-4">
<h3 class="text-white text-lg font-bold mb-1">Neon Samurai Helm</h3>
<p class="text-sm text-dim mb-4">Cosmetic override for your avatar. Rare drop.</p>
<button class="btn btn-outline w-full">Add to Cart</button>
</div>
</div>
<!-- Product 3 -->
<div class="holo-card p-4 rounded-xl">
<div
class="aspect-square bg-void-800 rounded-lg mb-4 flex items-center justify-center relative overflow-hidden group">
<div
class="absolute inset-0 bg-gradient-to-tr from-cyan-500/20 to-magenta-500/20 group-hover:opacity-100 opacity-50 transition-opacity">
</div>
<span class="text-4xl">💠</span>
<div class="absolute top-2 right-2 holo-tag">LEGENDARY</div>
</div>
<h3 class="text-white font-bold">Quantum Core</h3>
<button class="btn btn-gaming w-full mt-4">Bid 5000 XP</button>
</div>
</div>
</div>
<!-- CART SIDEBAR -->
<div class="w-80 flex-shrink-0 cart-panel hidden xl:block">
<div class="card p-4">
<h3 class="font-display text-xl mb-4">Your Cart (2)</h3>
<div class="space-y-4 mb-6">
<div class="flex items-center gap-3">
<div class="w-12 h-12 bg-void-300 rounded overflow-hidden"><img
src="https://images.unsplash.com/photo-1542751371-adc38448a05e"
class="w-full h-full object-cover"></div>
<div class="flex-grow">
<div class="text-sm font-bold text-white">Cyberdeck v3.0</div>
<div class="text-xs text-cyan">2000 XP</div>
</div>
<button class="text-void-500 hover:text-red-500">&times;</button>
</div>
<div class="flex items-center gap-3">
<div class="w-12 h-12 bg-void-300 rounded overflow-hidden"><img
src="https://images.unsplash.com/photo-1620641788421-7a1c342ea42e"
class="w-full h-full object-cover"></div>
<div class="flex-grow">
<div class="text-sm font-bold text-white">Neon Helm</div>
<div class="text-xs text-cyan">500 XP</div>
</div>
<button class="text-void-500 hover:text-red-500">&times;</button>
</div>
</div>
<div class="border-t border-void-200 pt-4 mb-4">
<div class="flex justify-between text-sm mb-2">
<span class="text-dim">Subtotal</span>
<span class="text-white">2500 XP</span>
</div>
<div class="flex justify-between text-sm mb-2">
<span class="text-dim">Network Fee</span>
<span class="text-white">50 XP</span>
</div>
<div class="flex justify-between text-lg font-bold mt-4">
<span class="text-white">Total</span>
<span class="text-cyan">2550 XP</span>
</div>
</div>
<!-- Checkout Steps Visualizer -->
<div class="flex justify-between mb-4 px-2">
<div class="h-1 w-8 bg-cyan-500 rounded"></div>
<div class="h-1 w-8 bg-cyan-500 rounded"></div>
<div class="h-1 w-8 bg-void-300 rounded"></div>
</div>
<button class="btn btn-primary w-full shadow-neon-cyan">Checkout</button>
</div>
</div>
</div>
</main>
</div>
<script type="module" src="../js/main.js"></script>
</body>
</html>