-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.html
482 lines (418 loc) · 23 KB
/
shop.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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shop</title>
<link rel="shortcut icon" href="static/images/sample-modified.png">
<!--=============== BOXICONS ===============-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css">
<!--=============== SWIPER CSS ===============-->
<link rel="stylesheet" href="static/css/swiper-bundle.min.css">
<!--=============== CSS ===============-->
<link rel="stylesheet" href="static/css/shop_styles.css">
</head>
<body>
<!--==================== HEADER ====================-->
<header class="header" id="header">
<nav class="nav container">
<div class="menu" onclick="openNav()">
<div class="hamburger"></div>
</div>
<a href="index.html" class="nav__logo" style="color: white;" data-notranslate>
<img class="gif" src="static/images/sample_gif.gif" alt="Well gif">
Well
</a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item">
<a href="#home" class="nav__link active-link">New</a>
</li>
<li class="nav__item">
<a href="#arrivals" class="nav__link">Arrivals</a>
</li>
<li class="nav__item">
<a href="#story" class="nav__link">Story</a>
</li>
<li class="nav__item">
<a href="#realproducts" class="nav__link">Real products</a>
</li>
<li class="nav__item">
<a href="#vrproducts" class="nav__link">Virtual products</a>
</li>
<li class="nav__item">
<a href="#reviews" class="nav__link">Reviews</a>
</li>
</ul>
<!--==================== MENU ====================-->
<div id="nav_bar" class="nav-overlay">
<div class="nav-overlay-content">
<p class="nav_description">
© World Envie Land Legacy - WELL
</p>
<a href="log.html">Log in</a>
<a href="index.html">Home</a>
<a href="shop.html">Shop</a>
<a href="design.html">Customize</a>
<a href="contact.html">Contact</a>
<a href="about_us.html">About us</a>
<!--<a href="#">Clients</a>-->
</div>
</div>
<div class="slide-control"></div>
<div class="nav__close" id="nav-close">
<i class='bx bx-x' ></i>
</div>
</div>
<div class="nav__btns">
<div class="nav__shop" id="cart-shop">
<i class='bx bx-cart-alt' ></i>
</div>
</div>
</nav>
</header>
<!--==================== CART ====================-->
<div class="cart" id="cart">
<i class='bx bx-x cart__close' id="cart-close"></i>
<h2 class="cart__title-center">My Cart</h2>
<div class="cart__container" id="cart-items"></div>
<div class="cart__prices">
<span class="cart__prices-item" id="nbitems"></span>
<span class="cart__prices-total" id="total"></span>
<button id="checkout-btn" disabled>Checkout</button>
<div id="message">
Thanks for buying! <br> <hr>
⏳ You have officially purchased your item(s) in real life. The process of transferring the property of the NFT copy
started right now. <br>
<hr>
We hope to see you soon 💙
</div>
</div>
</div>
<!--==================== MAIN ====================-->
<main class="main">
<!--==================== HOME ====================-->
<section class="home" id="home">
<div class="home__container container grid">
<div class="home__img-bg">
<img src="static/images/shirt2.jpg" alt="" class="home__img">
</div>
<div class="home__data">
<h1 class="home__title">NEW T-SHIRT <br> COLLECTIONS</h1>
<p class="home__description">
Latest arrival of the new t-shirts,
with a modern and eco-responsible design.
</p>
<span class="home__price">45€</span>
<div class="home__btns">
<a href="#arrivals" class="button button--gray button--small">
Discover
</a>
<button class="button home__button">This cool design</button>
</div>
</div>
</div>
</section>
<!--==================== ARRIVALS ====================-->
<section class="new section container" id="arrivals">
<h2 class="section__title">
Arrivals
</h2>
<div class="arrivals__container grid">
<article class="new__card" id="new1">
<p class="new__tag">New</p>
<img src="static/images/shirt2.jpg" alt="" class="new__img">
<div class="new__data">
<h3 class="new__title">Longines rose</h3>
<span class="new__price">32€</span>
</div>
<button class="button new__button" onclick="addToCart('new1')">ADD TO CART</button>
</article>
<article class="new__card" id="new0">
<p class="new__tag">New</p>
<img src="static/images/shirtwell1.jpg" alt="" class="new__img">
<div class="new__data">
<h3 class="new__title">Well prot</h3>
<span class="new__price">28€</span>
</div>
<button class="button new__button" onclick="addToCart('new0')">ADD TO CART</button>
</article>
<article class="new__card" id="new2">
<p class="new__tag">New</p>
<img src="static/images/shirt3.jpg" alt="" class="new__img">
<div class="new__data">
<h3 class="new__title">Longines green</h3>
<span class="new__price">20€</span>
</div>
<button class="button new__button" onclick="addToCart('new2')">ADD TO CART</button>
</article>
<article class="new__card" id="new3">
<p class="new__tag">New</p>
<img src="static/images/shirt0.jpg" alt="" class="new__img">
<div class="new__data">
<h3 class="new__title">Bougacha</h3>
<span class="new__price">30€</span>
</div>
<button class="button new__button" onclick="addToCart('new3')">ADD TO CART</button>
</article>
</div>
</section>
<!--==================== STORY ====================-->
<section class="story section container" id="story">
<div class="story__container grid">
<div class="story__data">
<h2 class="section__title story__section-title">
Our Story
</h2>
<h1 class="story__title">
Inspirational product of <br> this month
</h1>
<p class="story__description">
The latest and modern product of this month is available in various
presentations in our store, discover them now.
</p>
<a href="#" class="button button--small">Discover</a>
</div>
<div class="story__images">
<img src="static/images/shirt3.jpg" alt="" class="story__img">
<div class="story__square"></div>
</div>
</div>
</section>
<!--==================== REAL PRODUCTS ====================-->
<section class="products section container" id="realproducts">
<h2 class="section__title">
Real Products
</h2>
<div class="products__container grid">
<article class="products__card" id="prod1">
<img src="static/images/shirt2.jpg" alt="" class="products__img">
<h3 class="products__title">Spirit rose</h3>
<span class="products__price">15€</span>
<button class="products__button" onclick="addToCart('prod1')">
<i class='bx bx-shopping-bag'></i>
</button>
</article>
<article class="products__card" id="prod2">
<img src="static/images/shirt3.jpg" alt="" class="products__img">
<h3 class="products__title">Khaki pilot</h3>
<span class="products__price">17.5€</span>
<button class="products__button" onclick="addToCart('prod2')">
<i class='bx bx-shopping-bag'></i>
</button>
</article>
<article class="products__card" id="prod3">
<img src="static/images/shirtwell.jpg" alt="" class="products__img">
<h3 class="products__title">Jubilee black</h3>
<span class="products__price">29€</span>
<button class="products__button" onclick="addToCart('prod3')">
<i class='bx bx-shopping-bag'></i>
</button>
</article>
<article class="products__card" id="prod4">
<img src="static/images/shirt2.jpg" alt="" class="products__img">
<h3 class="products__title">Fosil me</h3>
<span class="products__price">24€</span>
<button class="products__button" onclick="addToCart('prod4')">
<i class='bx bx-shopping-bag'></i>
</button>
</article>
</div>
</section>
<!--==================== VIRTUAL PRODUCTS ====================-->
<section class="products section container" id="vrproducts">
<h2 class="section__title">
Virtual products
</h2>
<nft-card
contractAddress="0x495f947276749ce646f68ac8c248420045cb7b5e"
tokenId="50528335171288174310628297460306652986937045035279916159492383688701587226634"></nft-card>
<script src="https://unpkg.com/embeddable-nfts/dist/nft-card.min.js"></script>
<nft-card
contractAddress="0x495f947276749ce646f68ac8c248420045cb7b5e"
tokenId="50528335171288174310628297460306652986937045035279916159492383684303540715521"></nft-card>
<script src="https://unpkg.com/embeddable-nfts/dist/nft-card.min.js"></script>
</section>
<!--==================== TESTIMONIAL ====================-->
<section class="testimonial section container" id="reviews">
<div class="testimonial__container grid">
<div class="swiper testimonial-swiper">
<div class="swiper-wrapper">
<div class="testimonial__card swiper-slide">
<div class="testimonial__quote">
<i class='bx bxs-quote-alt-left' ></i>
</div>
<p class="testimonial__description">
They are the best t-shirts that one acquires, also they are always with the latest
news and trends, with a very comfortable price and especially with the attention
you receive, they are always attentive to your questions.
</p>
<h3 class="testimonial__date">March 27. 2022</h3>
<div class="testimonial__perfil">
<img src="static/images/testimonial1.jpg" alt="" class="testimonial__perfil-img">
<div class="testimonial__perfil-data">
<span class="testimonial__perfil-name">Lee Doe</span>
<span class="testimonial__perfil-detail">Director of a company</span>
</div>
</div>
</div>
<div class="testimonial__card swiper-slide">
<div class="testimonial__quote">
<i class='bx bxs-quote-alt-left' ></i>
</div>
<p class="testimonial__description">
They are the best t-shirts that one acquires, also they are always with the latest
news and trends, with a very comfortable price and especially with the attention
you receive, they are always attentive to your questions.
</p>
<h3 class="testimonial__date">March 27. 2022</h3>
<div class="testimonial__perfil">
<img src="static/images/testimonial2.jpg" alt="" class="testimonial__perfil-img">
<div class="testimonial__perfil-data">
<span class="testimonial__perfil-name">Samantha Mey</span>
<span class="testimonial__perfil-detail">Director of a company</span>
</div>
</div>
</div>
<div class="testimonial__card swiper-slide">
<div class="testimonial__quote">
<i class='bx bxs-quote-alt-left' ></i>
</div>
<p class="testimonial__description">
They are the best t-shirts that one acquires, also they are always with the latest
news and trends, with a very comfortable price and especially with the attention
you receive, they are always attentive to your questions.
</p>
<h3 class="testimonial__date">March 27. 2022</h3>
<div class="testimonial__perfil">
<img src="static/images/testimonial3.jpg" alt="" class="testimonial__perfil-img">
<div class="testimonial__perfil-data">
<span class="testimonial__perfil-name">Raul Zaman</span>
<span class="testimonial__perfil-detail">Director of a company</span>
</div>
</div>
</div>
</div>
<div class="swiper-button-next">
<i class='bx bx-right-arrow-alt' ></i>
</div>
<div class="swiper-button-prev">
<i class='bx bx-left-arrow-alt' ></i>
</div>
</div>
<div class="testimonial__images">
<div class="testimonial__square"></div>
<img src="static/images/shirt2.jpg" alt="" class="testimonial__img">
</div>
</div>
</section>
<!--==================== PARTNERS ====================-->
<section class="part-section" id="partners">
<h2 class="section__title">
Acknowledgment
</h2>
<div class="part-list">
<article>
<h1>A word of praise to our dear partners.</h1>
<p>
A huge thank you to everyone <br>
who contributed to making it possible.
</p>
</article>
<div class="partners">
<div class="partner">
<div class="partner-logo">
<a href="https://meetupparis.com" target="_blank"><img class="meetup" src="static/images/meet_up1.png" alt="meet_up"></a>
</div>
</div>
<div class="partner">
<div class="partner-logo">
<a href="https://neutral-it.com" target="_blank"><img class="neutralit" src="static/images/neutral_it.png" alt="neutral_it"></a>
</div>
</div>
</div>
</div>
</section>
</main>
<!--==================== FOOTER ====================-->
<footer class="footer section">
<div class="footer__container container grid">
<div class="footer__content">
<h3 class="footer__title">Our information</h3>
<ul class="footer__list">
<li>France</li>
<li>Brest, Bretagne - 29200</li>
<li>+33745660139</li>
<li><a href = "mailto: [email protected]">Email: [email protected]</a></li>
</ul>
</div>
<div class="footer__content">
<h3 class="footer__title">Our sections</h3>
<ul class="footer__links">
<li>
<a href="index.html" class="footer__link">Home</a>
</li>
<li>
<a href="shop.html" class="footer__link">Shop</a>
</li>
<li>
<a href="design.html" class="footer__link">Customize</a>
</li>
<li>
<a href="contact.html" class="footer__link">Contact</a>
</li>
</ul>
</div>
<div class="footer__content">
<h3 class="footer__title">About WELL</h3>
<ul class="footer__links">
<li>
<a href="about_us.html" class="footer__link">Story</a>
</li>
<li>
<a href="about_us.html#serv" class="footer__link">Services</a>
</li>
<li>
<a href="about_us.html#spec" class="footer__link">Speciality</a>
</li>
<li>
<a href="about_us.html#team" class="footer__link">Team</a>
</li>
</ul>
</div>
<div class="footer__content">
<h3 class="footer__title">Social</h3>
<ul class="footer__social">
<a href="https://www.linkedin.com/company/well-clothing" target="_blank" class="footer__social-link">
<i class='bx bxl-linkedin-square' ></i>
</a>
<a href="https://opensea.io/well_clothing">
<img src="https://storage.googleapis.com/opensea-static/Logomark/Logomark-Transparent%20White.png" alt="">
</a>
<a href="https://www.facebook.com/" target="_blank" class="footer__social-link">
<i class='bx bxl-facebook-circle'></i>
</a>
<a href="https://www.instagram.com/well__clothing" target="_blank" class="footer__social-link">
<i class='bx bxl-instagram-alt' ></i>
</a>
<a href="https://www.tiktok.com/@well_clothing" target="_blank" class="footer__social-link">
<i class='bx bxl-tiktok' ></i>
</a>
<a href="https://www.youtube.com/channel/UC2A63lx49-pb7hrtDx2YtoA" target="_blank" class="footer__social-link">
<i class='bx bxl-youtube' ></i>
</a>
</ul>
</div>
</div>
<span class="footer__copy">© 2023 All rigths reserved, Word-Envie-Land-Legacy with 💙</span>
</footer>
<!--=============== SCROLL UP ===============-->
<a href="#" class="scrollup" id="scroll-up">
<i class='bx bx-up-arrow-alt scrollup__icon' ></i>
</a>
<!--=============== SWIPER JS ===============-->
<script src="static/js/swiper-bundle.min.js"></script>
<!--=============== MAIN JS ===============-->
<script src="static/js/shop.js"></script>
</body>
</html>