Skip to content

Commit b1d1f76

Browse files
Updated HTML
1 parent 27b1dac commit b1d1f76

File tree

1 file changed

+21
-27
lines changed

1 file changed

+21
-27
lines changed

views/home.ejs

Lines changed: 21 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
<meta charset="UTF-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<title>Meal Planning App</title>
7+
<title>FoodMeets</title>
88
<link rel="preconnect" href="https://fonts.googleapis.com">
99
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
1010
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
1111
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
12-
<link rel="stylesheet" href="/css/styles.css">
12+
<link rel="stylesheet" href="css\styles.css">
1313
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
1414
</head>
15-
<body>
15+
<body class="homeBody">
1616

1717

1818
<!--nav-->
19-
<nav x-data="{show:false}" class="flex items-center justify-between flex-wrap bg-orange-600 p-6">
19+
<nav x-data="{show:false}" class="flex items-center justify-between flex-wrap bg-orange-600 p-6 navShadow">
2020
<div class="flex items-center flex-shrink-0 text-white mr-6">
21-
<span class="font-semibold text-xl tracking-tight">Plan Your Meal</span>
21+
<span class="font-semibold text-xl tracking-tight">FoodMeets</span>
2222
</div>
2323
<div class="block md:hidden">
2424
<button @click="show=!show" class="flex items-center px-3 py-2 border rounded text-gray-100 border-gray-200 hover:text-white hover:border-white">
@@ -36,33 +36,27 @@
3636
<!-- Row -->
3737
<div class="w-full xl:w-3/4 lg:w-11/12 flex">
3838
<!-- Col -->
39-
<div
40-
class="w-full h-auto bg-gray-400 hidden lg:block lg:w-5/12 bg-cover rounded-l-lg"
41-
style="background-image: url('images/food.png')"
42-
></div>
43-
<!-- Col -->
44-
<div class="w-full lg:w-7/12 bg-white p-5 rounded-lg lg:rounded-l-none">
45-
<h3 class="pt-4 text-2xl text-center">Welcome - Let's plan some meals!</h3>
46-
<form class="px-8 pt-6 pb-8 mb-4 bg-white rounded">
47-
<a href="/inputWeekPlanMeals">
39+
<div class="w-full optionsWrapper">
40+
<h3 class="text-center homeTitle">Welcome - Let's plan some meals!</h3>
41+
<form class="menuWrapper">
42+
<a href="/inputWeekPlanMeals" class="weeklyMenu component">
4843
<button
49-
class="w-full px-4 py-2 font-bold text-white bg-yellow-500 rounded-full hover:bg-yellow-700 focus:outline-none focus:shadow-outline"
50-
type="button"> Create your weekly menu
44+
class="textBackground"
45+
type="button"> Create your weekly menu
5146
</button>
5247
</a>
53-
<br> <br>
54-
<a href="/inputIngredient">
48+
<a href="/inputIngredient" class="inFridge component">
5549
<button
56-
class="w-full px-4 py-2 font-bold text-white bg-indigo-500 rounded-full hover:bg-indigo-700 focus:outline-none focus:shadow-outline"
57-
type="button">What's in your fridge
50+
class="textBackground"
51+
type="button">What's in your fridge?
5852
</button>
5953
</a>
60-
<br> <br>
61-
<button
62-
class="w-full px-4 py-2 font-bold text-white bg-blue-500 rounded-full hover:bg-blue-700 focus:outline-none focus:shadow-outline"
63-
type="button">Try something new today
64-
</button>
65-
<br> <br>
54+
<a href="file:///C:/Users/tulsa/OneDrive/Documents/GitHub/Bon-Hack-tit/views/inputIngredient.html" class="somethingNew component">
55+
<button
56+
class="textBackground"
57+
type="button">Try something new today
58+
</button>
59+
</a>
6660

6761

6862
</div>
@@ -78,4 +72,4 @@
7872
</div>
7973
</body>
8074
</body>
81-
</html>
75+
</html>

0 commit comments

Comments
 (0)