Spaces:
Running
Running
| <html lang="ar" dir="rtl"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>BazaarX - سوق متعدد البائعين</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 src="components/navbar.js"></script> | |
| <script src="components/hero.js"></script> | |
| <script src="components/categories.js"></script> | |
| <script src="components/deals.js"></script> | |
| <script src="components/bestsellers.js"></script> | |
| <script src="components/footer.js"></script> | |
| </head> | |
| <body class="bg-gray-50 font-sans"> | |
| <custom-navbar></custom-navbar> | |
| <custom-hero></custom-hero> | |
| <custom-categories></custom-categories> | |
| <custom-deals></custom-deals> | |
| <custom-bestsellers></custom-bestsellers> | |
| <custom-footer></custom-footer> | |
| <script> | |
| feather.replace(); | |
| // Language switcher | |
| document.getElementById('lang-switcher').addEventListener('change', function() { | |
| window.location.href = this.value === 'en' ? '/en' : '/'; | |
| }); | |
| </script> | |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> | |
| </body> | |
| </html> |