Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ZaidSunasra committed Aug 25, 2024
0 parents commit 2d4d64f
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
Binary file added assets/app-demo.mp4
Binary file not shown.
32 changes: 32 additions & 0 deletions index.html
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>

0 comments on commit 2d4d64f

Please sign in to comment.