-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
434 lines (371 loc) · 18.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/master.css">
<link rel="stylesheet" href="css/grid.css">
<link rel="stylesheet" href="css/homepage.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@400&display=swap">
<title>CLIQ Home</title>
<!-- add icon link -->
<link rel="icon" href="img/icons/cliqlogoplaceholderorange.png" type="image/x-icon">
</head>
<body>
<!-- shopping cart -->
<div id="cart-overlay" class="overlay hide">
<div class="grid-container">
<aside class="col-12 shopping-cart-container">
<div class="shopping-cart">
<div class="flex-row space-between">
<h3>Your Cart</h3>
<a class="flat-button" onclick="openCart(false)">
<img src="img/icons/x.svg" alt="close">
</a>
</div>
<img src="img/icons/orangeline.svg" alt="section divider">
<div class="cart-product-wrapper">
<div class="product hide">
<img src="img/products/cartkeycapthumbnail.png" alt="image of varity of microchip style clear resin artisan keycaps" class="product-thumbnail">
<div class="description">
<div>
<div class="flex-row space-between">
<h4>Clear Resin Keycap Set 0</h4>
<a class="flat-button" onclick="removeItem(0)">
<img src="img/icons/x.svg" alt="close">
</a>
</div>
<p>Microchip style clear resin artisan keycaps.</p>
</div>
<h4 class="orange-pricetag">$35</h4>
<h4>
<a class="flat-button small" onclick="changeItemCount(0,-1)">-</a>
<span class="item-count">1</span>
<a class="flat-button small" onclick="changeItemCount(0,+1)">+</a>
</h4>
</div>
</div>
<div class="product hide">
<img src="img/products/cartkeycapthumbnail.png" alt="image of varity of microchip style clear resin artisan keycaps" class="product-thumbnail">
<div class="description">
<div>
<div class="flex-row space-between">
<h4>Clear Resin Keycap Set 1</h4>
<a class="flat-button" onclick="removeItem(1)">
<img src="img/icons/x.svg" alt="close">
</a>
</div>
<p>Microchip style clear resin artisan keycaps.</p>
</div>
<h4 class="orange-pricetag">$35</h4>
<h4>
<a class="flat-button small" onclick="changeItemCount(1,-1)">-</a>
<span class="item-count">1</span>
<a class="flat-button small" onclick="changeItemCount(1,+1)">+</a>
</h4>
</div>
</div>
<div class="product hide">
<img src="img/products/cartkeycapthumbnail.png" alt="image of varity of microchip style clear resin artisan keycaps" class="product-thumbnail">
<div class="description">
<div>
<div class="flex-row space-between">
<h4>Clear Resin Keycap Set 2</h4>
<a class="flat-button" onclick="removeItem(2)">
<img src="img/icons/x.svg" alt="close">
</a>
</div>
<p>Microchip style clear resin artisan keycaps.</p>
</div>
<h4 class="orange-pricetag">$35</h4>
<h4>
<a class="flat-button small" onclick="changeItemCount(2,-1)">-</a>
<span class="item-count">1</span>
<a class="flat-button small" onclick="changeItemCount(2,+1)">+</a>
</h4>
</div>
</div>
</div>
<img src="img/icons/greyline.svg" alt="minor section divider">
<div class="subtotal">
<h4>Subtotal</h4>
<h4>$0.00</h4>
</div>
<div class="flex-row justify-content-center">
<a href="checkout/checkout-customer.html" class="secondary-btn default-btn">proceed to checkout</a>
</div>
</div>
</aside>
</div>
</div>
<!-- end of shopping cart -->
<div class="header-wrapper">
<header class="grid-container homepage-header">
<!-- entire nav menu wrapper -->
<nav class="col-12">
<!-- mobile nav menu container -->
<div class="mainnav-mobile">
<div class="logo-shoppingcart-menu">
<a href="index.html" class="logo">cliq</a>
<a href="#" class="mobileicon" onclick="toggleCart()">
<img src="img/icons/shopping-bagCliq2.png" alt="shopping bag icon">
</a>
<a class="mobileicon" id="menutoggle">
<img src="img/icons/mobilemenu.png" alt="mobile burger menu icon">
</a>
</div>
<div class="" id="menu">
<div class="burger">
<a href="product-list.html" class="navlink">shop</a>
<a href="build-guides.html" class="navlink">guides</a>
<a href="citations.html" class="navlink">citations</a>
<a href="patternlibraryhome.html" class="navlink">patterns</a>
</div>
<div class="mobile-searchbar">
<input type="text" name="text-input" placeholder="search" class="searchbar">
</div>
</div>
</div> <!-- end of mobile nav menu -->
<!-- main desktop nav -->
<div class="mainnav">
<a href="index.html" class="logo">cliq</a>
<a href="product-list.html" class="navlink">shop</a>
<a href="build-guides.html" class="navlink">guides</a>
<a href="citations.html" class="navlink">citations</a>
<a href="patternlibraryhome.html" class="navlink">patterns</a>
</div>
<div class="searchcart">
<input type="text" name="text-input" placeholder="search" class="searchbar">
<a href="#" onclick="toggleCart()">
<img src="img/icons/shopping-bagCliq2.png" alt="shopping bag icon" id="shoppingbagimg">
<span id="bag-item-count-desktop" class="orange-pricetag hide">0</span>
</a>
</div>
<!-- end of main desktop displayed nav -->
</nav>
</header>
</div>
<div class="beginning-of-page-gap"></div>
<!-- hero section with image, h1, blurb, etc -->
<div class="hero-container grid-container home-page">
<div class="content">
<!-- <p>Future home page of CLIQ, currently under construction. Pls navigate to 'patterns' for our pattern library :-D</p> -->
<h1>new resin artisan keycaps</h1>
<p id="mobile-hero-text">Get this keycap in your choice of five colours, all compatible with Cherry MX switches.</p>
<p id="desktop-hero-text">Styled like a microchip full of precious connections, it looks like something you’d find on a motherboard. Get this keycap in your choice of five colours, all compatible with Cherry MX switches.</p>
<div class="real-button-example">
<!-- <a href="#" class="primary-btn default-btn">shop now</a> -->
<a href="product-list.html" class="primary-btn default-btn">shop now</a>
</div>
</div>
</div>
<!-- about us section -->
<div class="black-box">
<div class="grid-container">
<section class="about-us col-10 start-col-2" id="about-us">
<h2>About Us</h2>
<p>We are an artisanal keyboard company that distributes key board components to new users trying to enter the artisanal keyboard industry. We provide quality parts and focus on the essential components that will have the most impact on the user experience of the keyboard.</p>
</section>
</div>
</div>
<!-- best sellers section -->
<section class="grid-container" id="best-sellers">
<div class="col-10 start-col-2">
<h2>Best Sellers</h2>
</div>
<!-- first best seller component -->
<!-- class="home-page product-content-wrap" -->
<div class="col-12 desktopbest-seller">
<!-- section with image on the left and description on right -->
<div class="imgleft-contentright">
<img src="img/products/cliqbestseller1.jpg" alt="canvas coloured keycap set image">
<div class="product-info">
<h3>Canvas Custom Keycap Set</h3>
<p>Designed by Mito (the brains behind Laser, Godspeed, and Pulse), this set is sculpted in XDA profile, which is similar to DSA with uniform height for maximum layout compatibility.</p>
<div class="real-button-example">
<a href="product-pages/product-detail-prod4.html" class="primary-btn default-btn">learn more</a>
</div>
</div>
</div>
</div> <!-- end of first best seller div -->
<!-- second best seller component -->
<div class="col-12 desktopbest-seller">
<div class="imgright-contentleft">
<div class="product-info">
<h3>Box 75 Keyboard</h3>
<p>The BOX 75 features a traditional top mount interior, with an exterior wrapped by an intricate series of interlocking frames that tilt and support the keyboard.</p>
<div class="real-button-example">
<a href="product-pages/product-detail.html" class="primary-btn default-btn">learn more</a>
</div>
</div>
<img src="img/products/cliqbestseller2.jpg" alt="box 75 white keyboard image">
</div>
</div> <!-- end of second best seller div component -->
<!-- third best seller component -->
<div class="col-12 desktopbest-seller">
<div class="imgleft-contentright">
<img src="img/products/backlitKeycaps2.jpg" alt="white backlit keycap set image">
<div class="product-info">
<h3>White Backlit Keycap Set</h3>
<p>These semitransparent backlit keycap sets are universally sought after by mechanical keyboard enthusiasts.</p>
<div class="real-button-example">
<a href="product-pages/product-detail-prod3.html" class="primary-btn default-btn">learn more</a>
</div>
</div>
</div>
</div> <!-- end of third best seller div component -->
<!-- mobile best seller section wrapper -->
<div class="mobilebest-seller mobile-product-cards">
<!-- mobile product card best seller 1 -->
<a href="product-pages/product-detail.html" class="sampleproductcard">
<img src="img/products/canvasKeycapsProductCard.png" alt="canvas coloured keycap set image">
<div class="product-info">
<div>
<p>CANVAS KEYCAPS</p>
<p class="light-color-text">In Stock</p>
</div>
<div>
<p class="orange-pricetag">$35</p>
</div>
</div>
</a> <!-- end of product card 1 -->
<!-- mobile product card best seller 2 -->
<a href="product-pages/product-detail.html" class="sampleproductcard">
<img src="img/products/lindesignWhiteProductCard.png" alt="white box75 lindesign keyboard image">
<div class="product-info">
<div>
<p>BOX75 KEYBOARD</p>
<p class="light-color-text">In Stock</p>
</div>
<div>
<p class="orange-pricetag">$150</p>
</div>
</div>
</a> <!-- end of product card 2 -->
<!-- mobile product card best seller 3 -->
<a href="product-pages/product-detail.html" class="sampleproductcard">
<img src="img/products/backlitKeycapsProductCard.png" alt="white backlit keycap set image">
<div class="product-info">
<div>
<p>BACKLIT KEYCAPS</p>
<p class="light-color-text">In Stock</p>
</div>
<div>
<p class="orange-pricetag">$22</p>
</div>
</div>
</a> <!-- end of mobile product card 3 -->
</div> <!-- end of mobile best seller wrapper div -->
</section> <!-- end of total best seller section -->
<!-- view all products section -->
<div class="grid-container">
<div class="view-all-section">
<div class="real-button-example">
<a href="product-list.html" class="secondary-btn default-btn">view all products</a>
</div>
</div>
</div>
<!-- guides section wrapper -->
<div class="guide-container-wrapper">
<div class="guide-container-2">
<div class="guide-graphic-row">
<div class="guide-graphic-deco neu-extrusion">Q</div>
<div class="guide-graphic-deco neu-extrusion">W</div>
<div class="guide-graphic-deco neu-extrusion">E</div>
<div class="guide-graphic-deco neu-extrusion">R</div>
<div class="guide-graphic-deco neu-extrusion">T</div>
<div class="guide-graphic-deco neu-extrusion">Y</div>
<div class="guide-graphic-deco neu-extrusion">U</div>
</div>
<div class="guide-graphic-row">
<div class="guide-graphic-deco neu-extrusion">A</div>
<div class="guide-graphic-deco neu-extrusion">S</div>
<a href="build-guides.html" class="guide-graphic-cta secondary-btn default-btn big-title">GUIDES ></a>
<div class="guide-graphic-deco neu-extrusion">H</div>
<div class="guide-graphic-deco neu-extrusion">J</div>
</div>
<div class="guide-graphic-row">
<div class="guide-graphic-deco neu-extrusion">Z</div>
<div class="guide-graphic-deco neu-extrusion">X</div>
<div class="guide-graphic-deco neu-extrusion">C</div>
<div class="guide-graphic-deco neu-extrusion">V</div>
<div class="guide-graphic-deco neu-extrusion">B</div>
<div class="guide-graphic-deco neu-extrusion">N</div>
<div class="guide-graphic-deco neu-extrusion">M</div>
</div>
</div>
</div>
<!-- end of guides -->
<footer>
<div class="grid-container">
<div class="footer-row col-12">
<div class="mailing-list">
<p class="footer-heading">JOIN OUR MAILING LIST</p>
<p>Info about upcoming releases, new arrivals and more!</p>
<input class="text-input-dark" placeholder="email address" type="text" name="text-input">
<a href="#" id="mail-arrow"><img src="img/icons/cliqchevron-right-white.svg" alt="white right arrow icon"></a>
</div>
<div class="company-info-wrapper">
<div class="company-contact company-list-info">
<p class="footer-heading">CLIQ</p>
<ul>
<li>
<a class="default-link" href="index.html#about">about us</a>
</li>
<li>
<a class="default-link" href="patternlibraryhome.html">styleguide</a>
</li>
<li>
<a class="default-link" href="https://github.com/jasonxuDrop/IAT-339-Ecommerce-Website" target="_blank">github</a>
</li>
<li>
<a class="default-link" href="citations.html">citation</a>
</li>
</ul>
</div>
<div class="faq-help company-list-info">
<p class="footer-heading">HELP</p>
<ul>
<li>
<a class="default-link" href="#">shipping</a>
</li>
<li>
<a class="default-link" href="#">returns</a>
</li>
</ul>
</div>
<div class="social-media-links">
<ul>
<li>
<a href="https://github.com/jasonxuDrop/IAT-339-Ecommerce-Website" target="_blank"><img src="img/icons/githubwhite.svg" alt="github white icon"></a>
</li>
<li>
<a href="#"><img src="img/icons/twitchwhite2.svg" alt="white twitch logo icon"></a>
</li>
<li>
<a href="#"><img src="img/icons/twitterwhite2.svg" alt="twitter icon"></a>
</li>
<li>
<a href="#"><img src="img/icons/instagramwhite.svg" alt="instagram white logo icon"></a>
</li>
</ul>
</div>
</div>
</div>
<div class="footer-row col-12">
<div class="logo-dark">
<a href="index.html">cliq</a>
</div>
<p class="secondary-textcopyright">© 2021 CLIQ All Rights Reserved.</p>
</div>
</div>
</footer>
<!-- link to js files -->
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
<script src="js/animate.js"></script>
<script src="js/tabhighlighting.js"></script>
<script src="js/mobilenav.js"></script>
<script src="js/cart-overlay.js"></script>
</body>
</html>