-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (71 loc) · 3.93 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<link rel="manifest" href="./manifest.json">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CoffeYofi</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://pacific-ocean-76044.herokuapp.com/stylesheets/home.css">
</head>
<body class="d-flex flex-column vh-100">
<nav class="navbar sticky-top navbar-expand-lg navbar-dark bg-dark brown-background">
<div class="container-fluid">
<a class="navbar-brand" href="/coffees">PORTAFILTER</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<div class="navbar-nav">
<a class="nav-link" href="/coffees">BEANS</a>
<a class="nav-link" href="/drinks">DIARY</a>
</div>
<div class="navbar-nav ms-auto">
<a class="nav-link" href="/about">ABOUT</a>
<div class="d-none">
<a class="nav-link" href="/login">LOGIN</a>
<a class="nav-link" href="/register">SIGN UP</a>
</div>
</div>
</div>
</div>
</nav>
<main class="container mt-2">
<div class="container d-flex justify-content-center align-items-center">
<div class="row mb-5 mt-md-3">
<div class="col-md-6 offset-md-3 col-xl-4 offset-xl-4">
<div class="card shadow">
<img src="https://pacific-ocean-76044.herokuapp.com/img/nathan-dumlao-r7uc-cqJy0Q-unsplash.jpg"
alt="coffee register image" class="card-img-top" />
<div class="card-body">
<div class="col">
<h5 class="card-title">PORTAFILTER</h5>
</div>
<p>Made for Fineshmaker Schmocks like you -
baristas who
are not behind bars.
With this tiny app you can track and follow your coffee making process to get the
best
results! </p>
<a href="https://pacific-ocean-76044.herokuapp.com/coffees/showall">
<button class="btn btn-secondary btn-block float-end">I'm in</button>
</a>
</p>
</div>
</div>
</div>
</div>
</div>
</main>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"
integrity="sha384-q2kxQ16AaE6UbzuKqyBE9/u/KzioAlnx2maXQHiDX9d4/zp8Ok3f+M7DPm+Ib6IU"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.min.js"
integrity="sha384-pQQkAEnwaBkjpqZ8RU1fF1AKtTcHJwFl3pblpTlHXybJjHpMYo79HY3hIi4NKxyj"
crossorigin="anonymous"></script>
<script src='app_pws.js'></script>
</body>
</html>