-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (43 loc) · 1.84 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grocery Grabber</title>
<link rel="apple-touch-icon" sizes="180x180" href="./assets/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon_io/favicon-32x32.png">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/7f42bb4d5d.js" crossorigin="anonymous"></script>
</head>
<body class="justify-evenly" id="splashScreen">
<header class="flex flex-column items-center justify-center w-full indexHeader">
<a href="index.html">
<img src="./assets/gg-transparent-logo2.png" alt="grocery Grabber logo">
</a>
<a href="about-us.html">
<img src="./assets/gg-team-logo.png" alt="grocery Grabber logo">
</a>
</header>
<main class="flex flex-column justify-center items-center">
<div id="directions">
<a class="link" href="grocery-list.html">
<div class="indexButton">
<i class="fa-solid fa-basket-shopping fa-2x"></i>
<p>Grocery List</p>
</div>
</a>
<a class="link" href="recipe-list.html">
<div class="indexButton">
<i class="fa-solid fa-utensils fa-2x"></i>
<p>Recipe List</p>
</div>
</a>
</div>
</main>
<footer class="w-full">
<p class="text-center">© 2023 <a href="https://github.com/orgs/re-factored/repositories" target="_blank" rel="noopener noreferrer">RE-FACTORED Inc.</a><br> All Rights Reserved</p>
</footer>
</body>
</html>