-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (48 loc) · 1.79 KB
/
index.html
File metadata and controls
63 lines (48 loc) · 1.79 KB
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
<!DOCTYPE html>
<html>
<head>
<title>SHANK E-commerce Store</title>
<link rel="stylesheet" href="style.css">
<script src="https://unpkg.com/@studio-freight/lenis@1.0.42/dist/lenis.min.js"></script>
</head>
<body>
<nav class="navbar">
<div class="logo">SHANK</div>
<ul class="nav-links">
<li><a href="#">Home</a></li>
<li><a href="#product-container">Shop</a></li>
<li><a href="#cart-section">Cart (<span id="cart-count-nav">0</span>)</a></li>
</ul>
</nav>
<section class="hero">
<div class="hero-content">
<span class="hero-tag">LIMITED EDITION</span>
<h1 class="hero-title">
RACE YOUR <span>STYLE</span>
</h1>
<p class="hero-subtitle">
Premium motorsport helmets inspired by racing legends
</p>
<button class="hero-btn">Shop Collection</button>
</div>
</section>
<section id="product-container" class="products">
<!-- Products will be loaded by products.js -->
</section>
<section class="cart-section">
<h2>Your Cart</h2>
<p>Items: <span id="cart-count">0</span></p>
<p>Total: ₹ <span id="cart-total">0</span></p>
<ul id="cart-list"></ul>
<button id="clear-cart">Clear Cart</button>
<a href="checkout.html">
<button>Proceed to Checkout</button>
</a>
</section>
<script src="https://unpkg.com/gsap@3/dist/gsap.min.js"></script>
<script src="https://unpkg.com/gsap@3/dist/ScrollTrigger.min.js"></script>
<script src="products.js"></script>
<script src="script.js"></script>
<script type="module" src="three-bg.js"></script>
</body>
</html>