-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurant Billing App</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 font-mono">
<div class="container mx-auto px-4 py-8">
<header class="text-center mb-8">
<h1 class="text-4xl font-bold text-gray-900">Restaurant Billing App</h1>
<p class="mt-2 text-xl font-bold text-gray-700">Efficient and user-friendly billing solution for restaurants.</p>
</header>
<section class="mb-8">
<h2 class="text-2xl font-semibold text-gray-800 mb-4 text-center">Watch the App in Action</h2>
<div class="flex justify-center max-w-[50vw] mx-auto">
<video class="rounded-lg shadow-lg " controls>
<source src="assets/app-demo.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</section>
<section class="text-center">
<h2 class="text-2xl font-semibold text-gray-800 mb-4">Download the App</h2>
<a href="https://github.com/ZaidSunasra/Restaurant-Billing-App/releases/tag/v1.0.0" download class="inline-block bg-blue-500 text-white text-lg font-semibold py-3 px-6 rounded-lg shadow-lg hover:bg-blue-600 transition duration-300">
Download for Windows
</a>
</section>
</div>
</body>
</html>