Spaces:
Sleeping
Sleeping
Update templates/index.html
Browse files- templates/index.html +52 -3
templates/index.html
CHANGED
@@ -4,13 +4,62 @@
|
|
4 |
<head>
|
5 |
<meta charset="UTF-8">
|
6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
7 |
-
<title>Biryani Hub
|
8 |
-
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
|
9 |
<style>
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
</style>
|
12 |
</head>
|
13 |
<body>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
<!-- Welcome Page -->
|
15 |
<div class="container" id="welcomePage">
|
16 |
<h1>Welcome to Biriyani Hub 🍽</h1>
|
|
|
4 |
<head>
|
5 |
<meta charset="UTF-8">
|
6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
7 |
+
<title>Welcome to Biryani Hub</title>
|
|
|
8 |
<style>
|
9 |
+
body {
|
10 |
+
font-family: Arial, sans-serif;
|
11 |
+
background: linear-gradient(135deg, #f4c542, #ff8f6a);
|
12 |
+
display: flex;
|
13 |
+
justify-content: center;
|
14 |
+
align-items: center;
|
15 |
+
height: 100vh;
|
16 |
+
margin: 0;
|
17 |
+
}
|
18 |
+
.container {
|
19 |
+
background-color: #fff;
|
20 |
+
padding: 40px 50px;
|
21 |
+
border-radius: 10px;
|
22 |
+
text-align: center;
|
23 |
+
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
24 |
+
}
|
25 |
+
h1 {
|
26 |
+
font-size: 32px;
|
27 |
+
color: #ff6a00;
|
28 |
+
}
|
29 |
+
p {
|
30 |
+
font-size: 20px;
|
31 |
+
color: #333;
|
32 |
+
}
|
33 |
+
.category-buttons {
|
34 |
+
margin-top: 30px;
|
35 |
+
}
|
36 |
+
.category-buttons button {
|
37 |
+
padding: 15px 30px;
|
38 |
+
background-color: #ff6a00;
|
39 |
+
color: white;
|
40 |
+
border: none;
|
41 |
+
border-radius: 5px;
|
42 |
+
cursor: pointer;
|
43 |
+
font-size: 18px;
|
44 |
+
}
|
45 |
+
.category-buttons button:hover {
|
46 |
+
background-color: #e65c00;
|
47 |
+
}
|
48 |
</style>
|
49 |
</head>
|
50 |
<body>
|
51 |
+
|
52 |
+
<div class="container">
|
53 |
+
<h1>Welcome to the Biryani Hub</h1>
|
54 |
+
<p>Are you ready to explore our delicious menu?</p>
|
55 |
+
<div class="category-buttons">
|
56 |
+
<button onclick="window.location.href='/menu_page'">Go to Menu</button>
|
57 |
+
</div>
|
58 |
+
</div>
|
59 |
+
|
60 |
+
</body>
|
61 |
+
</html>
|
62 |
+
|
63 |
<!-- Welcome Page -->
|
64 |
<div class="container" id="welcomePage">
|
65 |
<h1>Welcome to Biriyani Hub 🍽</h1>
|