| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>My Orders - BavulumKatar'da</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: '#002366', |
| secondary: '#D4AF37', |
| } |
| } |
| } |
| } |
| </script> |
| </head> |
| <body class="font-sans bg-gray-50"> |
| |
| <custom-nav></custom-nav> |
|
|
| |
| <section class="py-12"> |
| <div class="container mx-auto px-6"> |
| <div class="flex justify-between items-center mb-8"> |
| <h1 class="text-3xl font-bold text-primary">My Orders</h1> |
| <a href="index.html#services" class="flex items-center text-primary hover:text-secondary"> |
| <i data-feather="plus" class="mr-2"></i> |
| New Order |
| </a> |
| </div> |
|
|
| <div class="bg-white rounded-xl shadow-md overflow-hidden"> |
| <div class="overflow-x-auto"> |
| <table class="min-w-full divide-y divide-gray-200"> |
| <thead class="bg-gray-50"> |
| <tr> |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Order ID</th> |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date</th> |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Status</th> |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Items</th> |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Total</th> |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Actions</th> |
| </tr> |
| </thead> |
| <tbody class="bg-white divide-y divide-gray-200"> |
| |
| <tr class="hover:bg-gray-50 transition-colors"> |
| <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-primary">#BK20230615</td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">15 Jun 2023</td> |
| <td class="px-6 py-4 whitespace-nowrap"> |
| <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800">Delivered</span> |
| </td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">3 items</td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-primary">225 QAR</td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm font-medium"> |
| <a href="#" class="text-secondary hover:text-secondary/80 mr-4"><i data-feather="eye"></i></a> |
| <a href="#" class="text-secondary hover:text-secondary/80"><i data-feather="repeat"></i></a> |
| </td> |
| </tr> |
| |
| |
| <tr class="hover:bg-gray-50 transition-colors"> |
| <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-primary">#BK20230722</td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">22 Jul 2023</td> |
| <td class="px-6 py-4 whitespace-nowrap"> |
| <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-blue-100 text-blue-800">In Transit</span> |
| </td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">5 items</td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-primary">350 QAR</td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm font-medium"> |
| <a href="#" class="text-secondary hover:text-secondary/80 mr-4"><i data-feather="eye"></i></a> |
| <a href="#" class="text-secondary hover:text-secondary/80"><i data-feather="truck"></i></a> |
| </td> |
| </tr> |
| |
| |
| <tr class="hover:bg-gray-50 transition-colors"> |
| <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-primary">#BK20230810</td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">10 Aug 2023</td> |
| <td class="px-6 py-4 whitespace-nowrap"> |
| <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-yellow-100 text-yellow-800">Processing</span> |
| </td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">2 items</td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-primary">150 QAR</td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm font-medium"> |
| <a href="#" class="text-secondary hover:text-secondary/80 mr-4"><i data-feather="eye"></i></a> |
| <a href="#" class="text-secondary hover:text-secondary/80"><i data-feather="package"></i></a> |
| </td> |
| </tr> |
| |
| |
| <tr class="hover:bg-gray-50 transition-colors"> |
| <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-primary">#BK20230905</td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">05 Sep 2023</td> |
| <td class="px-6 py-4 whitespace-nowrap"> |
| <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-purple-100 text-purple-800">At Warehouse</span> |
| </td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">1 item</td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-primary">75 QAR</td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm font-medium"> |
| <a href="#" class="text-secondary hover:text-secondary/80 mr-4"><i data-feather="eye"></i></a> |
| <a href="#" class="text-secondary hover:text-secondary/80"><i data-feather="box"></i></a> |
| </td> |
| </tr> |
| </tbody> |
| </table> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <custom-footer></custom-footer> |
|
|
| |
| <script src="components/nav.js"></script> |
| <script src="components/footer.js"></script> |
| <script src="script.js"></script> |
| <script> |
| feather.replace(); |
| </script> |
| </body> |
| </html> |