-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
242 lines (225 loc) · 9.14 KB
/
Copy pathindex.html
File metadata and controls
242 lines (225 loc) · 9.14 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BundleBag POC</title>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div class="page-shell">
<header class="hero">
<div class="hero-banner">
<img
class="hero-image"
src="./assets/hall-closet.jpg"
alt="BundleBag hero preview"
/>
<div class="hero-overlay">
<div class="hero-copy">
<p class="eyebrow">Proof of Concept</p>
<h1>Bundled</h1>
<h2>Sell one bag. Show what's inside. Let nearby buyers pick it up.</h2>
<h3 class="hero-text">
Bundled is a pickup-only marketplace for paper and plastic grocery
bags filled with surprise-but-documented items. Sellers photograph
all their items at once time, tag what's in the bag, then post a
minimum price or best offer.
</h3>
<div class="hero-pills">
<span>Pickup only</span>
<span>Photo-first listing flow</span>
<span>Search by tags, distance, price</span>
</div>
</div>
</div>
</div>
<div class="hero-summary">
<div class="summary-card">
<img class="summary-bag-icon" src="./assets/paper-bag.png" alt="" />
<p class="summary-label">Live listings nearby</p>
<p class="summary-value" id="listing-count">0</p>
<p class="summary-note">Updated from mock seller inventory</p>
</div>
<div class="summary-card">
<img class="summary-bag-icon" src="./assets/paper-bag.png" alt="" />
<p class="summary-label">Average ask</p>
<p class="summary-value" id="average-price">$0</p>
<p class="summary-note">Minimum price or best offer</p>
</div>
</div>
</header>
<nav class="view-switcher" aria-label="View switcher">
<button class="view-tab active" data-view="marketplace">Marketplace</button>
<button class="view-tab" data-view="management">Management</button>
</nav>
<main>
<section class="view-panel active" id="marketplace-view">
<div class="section-header">
<div>
<h2>Find a bag worth picking up</h2>
<p class="section-description">
Buyers can search by visible item tags, filter by distance, cost,
bag type, and offer style, then reserve a local pickup.
</p>
</div>
</div>
<div class="marketplace-layout">
<aside class="filter-panel">
<label class="field">
<span>Search items</span>
<input
id="search-input"
type="search"
placeholder="Try shoes, ornament, gloves, hat..."
/>
</label>
<label class="field">
<span>Item type</span>
<select id="item-type-filter">
<option value="all">All tags</option>
</select>
</label>
<label class="field">
<span>ZIP code</span>
<input
id="zip-filter"
type="text"
inputmode="numeric"
maxlength="5"
placeholder="Try 98103"
/>
</label>
<label class="field">
<span>Max distance</span>
<input id="distance-filter" type="range" min="1" max="25" value="15" />
<strong id="distance-value">15 miles</strong>
</label>
<label class="field">
<span>Max price</span>
<input id="price-filter" type="range" min="5" max="80" value="60" />
<strong id="price-value">$60</strong>
</label>
<div class="field">
<span>Bag type</span>
<div class="chip-row" id="bag-type-filter">
<button class="chip active" data-bag="all">All</button>
<button class="chip" data-bag="paper">Paper</button>
<button class="chip" data-bag="plastic">Plastic</button>
</div>
</div>
<div class="field">
<span>Offer style</span>
<div class="chip-row" id="offer-filter">
<button class="chip active" data-offer="all">All</button>
<button class="chip" data-offer="minimum">Minimum price</button>
<button class="chip" data-offer="best-offer">Best offer</button>
</div>
</div>
</aside>
<div class="results-panel">
<div class="results-toolbar">
<p id="results-count">0 bags</p>
<p class="results-note">Pickup windows shown on each listing card</p>
</div>
<div class="listing-grid" id="listing-grid"></div>
</div>
</div>
</section>
<section class="view-panel" id="management-view">
<div class="section-header">
<div>
<p class="section-kicker">Seller + admin management</p>
<h2>Keep the bag honest before it goes live</h2>
</div>
<p class="section-description">
The management side focuses on the listing workflow: item photos,
tags, pickup details, moderation status, and quick edits.
</p>
</div>
<div class="management-layout">
<section class="workflow-card">
<h3>Listing flow</h3>
<ol class="workflow-list">
<li>Photograph each item before bagging.</li>
<li>Tag the visible items so buyers can search confidently.</li>
<li>Choose paper or plastic bag, pickup area, and price style.</li>
<li>Submit for moderation before it appears in local search.</li>
</ol>
<div class="mock-form">
<div class="mock-dropzone">
<span>Drop photos here</span>
<p>Front-end concept for “all items photographed before bagging”</p>
</div>
<div class="tag-stack">
<span class="tag">shoes</span>
<span class="tag">hat</span>
<span class="tag">shirt</span>
<span class="tag">ornament</span>
<span class="tag">gloves</span>
<span class="tag">book</span>
</div>
</div>
</section>
<section class="console-card">
<div class="console-metrics" id="console-metrics"></div>
<div class="table-wrap">
<table>
<thead>
<tr>
<th>Listing</th>
<th>Status</th>
<th>Pickup</th>
<th>Price</th>
<th>Search tags</th>
</tr>
</thead>
<tbody id="management-table"></tbody>
</table>
</div>
</section>
</div>
<section class="detail-card">
<div class="detail-header">
<div>
<p class="section-kicker">Bag Detail</p>
<h3 id="detail-title">Select a listing</h3>
</div>
<span class="detail-status" id="detail-status">Waiting</span>
</div>
<div class="detail-layout">
<div class="detail-visuals">
<div class="detail-media-card">
<p class="meta-label">Bag exterior</p>
<img class="detail-primary-image" id="detail-exterior-image" alt="" />
</div>
<div class="detail-media-card">
<p class="meta-label">What's in the bag</p>
<div class="detail-square-mockup" id="detail-contents-mockup"></div>
</div>
</div>
<div class="detail-meta">
<div class="meta-block">
<p class="meta-label">Summary</p>
<p id="detail-summary">
Click any marketplace card or management row to inspect the
tags, pickup notes, and moderation state.
</p>
</div>
<div class="meta-block">
<p class="meta-label">Tagged contents</p>
<div class="tag-stack" id="detail-tags"></div>
</div>
<div class="meta-block">
<p class="meta-label">Pickup instructions</p>
<p id="detail-pickup"></p>
</div>
</div>
</div>
</section>
</section>
</main>
</div>
<script src="./app.js"></script>
</body>
</html>