Spaces:
Running
Running
Make an Ecommerce website for tech accessories like chargers, airpods, cables etc. Make the frontend and backend, Make it fully work. Make a full complete website for pakistani audience. Use modern languages and techniques. Also allow the admin to add products and update things as well
625a56c verified | <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Fast Wireless Charger - TechBazaar.pk</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <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 = { | |
| darkMode: 'class', | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: { | |
| 500: '#8B5CF6', | |
| }, | |
| secondary: { | |
| 500: '#10B981', | |
| }, | |
| dark: { | |
| 900: '#0F172A', | |
| 800: '#1E293B', | |
| 700: '#334155', | |
| } | |
| } | |
| } | |
| } | |
| } | |
| </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; | |
| background-color: #0F172A; | |
| color: #F1F5F9; | |
| } | |
| .product-image { | |
| background-color: #1E293B; | |
| border: 1px solid #334155; | |
| } | |
| .spec-table tr:nth-child(even) { | |
| background-color: #1E293B; | |
| } | |
| .review-card { | |
| background-color: #1E293B; | |
| border: 1px solid #334155; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-dark-900"> | |
| <!-- Navigation --> | |
| <nav class="bg-dark-800 border-b border-dark-700 sticky top-0 z-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex items-center justify-between h-16"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 flex items-center"> | |
| <i data-feather="smartphone" class="text-primary-500 mr-2"></i> | |
| <span class="font-bold text-xl">TechBazaar<span class="text-primary-500">.pk</span></span> | |
| </div> | |
| <div class="hidden md:block"> | |
| <div class="ml-10 flex items-baseline space-x-4"> | |
| <a href="index.html" class="text-slate-300 hover:bg-dark-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Home</a> | |
| <a href="#" class="text-slate-300 hover:bg-dark-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Categories</a> | |
| <a href="#" class="text-slate-300 hover:bg-dark-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Deals</a> | |
| <a href="#" class="text-slate-300 hover:bg-dark-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">New Arrivals</a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="hidden md:block"> | |
| <div class="ml-4 flex items-center md:ml-6"> | |
| <div class="relative mr-4"> | |
| <input type="text" placeholder="Search products..." class="bg-dark-700 border border-dark-700 rounded-full py-2 px-4 text-sm focus:outline-none focus:ring-2 focus:ring-primary-500 w-64"> | |
| <i data-feather="search" class="absolute right-3 top-2.5 text-slate-400"></i> | |
| </div> | |
| <button class="bg-dark-700 p-1 rounded-full text-slate-400 hover:text-white focus:outline-none relative"> | |
| <i data-feather="shopping-cart"></i> | |
| <span class="cart-badge">3</span> | |
| </button> | |
| <div class="ml-3 relative"> | |
| <div> | |
| <button class="max-w-xs flex items-center text-sm rounded-full focus:outline-none"> | |
| <span class="sr-only">Open user menu</span> | |
| <div class="h-8 w-8 rounded-full bg-primary-500 flex items-center justify-center"> | |
| <span class="text-white font-medium">U</span> | |
| </div> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="-mr-2 flex md:hidden"> | |
| <button class="bg-dark-800 inline-flex items-center justify-center p-2 rounded-md text-slate-400 hover:text-white hover:bg-dark-700 focus:outline-none"> | |
| <i data-feather="menu" class="block h-6 w-6"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Breadcrumb --> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4"> | |
| <nav class="flex" aria-label="Breadcrumb"> | |
| <ol class="flex items-center space-x-2"> | |
| <li> | |
| <div class="flex items-center"> | |
| <a href="index.html" class="text-slate-400 hover:text-slate-200">Home</a> | |
| </div> | |
| </li> | |
| <li> | |
| <div class="flex items-center"> | |
| <i data-feather="chevron-right" class="h-4 w-4 text-slate-500"></i> | |
| <a href="#" class="ml-2 text-slate-400 hover:text-slate-200">Chargers</a> | |
| </div> | |
| </li> | |
| <li> | |
| <div class="flex items-center"> | |
| <i data-feather="chevron-right" class="h-4 w-4 text-slate-500"></i> | |
| <span class="ml-2 text-slate-200">Fast Wireless Charger</span> | |
| </div> | |
| </li> | |
| </ol> | |
| </nav> | |
| </div> | |
| <!-- Product Detail --> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8"> | |
| <div class="lg:grid lg:grid-cols-2 lg:gap-x-8 lg:items-start"> | |
| <!-- Image gallery --> | |
| <div class="flex flex-col-reverse"> | |
| <!-- Image selector --> | |
| <div class="hidden mt-6 w-full max-w-2xl mx-auto sm:block lg:max-w-none"> | |
| <div class="grid grid-cols-4 gap-6" aria-orientation="horizontal" role="tablist"> | |
| <button id="tabs-1-tab-1" class="relative h-24 bg-white rounded-md flex items-center justify-center text-sm font-medium uppercase text-gray-900 cursor-pointer hover:bg-gray-50 focus:outline-none focus:ring focus:ring-offset-4 focus:ring-opacity-50"> | |
| <span class="sr-only"> Angled view </span> | |
| <div class="product-image rounded-md overflow-hidden w-full h-full"> | |
| <img src="http://static.photos/technology/320x240/1" alt="" class="w-full h-full object-center object-cover"> | |
| </div> | |
| </button> | |
| <button id="tabs-1-tab-2" class="relative h-24 bg-white rounded-md flex items-center justify-center text-sm font-medium uppercase text-gray-900 cursor-pointer hover:bg-gray-50 focus:outline-none focus:ring focus:ring-offset-4 focus:ring-opacity-50"> | |
| <span class="sr-only"> Front view </span> | |
| <div class="product-image rounded-md overflow-hidden w-full h-full"> | |
| <img src="http://static.photos/technology/320x240/2" alt="" class="w-full h-full object-center object-cover"> | |
| </div> | |
| </button> | |
| <button id="tabs-1-tab-3" class="relative h-24 bg-white rounded-md flex items-center justify-center text-sm font-medium uppercase text-gray-900 cursor-pointer hover:bg-gray-50 focus:outline-none focus:ring focus:ring-offset-4 focus:ring-opacity-50"> | |
| <span class="sr-only"> Side view </span> | |
| <div class="product-image rounded-md overflow-hidden w-full h-full"> | |
| <img src="http://static.photos/technology/320x240/3" alt="" class="w-full h-full object-center object-cover"> | |
| </div> | |
| </button> | |
| <button id="tabs-1-tab-4" class="relative h-24 bg-white rounded-md flex items-center justify-center text-sm font-medium uppercase text-gray-900 cursor-pointer hover:bg-gray-50 focus:outline-none focus:ring focus:ring-offset-4 focus:ring-opacity-50"> | |
| <span class="sr-only"> Back view </span> | |
| <div class="product-image rounded-md overflow-hidden w-full h-full"> | |
| <img src="http://static.photos/technology/320x240/4" alt="" class="w-full h-full object-center object-cover"> | |
| </div> | |
| </button> | |
| </div> | |
| </div> | |
| <div class="w-full aspect-w-1 aspect-h-1"> | |
| <img src="http://static.photos/technology/640x360/1" alt="Fast Wireless Charger" class="w-full h-full object-center object-cover sm:rounded-lg"> | |
| </div> | |
| </div> | |
| <!-- Product info --> | |
| <div class="mt-10 px-4 sm:px-0 sm:mt-16 lg:mt-0"> | |
| <h1 class="text-3xl font-extrabold tracking-tight">Fast Wireless Charger 15W</h1> | |
| <div class="mt-3"> | |
| <h2 class="sr-only">Product information</h2> | |
| <p class="text-3xl text-secondary-500">₨4,999</p> | |
| </div> | |
| <!-- Reviews --> | |
| <div class="mt-3"> | |
| <div class="flex items-center"> | |
| <div class="flex items-center"> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| </div> | |
| <p class="sr-only">5 out of 5 stars</p> | |
| <a href="#reviews" class="ml-3 text-sm font-medium text-primary-500 hover:text-primary-400">(128 reviews)</a> | |
| </div> | |
| </div> | |
| <div class="mt-6"> | |
| <h3 class="sr-only">Description</h3> | |
| <div class="space-y-6"> | |
| <p class="text-base text-slate-300"> | |
| Experience fast and convenient wireless charging with our 15W Fast Wireless Charger. | |
| Compatible with all Qi-enabled devices including iPhone and Samsung Galaxy series. | |
| Features a sleek design with built-in safety protection. | |
| </p> | |
| </div> | |
| </div> | |
| <div class="mt-6"> | |
| <div class="flex items-center"> | |
| <p class="text-base text-slate-300">Availability:</p> | |
| <p class="ml-2 text-base text-green-500">In Stock</p> | |
| </div> | |
| </div> | |
| <form class="mt-6"> | |
| <!-- Quantity --> | |
| <div class="mt-4"> | |
| <div class="flex items-center"> | |
| <button type="button" class="bg-dark-800 rounded-md p-1 text-slate-400 hover:text-white focus:outline-none"> | |
| <i data-feather="minus" class="h-5 w-5"></i> | |
| </button> | |
| <input type="text" value="1" class="bg-dark-800 border border-dark-700 w-16 text-center mx-2 rounded-md focus:outline-none focus:ring-2 focus:ring-primary-500"> | |
| <button type="button" class="bg-dark-800 rounded-md p-1 text-slate-400 hover:text-white focus:outline-none"> | |
| <i data-feather="plus" class="h-5 w-5"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <div class="mt-6"> | |
| <button type="submit" class="w-full bg-primary-500 border border-transparent rounded-md py-3 px-8 flex items-center justify-center text-base font-medium text-white hover:bg-primary-600 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-50 focus:ring-primary-500"> | |
| Add to Cart | |
| </button> | |
| </div> | |
| <div class="mt-4"> | |
| <button type="button" class="w-full bg-dark-800 border border-dark-700 rounded-md py-3 px-8 flex items-center justify-center text-base font-medium text-slate-300 hover:bg-dark-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-50 focus:ring-primary-500"> | |
| <i data-feather="heart" class="mr-2"></i> Add to Wishlist | |
| </button> | |
| </div> | |
| </form> | |
| </div> | |
| </div> | |
| <!-- Product details --> | |
| <div class="mt-16 lg:mt-24"> | |
| <div class="border-b border-dark-700"> | |
| <nav class="-mb-px flex space-x-8" aria-label="Tabs"> | |
| <button class="border-primary-500 text-primary-500 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm">Specifications</button> | |
| <button class="border-transparent text-slate-400 hover:text-slate-200 hover:border-slate-300 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm">Description</button> | |
| <button class="border-transparent text-slate-400 hover:text-slate-200 hover:border-slate-300 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm">Reviews (128)</button> | |
| </nav> | |
| </div> | |
| <!-- Specifications content --> | |
| <div class="pt-10"> | |
| <h3 class="text-lg font-medium text-slate-200">Technical Specifications</h3> | |
| <div class="mt-4 border border-dark-700 rounded-lg overflow-hidden"> | |
| <table class="min-w-full spec-table"> | |
| <tbody class="divide-y divide-dark-700"> | |
| <tr> | |
| <td class="py-4 px-6 text-sm font-medium text-slate-300 whitespace-nowrap">Brand</td> | |
| <td class="py-4 px-6 text-sm text-slate-400">TechBazaar</td> | |
| </tr> | |
| <tr> | |
| <td class="py-4 px-6 text-sm font-medium text-slate-300 whitespace-nowrap">Model</td> | |
| <td class="py-4 px-6 text-sm text-slate-400">TB-WC15</td> | |
| </tr> | |
| <tr> | |
| <td class="py-4 px-6 text-sm font-medium text-slate-300 whitespace-nowrap">Charging Power</td> | |
| <td class="py-4 px-6 text-sm text-slate-400">15W Fast Charging</td> | |
| </tr> | |
| <tr> | |
| <td class="py-4 px-6 text-sm font-medium text-slate-300 whitespace-nowrap">Compatibility</td> | |
| <td class="py-4 px-6 text-sm text-slate-400">Qi-enabled devices (iPhone, Samsung Galaxy, etc.)</td> | |
| </tr> | |
| <tr> | |
| <td class="py-4 px-6 text-sm font-medium text-slate-300 whitespace-nowrap">Input</td> | |
| <td class="py-4 px-6 text-sm text-slate-400">DC 5V/2A, 9V/1.67A</td> | |
| </tr> | |
| <tr> | |
| <td class="py-4 px-6 text-sm font-medium text-slate-300 whitespace-nowrap">Output</td> | |
| <td class="py-4 px-6 text-sm text-slate-400">5W/7.5W/10W/15W auto-sensing</td> | |
| </tr> | |
| <tr> | |
| <td class="py-4 px-6 text-sm font-medium text-slate-300 whitespace-nowrap">Material</td> | |
| <td class="py-4 px-6 text-sm text-slate-400">Premium ABS + TPU</td> | |
| </tr> | |
| <tr> | |
| <td class="py-4 px-6 text-sm font-medium text-slate-300 whitespace-nowrap">Dimensions</td> | |
| <td class="py-4 px-6 text-sm text-slate-400">120 x 120 x 10 mm</td> | |
| </tr> | |
| <tr> | |
| <td class="py-4 px-6 text-sm font-medium text-slate-300 whitespace-nowrap">Weight</td> | |
| <td class="py-4 px-6 text-sm text-slate-400">150g</td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| </div> | |
| </div> | |
| <!-- Reviews section --> | |
| <div id="reviews" class="pt-10"> | |
| <div class="flex items-center justify-between"> | |
| <h3 class="text-lg font-medium text-slate-200">Customer Reviews</h3> | |
| <button class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-primary-500 hover:bg-primary-600 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500"> | |
| Write a Review | |
| </button> | |
| </div> | |
| <div class="mt-6 space-y-8"> | |
| <!-- Review 1 --> | |
| <div class="review-card rounded-lg p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex items-center"> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| </div> | |
| <h4 class="ml-3 text-sm font-medium text-slate-200">Absolutely amazing!</h4> | |
| </div> | |
| <div class="mt-4 space-y-6 text-base text-slate-300"> | |
| <p>This wireless charger is fantastic! Charges my iPhone 13 at full speed and the build quality is excellent. Highly recommend!</p> | |
| </div> | |
| <div class="mt-6 flex items-center"> | |
| <div class="flex-shrink-0"> | |
| <div class="h-10 w-10 rounded-full bg-primary-500 flex items-center justify-center"> | |
| <span class="text-white font-medium">A</span> | |
| </div> | |
| </div> | |
| <div class="ml-3"> | |
| <div class="text-sm font-medium text-slate-200">Ahmed R.</div> | |
| <div class="text-sm text-slate-400">Karachi, Pakistan</div> | |
| </div> | |
| <div class="ml-auto text-sm text-slate-400">2 days ago</div> | |
| </div> | |
| </div> | |
| <!-- Review 2 --> | |
| <div class="review-card rounded-lg p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex items-center"> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| </div> | |
| <h4 class="ml-3 text-sm font-medium text-slate-200">Great value for money</h4> | |
| </div> | |
| <div class="mt-4 space-y-6 text-base text-slate-300"> | |
| <p>Works perfectly with my Samsung Galaxy S22. Fast charging and very stable. The price is unbeatable for this quality.</p> | |
| </div> | |
| <div class="mt-6 flex items-center"> | |
| <div class="flex-shrink-0"> | |
| <div class="h-10 w-10 rounded-full bg-secondary-500 flex items-center justify-center"> | |
| <span class="text-white font-medium">S</span> | |
| </div> | |
| </div> | |
| <div class="ml-3"> | |
| <div class="text-sm font-medium text-slate-200">Sana K.</div> | |
| <div class="text-sm text-slate-400">Lahore, Pakistan</div> | |
| </div> | |
| <div class="ml-auto text-sm text-slate-400">1 week ago</div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Related products --> | |
| <section aria-labelledby="related-heading" class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-24"> | |
| <h2 id="related-heading" class="text-2xl font-extrabold tracking-tight">Related Products</h2> | |
| <div class="mt-6 grid grid-cols-1 gap-y-10 gap-x-6 sm:grid-cols-2 lg:grid-cols-4 xl:gap-x-8"> | |
| <!-- Product 1 --> | |
| <div class="group product-card relative bg-dark-800 rounded-lg border border-dark-700 overflow-hidden"> | |
| <div class="w-full min-h-80 bg-gray-200 aspect-w-1 aspect-h-1 rounded-md overflow-hidden lg:h-80 lg:aspect-none"> | |
| <img src="http://static.photos/technology/320x240/5" alt="Power Bank" class="w-full h-full object-center object-cover lg:w-full lg:h-full"> | |
| </div> | |
| <div class="p-4"> | |
| <div class="flex justify-between"> | |
| <h3 class="text-sm text-slate-300"> | |
| <a href="#"> | |
| <span aria-hidden="true" class="absolute inset-0"></span> | |
| 20000mAh Power Bank | |
| </a> | |
| </h3> | |
| <p class="text-sm font-medium text-secondary-500">₨8,499</p> | |
| </div> | |
| <p class="mt-1 text-sm text-slate-500">Triple Output Ports</p> | |
| <div class="mt-4 flex justify-between items-center"> | |
| <button class="flex items-center text-sm text-primary-500 hover:text-primary-400"> | |
| <i data-feather="shopping-cart" class="mr-1"></i> Add to Cart | |
| </button> | |
| <div class="flex items-center"> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| <span class="ml-1 text-sm text-slate-400">4.6</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Product 2 --> | |
| <div class="group product-card relative bg-dark-800 rounded-lg border border-dark-700 overflow-hidden"> | |
| <div class="w-full min-h-80 bg-gray-200 aspect-w-1 aspect-h-1 rounded-md overflow-hidden lg:h-80 lg:aspect-none"> | |
| <img src="http://static.photos/technology/320x240/6" alt="USB Cable" class="w-full h-full object-center object-cover lg:w-full lg:h-full"> | |
| </div> | |
| <div class="p-4"> | |
| <div class="flex justify-between"> | |
| <h3 class="text-sm text-slate-300"> | |
| <a href="#"> | |
| <span aria-hidden="true" class="absolute inset-0"></span> | |
| Fast Charging USB Cable | |
| </a> | |
| </h3> | |
| <p class="text-sm font-medium text-secondary-500">₨1,299</p> | |
| </div> | |
| <p class="mt-1 text-sm text-slate-500">2M Length, 100W Fast Charging</p> | |
| <div class="mt-4 flex justify-between items-center"> | |
| <button class="flex items-center text-sm text-primary-500 hover:text-primary-400"> | |
| <i data-feather="shopping-cart" class="mr-1"></i> Add to Cart | |
| </button> | |
| <div class="flex items-center"> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| <span class="ml-1 text-sm text-slate-400">4.7</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Product 3 --> | |
| <div class="group product-card relative bg-dark-800 rounded-lg border border-dark-700 overflow-hidden"> | |
| <div class="w-full min-h-80 bg-gray-200 aspect-w-1 aspect-h-1 rounded-md overflow-hidden lg:h-80 lg:aspect-none"> | |
| <img src="http://static.photos/technology/320x240/7" alt="Phone Case" class="w-full h-full object-center object-cover lg:w-full lg:h-full"> | |
| </div> | |
| <div class="p-4"> | |
| <div class="flex justify-between"> | |
| <h3 class="text-sm text-slate-300"> | |
| <a href="#"> | |
| <span aria-hidden="true" class="absolute inset-0"></span> | |
| Shockproof Phone Case | |
| </a> | |
| </h3> | |
| <p class="text-sm font-medium text-secondary-500">₨2,499</p> | |
| </div> | |
| <p class="mt-1 text-sm text-slate-500">Military Grade Protection</p> | |
| <div class="mt-4 flex justify-between items-center"> | |
| <button class="flex items-center text-sm text-primary-500 hover:text-primary-400"> | |
| <i data-feather="shopping-cart" class="mr-1"></i> Add to Cart | |
| </button> | |
| <div class="flex items-center"> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| <span class="ml-1 text-sm text-slate-400">4.8</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Product 4 --> | |
| <div class="group product-card relative bg-dark-800 rounded-lg border border-dark-700 overflow-hidden"> | |
| <div class="w-full min-h-80 bg-gray-200 aspect-w-1 aspect-h-1 rounded-md overflow-hidden lg:h-80 lg:aspect-none"> | |
| <img src="http://static.photos/technology/320x240/8" alt="Screen Protector" class="w-full h-full object-center object-cover lg:w-full lg:h-full"> | |
| </div> | |
| <div class="p-4"> | |
| <div class="flex justify-between"> | |
| <h3 class="text-sm text-slate-300"> | |
| <a href="#"> | |
| <span aria-hidden="true" class="absolute inset-0"></span> | |
| Tempered Glass Screen Protector | |
| </a> | |
| </h3> | |
| <p class="text-sm font-medium text-secondary-500">₨1,499</p> | |
| </div> | |
| <p class="mt-1 text-sm text-slate-500">9H Hardness, Anti-Scratch</p> | |
| <div class="mt-4 flex justify-between items-center"> | |
| <button class="flex items-center text-sm text-primary-500 hover:text-primary-400"> | |
| <i data-feather="shopping-cart" class="mr-1"></i> Add to Cart | |
| </button> | |
| <div class="flex items-center"> | |
| <i data-feather="star" class="text-yellow-400 fill-current"></i> | |
| <span class="ml-1 text-sm text-slate-400">4.5</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-dark-800 border-t border-dark-700"> | |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8"> | |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8"> | |
| <div> | |
| <h3 class="text-sm font-semibold text-slate-300 tracking-wider uppercase">Shop</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li><a href="#" class="text-base text-slate-400 hover:text-white">All Products</a></li> | |
| <li><a href="#" class="text-base text-slate-400 hover:text-white">New Arrivals</a></li> | |
| <li><a href="#" class="text-base text-slate-400 hover:text-white">Best Sellers</a></li> | |
| <li><a href="#" class="text-base text-slate-400 hover:text-white">Deals & Offers</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-slate-300 tracking-wider uppercase">Support</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li><a href="#" class="text-base text-slate-400 hover:text-white">Contact Us</a></li> | |
| <li><a href="#" class="text-base text-slate-400 hover:text-white">FAQs</a></li> | |
| <li><a href="#" class="text-base text-slate-400 hover:text-white">Shipping Policy</a></li> | |
| <li><a href="#" class="text-base text-slate-400 hover:text-white">Returns & Exchanges</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-slate-300 tracking-wider uppercase">Company</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li><a href="#" class="text-base text-slate-400 hover:text-white">About Us</a></li> | |
| <li><a href="#" class="text-base text-slate-400 hover:text-white">Careers</a></li> | |
| <li><a href="#" class="text-base text-slate-400 hover:text-white">Privacy Policy</a></li> | |
| <li><a href="#" class="text-base text-slate-400 hover:text-white">Terms & Conditions</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-slate-300 tracking-wider uppercase">Connect</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li><a href="#" class="text-base text-slate-400 hover:text-white">Facebook</a></li> | |
| <li><a href="#" class="text-base text-slate-400 hover:text-white">Instagram</a></li> | |
| <li><a href="#" class="text-base text-slate-400 hover:text-white">Twitter</a></li> | |
| <li><a href="#" class="text-base text-slate-400 hover:text-white">YouTube</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="mt-12 border-t border-dark-700 pt-8"> | |
| <p class="text-base text-slate-400 text-center">© 2023 TechBazaar.pk. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> | |