-
Notifications
You must be signed in to change notification settings - Fork 0
/
restaurant.html
381 lines (330 loc) · 13.5 KB
/
restaurant.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OmniFoods</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Rokkitt:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<main>
<header class="header">
<!-- logo -->
<a>
<img class="logo" src="assets/img/omnifood-logo.png" alt="" />
</a>
<!-- nav -->
<nav class="main-nav">
<ul class="main-nav-list">
<li>
<a href="#" class="main-nav-link">How it works</a>
</li>
<li>
<a href="#" class="main-nav-link">Meals</a>
</li>
<li>
<a href="#" class="main-nav-link">Testimonials</a>
</li>
<li>
<a href="#" class="main-nav-link">Pricing</a>
</li>
<li>
<a href="#" class="main-nav-link nav-cta">Try For Free</a>
</li>
</ul>
</nav>
</header>
<section class="hero-section">
<div class="hero">
<div class="hero-text-box">
<h1 class="heading-primary">
A healthy meal delivered to your door, every single day
</h1>
<p class="hero-description">
The smart 365-days-per-year food subscription that will make you
eat healthy again. Tailored to your personal tastes and
nutritional needs. We have delivered 250,000+ meals last year!
</p>
<a href="#cta" class="btn btn--full margin-right-sm"
>Start eating well</a
>
<a href="#how" class="btn btn--outline">Learn more ↓</a>
<div class="delivered-meals">
<div class="delivered-imgs">
<img src="assets/img/customers/customer-1.jpg" alt="" />
<img src="assets/img/customers/customer-2.jpg" alt="" />
<img src="assets/img/customers/customer-3.jpg" alt="" />
<img src="assets/img/customers/customer-4.jpg" alt="" />
<img src="assets/img/customers/customer-5.jpg" alt="" />
<img src="assets/img/customers/customer-6.jpg" alt="" />
</div>
<p class="delivered-text">
<span>250,000+</span> meals delivered last year!
</p>
</div>
</div>
<div class="hero-img-box">
<img src="assets/img/hero-min.png" alt="" class="hero-img" />
</div>
</div>
</section>
<!-- As featured in -->
<section class="section-featured">
<div class="container">
<h4 class="heading-featured-in">As Featured In</h4>
<div class="logos">
<img src="assets/img/logos/techcrunch.png" alt="">
<img src="assets/img/logos/business-insider.png" alt="">
<img src="assets/img/logos/the-new-york-times.png" alt="">
<img src="assets/img/logos/forbes.png" alt="">
<img src="assets/img/logos/usa-today.png" alt="">
</div>
</div>
</section>
<!-- How it works section -->
<section class="section-how">
<div class="container">
<h4 class="heading-how-it-works">HOW IT WORKS
</h4>
<h2 class="heading-secondary">Your daily dose of health in 3 simple steps
</h2>
</div>
<div class="container grid-how-it-works">
<!-- step01 -->
<div class="step-text-box">
<p class="step-number">01</p>
<h3 class="heading-tertiary">
Tell us what you like (and what not)
</h3>
<p class="step-description">
Never again waste time thinking about what to eat! Omnifood AI will create a 100% personalized weekly meal plan just for you. It makes sure you get all the nutrients and vitamins you need, no matter what diet you follow!
</p>
</div>
<div class="step-img-box">
<img src="assets/img/app/app-screen-1.png" class="step-img" alt="">
<div class="inner-circle"></div>
<div class="outer-circle"></div>
</div>
<div class="step-img-box">
<img src="assets/img/app/app-screen-2.png" class="step-img" alt="">
<div class="inner-circle"></div>
<div class="outer-circle"></div>
</div>
<div class="step-text-box">
<p class="step-number">02</p>
<h3 class="heading-tertiary">
Approve your weekly meal plan
</h3>
<p class="step-description">
Once per week, approve the meal plan generated for you by Omnifood AI. You can change ingredients, swap entire meals, or even add your own recipes.
</p>
</div>
<div class="step-text-box">
<p class="step-number">03</p>
<h3 class="heading-tertiary">
Receive meals at convenient time
</h3>
<p class="step-description">
Best chefs in town will cook your selected meal every day, and we will deliver it to your door whenever works best for you. You can change delivery schedule and address daily!
</p>
</div>
<div class="step-img-box">
<img src="assets/img/app/app-screen-3.png" class="step-img" alt="">
<div class="inner-circle"></div>
<div class="outer-circle"></div>
</div>
</div>
</section>
<!-- section testimonials -->
<section class="section-testimonials" id="testimonials">
<div class="testimonials-container">
<span class="subheading">Testimonials</span>
<h2 class="heading-secondary">Once you try it, you can't go back</h2>
<div class="testimonials">
<figure class="testimonial">
<img
class="testimonial-img"
src="assets/img/customers/dave.jpg"
alt="Photo of customer Dave Bryson"
/>
<blockquote class="testimonial-text">
Inexpensive, healthy and great-tasting meals, without even
having to order manually! It feels truly magical.
</blockquote>
<p class="testimonial-name">— Dave Bryson</p>
</figure>
<figure class="testimonial">
<img
class="testimonial-img"
src="assets/img/customers/ben.jpg"
alt="Photo of customer Ben Hadley"
/>
<blockquote class="testimonial-text">
The AI algorithm is crazy good, it chooses the right meals for
me every time. It's amazing not to worry about food anymore!
</blockquote>
<p class="testimonial-name">— Ben Hadley</p>
</figure>
<figure class="testimonial">
<img
class="testimonial-img"
src="assets/img/customers/steve.jpg"
alt="Photo of customer Steve Miller"
/>
<blockquote class="testimonial-text">
Omnifood is a life saver! I just started a company, so there's
no time for cooking. I couldn't live without my daily meals now!
</blockquote>
<p class="testimonial-name">— Steve Miller</p>
</figure>
<figure class="testimonial">
<img
class="testimonial-img"
src="assets/img/customers/hannah.jpg"
alt="Photo of customer Hannah Smith"
/>
<blockquote class="testimonial-text">
I got Omnifood for the whole family, and it frees up so much
time! Plus, everything is organic and vegan and without plastic.
</blockquote>
<p class="testimonial-name">— Hannah Smith</p>
</figure>
</div>
</div>
<div class="gallery">
<figure class="gallery-item">
<img
src="assets/img/gallery/gallery-1.jpg"
alt="Photo of beautifully arranged food"
/>
</figure>
<figure class="gallery-item">
<img
src="assets/img/gallery/gallery-2.jpg"
alt="Photo of beautifully arranged food"
/>
</figure>
<figure class="gallery-item">
<img
src="assets/img/gallery/gallery-3.jpg"
alt="Photo of beautifully arranged food"
/>
</figure>
<figure class="gallery-item">
<img
src="assets/img/gallery/gallery-4.jpg"
alt="Photo of beautifully arranged food"
/>
</figure>
<figure class="gallery-item">
<img
src="assets/img/gallery/gallery-5.jpg"
alt="Photo of beautifully arranged food"
/>
</figure>
<figure class="gallery-item">
<img
src="assets/img/gallery/gallery-6.jpg"
alt="Photo of beautifully arranged food"
/>
</figure>
<figure class="gallery-item">
<img
src="assets/img/gallery/gallery-7.jpg"
alt="Photo of beautifully arranged food"
/>
</figure>
<figure class="gallery-item">
<img
src="assets/img/gallery/gallery-8.jpg"
alt="Photo of beautifully arranged food"
/>
</figure>
<figure class="gallery-item">
<img
src="assets/img/gallery/gallery-9.jpg"
alt="Photo of beautifully arranged food"
/>
</figure>
<figure class="gallery-item">
<img
src="assets/img/gallery/gallery-10.jpg"
alt="Photo of beautifully arranged food"
/>
</figure>
<figure class="gallery-item">
<img
src="assets/img/gallery/gallery-11.jpg"
alt="Photo of beautifully arranged food"
/>
</figure>
<figure class="gallery-item">
<img
src="assets/img/gallery/gallery-12.jpg"
alt="Photo of beautifully arranged food"
/>
</figure>
</div>
</section>
<!-- CAll to action form section -->
<section class="section-cta">
<div class="container">
<div class="cta">
<div class="cta-text-box">
<h2 class="heading-secondary-cta">Get your first meal for free!</h2>
<p class="cta-text">
Healthy, tasty and hassle-free meals are waiting for you. Start
eating well today. You can cancel or pause anytime. And the
first meal is on us!
</p>
<form class="cta-form" name="sign-up" netlify>
<div>
<label for="full-name">Full Name</label>
<input
id="full-name"
type="text"
placeholder="John Smith" name="full-name"
required
/>
</div>
<div>
<label for="email">Email address</label>
<input
id="email"
type="email"
placeholder="[email protected]"
name="email"
required
/>
</div>
<div>
<label for="select-where">Where did you here from us?</label>
<select id="select-where" name="select-where" required>
<option value="">Please choose one option:</option>
<option value="friends">Friends & family</option>
<option value="youtube">Youtube</option>
<option value="podcast">Podacast</option>
<option value="ad">Facebook ad</option>
<option value="others">Others</option>
</select>
</div>
<button class="btn btn--form" action="#">Sign up now</button>
</form>
</div>
<div class="cta-img-box">
</div>
</div>
</div>
</section>
<!-- <div class="hover-demo">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sapiente iusto accusamus at eligendi aliquam, nesciunt expedita hic, dolor rerum adipisci in, soluta dolores a nam. Enim nihil vero pariatur illum!</p>
</div> -->
</main>
</body>
</html>