-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 2d4d64f
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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://drive.google.com/file/d/1Eusg-VcHgJDFMCB1JaQD_tQ2p-G6rZSs/view?usp=sharing" 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> |