-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.html
More file actions
153 lines (117 loc) · 5.41 KB
/
Copy pathbuild.html
File metadata and controls
153 lines (117 loc) · 5.41 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Build your own custom 12-pack of BIKFAM stickers. Mix and match designs and colors.">
<title>Custom Pack — BIKFAM Stickers</title>
<!-- Google Fonts -->
<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=Bangers&family=Permanent+Marker&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="images/favicon.png" type="image/png">
</head>
<body data-page="builder">
<!-- ======== HEADER ======== -->
<header class="site-header">
<div class="header-inner">
<a href="/" class="logo">
<span class="logo-red">BIK</span>FAM
</a>
<button class="menu-toggle" aria-label="Toggle menu">☰</button>
<nav class="nav-links">
<a href="/">Home</a>
<a href="/shop">Shop</a>
<a href="/build" class="active">Custom Pack</a>
<a href="/cart" class="cart-link">
Cart
<span class="cart-count">0</span>
</a>
</nav>
</div>
</header>
<!-- ======== MAIN CONTENT ======== -->
<main class="main-content">
<div class="container">
<!-- PAGE HEADER -->
<div class="section-header">
<h1 class="section-title">Build Your Pack</h1>
<p class="subheading">Pick any 12 stickers to create your custom pack</p>
</div>
<!-- ============================================================
BUILDER LAYOUT
============================================================
Two-column layout:
LEFT: Grid of all available stickers
RIGHT: Sidebar showing progress and selected items -->
<div class="builder-layout">
<!-- ======== STICKER GRID (LEFT) ======== -->
<div class="sticker-grid">
<!-- Stickers will be inserted here by build.js -->
</div>
<aside class="builder-sidebar">
<h3>Your Pack</h3>
<div class="progress-bar">
<div class="progress-fill" style="width: 0%;"></div>
</div>
<div class="progress-text">
<span class="count">0/12</span> selected
</div>
<div class="selected-list">
<div class="builder-empty">
<div class="empty-icon">🖍️</div>
<p>Click on stickers above to build your pack!</p>
</div>
</div>
<button class="btn btn-primary btn-lg btn-add-custom-pack"
style="width: 100%; margin-top: var(--space-md);"
disabled>
Select Your Stickers
</button>
</aside>
</div>
</div>
</main>
<!-- ======== FOOTER ======== -->
<footer class="site-footer">
<div class="container">
<div class="footer-grid">
<div>
<div class="footer-brand">
<span class="brand-red">BIK</span>FAM
</div>
<p class="footer-description">
Official sticker shop for the CJBIK YouTube channel.
Ride wild, rep the fam.
</p>
</div>
<div>
<h4 class="footer-heading">Shop</h4>
<ul class="footer-links">
<li><a href="/shop">Pre-Made Packs</a></li>
<li><a href="/build">Custom 12-Pack</a></li>
<li><a href="/cart">Cart</a></li>
</ul>
</div>
<div>
<h4 class="footer-heading">Info</h4>
<ul class="footer-links">
<li><a href="/faq#shipping">Shipping Info</a></li>
<li><a href="mailto:Cjsbikpro@gmail.com">Contact</a></li>
<li><a href="/faq">FAQ</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 BIKFAM / CJBIK. All rights reserved.</p>
</div>
</div>
</footer>
<!-- ======== JAVASCRIPT ======== -->
<!-- Order matters: main.js first (it has the shared cart functions),
then build.js (which uses those functions) -->
<script src="js/main.js"></script>
<script src="js/build.js"></script>
</body>
</html>