115 lines
4.2 KiB
PHP
115 lines
4.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Mighty | Restaurant SaaS</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<!-- Tailwind CSS CDN -->
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
|
|
<style>
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body class="bg-gray-50 text-gray-800">
|
|
|
|
<!-- Navbar -->
|
|
<nav class="bg-white shadow-sm">
|
|
<div class="max-w-7xl mx-auto px-6 py-4 flex justify-between items-center">
|
|
<h1 class="text-2xl font-bold text-orange-600">RestaurantSaaS</h1>
|
|
<div class="space-x-4">
|
|
<a href="#" class="text-gray-600 hover:text-orange-600">Features</a>
|
|
<a href="#" class="text-gray-600 hover:text-orange-600">Pricing</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Hero Section -->
|
|
<section class="bg-gradient-to-r from-orange-500 to-red-500 text-white">
|
|
<div class="max-w-7xl mx-auto px-6 py-20 text-center">
|
|
<h2 class="text-4xl md:text-5xl font-extrabold mb-6">
|
|
Welcome to Restaurant SaaS Platform
|
|
</h2>
|
|
<p class="text-lg md:text-xl mb-8 max-w-3xl mx-auto">
|
|
Manage orders, deliveries, riders, payments, and customers from one powerful dashboard.
|
|
Built for modern restaurants.
|
|
</p>
|
|
<div class="flex justify-center gap-4">
|
|
<a href="#"
|
|
class="bg-white text-orange-600 font-semibold px-8 py-3 rounded-lg shadow hover:bg-gray-100 transition">
|
|
Get Started
|
|
</a>
|
|
<a href="#"
|
|
class="border border-white px-8 py-3 rounded-lg font-semibold hover:bg-white hover:text-orange-600 transition">
|
|
Request Demo
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Features -->
|
|
<section class="py-16">
|
|
<div class="max-w-7xl mx-auto px-6">
|
|
<h3 class="text-3xl font-bold text-center mb-12">
|
|
Everything You Need to Run Your Restaurant
|
|
</h3>
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
|
|
<div class="bg-white p-8 rounded-xl shadow hover:shadow-lg transition">
|
|
<h4 class="text-xl font-semibold mb-4">Order Management</h4>
|
|
<p class="text-gray-600">
|
|
Track, process, and manage customer orders in real-time with smart automation.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="bg-white p-8 rounded-xl shadow hover:shadow-lg transition">
|
|
<h4 class="text-xl font-semibold mb-4">Delivery & Riders</h4>
|
|
<p class="text-gray-600">
|
|
Assign riders, live-track deliveries, and optimize routes effortlessly.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="bg-white p-8 rounded-xl shadow hover:shadow-lg transition">
|
|
<h4 class="text-xl font-semibold mb-4">Reports & Analytics</h4>
|
|
<p class="text-gray-600">
|
|
Get powerful insights on sales, performance, and customer behavior.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Call to Action -->
|
|
<section class="bg-orange-600 text-white py-16">
|
|
<div class="max-w-7xl mx-auto px-6 text-center">
|
|
<h3 class="text-3xl font-bold mb-6">
|
|
Ready to Grow Your Restaurant?
|
|
</h3>
|
|
<p class="mb-8 text-lg">
|
|
Join hundreds of restaurants using our SaaS to scale faster and smarter.
|
|
</p>
|
|
<a href="#"
|
|
class="bg-white text-orange-600 px-10 py-4 rounded-lg font-semibold shadow hover:bg-gray-100 transition">
|
|
Start Free Trial
|
|
</a>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer class="bg-gray-900 text-gray-400 py-8">
|
|
<div class="max-w-7xl mx-auto px-6 text-center">
|
|
<p>
|
|
© {{ date('Y') ?? '2026' }} RestaurantSaaS. All rights reserved.
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|