| <!DOCTYPE html> |
| <html lang="en" class="h-full"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>QueueMaster Pro - Smart Queue Booking</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/footer.js"></script> |
| </head> |
| <body class="bg-gray-50 min-h-full flex flex-col"> |
| <custom-navbar></custom-navbar> |
|
|
| <main class="flex-grow container mx-auto px-4 py-8"> |
| <div class="max-w-4xl mx-auto"> |
| |
| <section class="text-center mb-16"> |
| <h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-4">Skip the Wait with <span class="text-indigo-600">QueueMaster</span></h1> |
| <p class="text-xl text-gray-600 mb-8">Book your spot in line from anywhere, anytime</p> |
| <div class="flex justify-center gap-4"> |
| <a href="/book.html" class="bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-3 px-6 rounded-lg shadow-md transition duration-300">Book Now</a> |
| <a href="/dashboard.html" class="bg-white border border-gray-300 hover:bg-gray-50 text-gray-700 font-medium py-3 px-6 rounded-lg shadow-sm transition duration-300">View Dashboard</a> |
| </div> |
| </section> |
|
|
| |
| <section class="mb-16"> |
| <h2 class="text-3xl font-bold text-center text-gray-800 mb-12">Why Choose QueueMaster?</h2> |
| <div class="grid md:grid-cols-3 gap-8"> |
| <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300"> |
| <div class="text-indigo-600 mb-4"> |
| <i data-feather="clock" class="w-10 h-10"></i> |
| </div> |
| <h3 class="text-xl font-semibold mb-2">Real-Time Updates</h3> |
| <p class="text-gray-600">Get live updates on your queue position and estimated wait time.</p> |
| </div> |
| <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300"> |
| <div class="text-indigo-600 mb-4"> |
| <i data-feather="smartphone" class="w-10 h-10"></i> |
| </div> |
| <h3 class="text-xl font-semibold mb-2">Mobile Friendly</h3> |
| <p class="text-gray-600">Manage your bookings from any device, anywhere.</p> |
| </div> |
| <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300"> |
| <div class="text-indigo-600 mb-4"> |
| <i data-feather="bell" class="w-10 h-10"></i> |
| </div> |
| <h3 class="text-xl font-semibold mb-2">Smart Notifications</h3> |
| <p class="text-gray-600">Receive alerts when your turn is approaching.</p> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="bg-indigo-50 rounded-2xl p-8 mb-16"> |
| <h2 class="text-3xl font-bold text-center text-gray-800 mb-8">How It Works</h2> |
| <div class="space-y-8"> |
| <div class="flex items-start"> |
| <div class="bg-indigo-600 text-white rounded-full w-8 h-8 flex items-center justify-center flex-shrink-0 mt-1 mr-4">1</div> |
| <div> |
| <h3 class="text-xl font-semibold mb-2">Select Service</h3> |
| <p class="text-gray-700">Choose from available services and locations.</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <div class="bg-indigo-600 text-white rounded-full w-8 h-8 flex items-center justify-center flex-shrink-0 mt-1 mr-4">2</div> |
| <div> |
| <h3 class="text-xl font-semibold mb-2">Book Your Slot</h3> |
| <p class="text-gray-700">Pick a convenient time slot and confirm your booking.</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <div class="bg-indigo-600 text-white rounded-full w-8 h-8 flex items-center justify-center flex-shrink-0 mt-1 mr-4">3</div> |
| <div> |
| <h3 class="text-xl font-semibold mb-2">Arrive & Check In</h3> |
| <p class="text-gray-700">Check in when you arrive and we'll handle the rest.</p> |
| </div> |
| </div> |
| </div> |
| </section> |
| </div> |
| </main> |
|
|
| <custom-footer></custom-footer> |
|
|
| <script>feather.replace();</script> |
| <script src="script.js"></script> |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> |
| </body> |
| </html> |