Spaces:
Running
Running
| <html lang="en" class="scroll-smooth"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>GPU Souk Morocco | Premium Graphics Cards Marketplace</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#4F46E5', | |
| secondary: '#10B981', | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| </head> | |
| <body class="bg-gray-50"> | |
| <custom-navbar></custom-navbar> | |
| <main> | |
| <!-- Hero Section --> | |
| <section class="relative bg-gradient-to-r from-primary to-indigo-700 text-white py-20"> | |
| <div class="container mx-auto px-6 text-center"> | |
| <h1 class="text-4xl md:text-6xl font-bold mb-6">Power Up Your Rig</h1> | |
| <p class="text-xl md:text-2xl mb-8">Premium GPUs from Morocco's trusted marketplace</p> | |
| <a href="#products" class="bg-secondary hover:bg-green-500 text-white font-bold py-3 px-8 rounded-full transition duration-300 inline-flex items-center"> | |
| Shop Now <i data-feather="arrow-right" class="ml-2"></i> | |
| </a> | |
| </div> | |
| <div class="absolute bottom-0 left-0 right-0 h-16 bg-white transform skew-y-1 origin-top-left"></div> | |
| </section> | |
| <!-- Featured Products --> | |
| <section id="products" class="py-16 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-3xl font-bold text-center text-gray-800 mb-12">Featured Graphics Cards</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8" id="featured-products"> | |
| <!-- Products will be loaded via JavaScript --> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Why Choose Us --> | |
| <section class="py-16 bg-gray-100"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-3xl font-bold text-center text-gray-800 mb-12">Why Choose GPU Souk?</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <div class="bg-white p-8 rounded-xl shadow-md text-center"> | |
| <div class="bg-primary bg-opacity-10 p-4 rounded-full inline-block mb-4"> | |
| <i data-feather="shield" class="text-primary w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Authentic Products</h3> | |
| <p class="text-gray-600">All our GPUs are 100% authentic with verified suppliers.</p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md text-center"> | |
| <div class="bg-secondary bg-opacity-10 p-4 rounded-full inline-block mb-4"> | |
| <i data-feather="truck" class="text-secondary w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Fast Delivery</h3> | |
| <p class="text-gray-600">Express shipping across all major cities in Morocco.</p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md text-center"> | |
| <div class="bg-primary bg-opacity-10 p-4 rounded-full inline-block mb-4"> | |
| <i data-feather="headphones" class="text-primary w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">24/7 Support</h3> | |
| <p class="text-gray-600">Our team is always ready to assist you with any questions.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Newsletter --> | |
| <section class="py-16 bg-primary text-white"> | |
| <div class="container mx-auto px-6 text-center"> | |
| <h2 class="text-3xl font-bold mb-6">Stay Updated</h2> | |
| <p class="text-xl mb-8 max-w-2xl mx-auto">Subscribe to get exclusive deals and the latest GPU drops in Morocco.</p> | |
| <form class="max-w-md mx-auto flex"> | |
| <input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-l-lg focus:outline-none text-gray-800"> | |
| <button type="submit" class="bg-secondary hover:bg-green-500 px-6 py-3 rounded-r-lg font-medium transition duration-300">Subscribe</button> | |
| </form> | |
| </div> | |
| </section> | |
| </main> | |
| <custom-footer></custom-footer> | |
| <script src="components/navbar.js"></script> | |
| <script src="components/footer.js"></script> | |
| <script src="script.js"></script> | |
| <script>feather.replace();</script> | |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> | |
| </body> | |
| </html> |