-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
417 lines (372 loc) · 13.1 KB
/
index.html
File metadata and controls
417 lines (372 loc) · 13.1 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=yes, viewport-fit=cover">
<title>BAROS · verifiable trust for local work</title>
<!-- Font Awesome for icons (free) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #ffffff;
color: #111111;
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
line-height: 1.5;
font-weight: 400;
-webkit-font-smoothing: antialiased;
}
.container {
max-width: 640px;
margin: 0 auto;
padding: 1.25rem 1.5rem;
}
section {
margin-bottom: 3.5rem;
}
h1, h2, h3 {
font-weight: 500;
letter-spacing: -0.02em;
}
h1 {
font-size: 2.8rem;
line-height: 1.15;
margin-bottom: 1.5rem;
font-weight: 600;
}
h2 {
font-size: 2rem;
margin-bottom: 1.5rem;
border-bottom: 1.5px solid #e0e0e0;
padding-bottom: 0.5rem;
}
h3 {
font-size: 1.35rem;
margin-bottom: 0.75rem;
font-weight: 500;
}
p {
margin-bottom: 1.25rem;
color: #2a2a2a;
}
.text-muted {
color: #5a5a5a;
font-size: 0.95rem;
}
.badge {
display: inline-block;
background: #111;
color: #fff;
padding: 0.2rem 0.7rem;
font-size: 0.8rem;
font-weight: 500;
letter-spacing: 0.02em;
border-radius: 20px;
margin-right: 0.5rem;
margin-bottom: 0.5rem;
}
.badge-light {
background: #eaeaea;
color: #111;
}
.grid-2 {
display: grid;
grid-template-columns: 1fr;
gap: 1.8rem;
}
@media (min-width: 480px) {
.grid-2 {
grid-template-columns: 1fr 1fr;
}
}
.card {
border: 1px solid #d4d4d4;
background: #fafafa;
padding: 1.5rem 1.2rem;
border-radius: 24px;
}
.feature-icon {
font-size: 2rem;
margin-bottom: 1rem;
color: #111;
}
.journey-step {
display: flex;
gap: 1rem;
margin-bottom: 1.5rem;
}
.step-number {
width: 2.2rem;
height: 2.2rem;
background: #111;
color: #fff;
border-radius: 30px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
flex-shrink: 0;
}
.step-content {
flex: 1;
}
.step-content p {
margin-bottom: 0.3rem;
}
.button {
display: inline-block;
background: #111;
color: #fff;
border: none;
padding: 0.9rem 2rem;
font-size: 1.1rem;
font-weight: 500;
border-radius: 40px;
text-decoration: none;
transition: background 0.2s;
border: 1px solid #111;
}
.button-outline {
background: transparent;
color: #111;
border: 1.5px solid #111;
}
.button-group {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 1.5rem;
}
table {
width: 100%;
border-collapse: collapse;
margin: 1.5rem 0;
}
th, td {
text-align: left;
padding: 0.75rem 0.25rem;
border-bottom: 1px solid #d0d0d0;
}
th {
font-weight: 600;
color: #111;
}
.logo {
font-size: 1.8rem;
font-weight: 600;
letter-spacing: -0.02em;
margin-bottom: 1.5rem;
}
.logo i {
margin-right: 6px;
}
hr {
border: none;
border-top: 1px solid #ddd;
}
@media (max-width: 400px) {
.container {
padding: 1rem 1.2rem;
}
h1 {
font-size: 2.3rem;
}
}
i {
margin-right: 6px;
}
/* hero detail styling */
.hero-detail {
display: flex;
flex-direction: column;
gap: 0.75rem;
margin: 1.5rem 0 0.5rem;
}
.hero-detail-item {
display: flex;
align-items: flex-start;
gap: 0.75rem;
}
.hero-detail-item i {
width: 1.5rem;
font-size: 1.2rem;
margin-top: 0.2rem;
color: #111;
}
</style>
</head>
<body>
<div class="container">
<!-- Header / Logo -->
<div class="logo">
<i class="fas fa-handshake"></i> BAROS
</div>
<!-- Hero — complete product explanation, no fluff -->
<section>
<h1>Verifiable trust for local work.</h1>
<p style="font-size: 1.2rem; font-weight: 400; color: #1e1e1e; margin-bottom: 1.8rem;">
A neighborhood marketplace where reputation is real and payments are guaranteed — without anyone needing to understand blockchain.
</p>
<div class="hero-detail">
<div class="hero-detail-item">
<i class="fas fa-users"></i>
<span><strong>Social vouching</strong> — Neighbors vouch for each other. Each vouch is a compressed NFT on Solana, creating portable, tamper‑proof reputation.</span>
</div>
<div class="hero-detail-item">
<i class="fas fa-id-card"></i>
<span><strong>Privacy‑preserving identity</strong> — Verify you're a real person with zero‑knowledge proofs. No ID data is ever exposed to the platform.</span>
</div>
<div class="hero-detail-item">
<i class="fas fa-lock"></i>
<span><strong>Smart contract escrow</strong> — Payment is held in a Solana program. Funds release only when the client confirms the job is done. Instant settlement.</span>
</div>
<div class="hero-detail-item">
<i class="fas fa-eye-slash"></i>
<span><strong>Invisible blockchain</strong> — Users pay with mobile money or card. Under the hood, everything settles in seconds on Solana for less than a cent.</span>
</div>
<div class="hero-detail-item">
<i class="fas fa-arrows-left-right"></i>
<span><strong>Everyone is both client and provider</strong> — Post a job, offer a service, apply for work, or hire someone. One account does it all.</span>
</div>
</div>
<!-- No waitlist / pilot buttons. Just honesty. -->
<p class="text-muted" style="margin-top: 2.5rem; border-left: 2px solid #aaa; padding-left: 1rem;">
BAROS is a Solana hackathon project. It demonstrates how local trust can be rebuilt with on‑chain reputation and escrow — no crypto UX required.
</p>
</section>
<!-- Problem -->
<section>
<h2>The trust gap</h2>
<div class="grid-2">
<div class="card">
<div class="feature-icon"><i class="fas fa-clock"></i></div>
<h3>Providers wait</h3>
<p>“I fixed a sink. She said she'd transfer. It's been 8 days. My children didn't eat.” <br>— Chinedu, plumber</p>
</div>
<div class="card">
<div class="feature-icon"><i class="fas fa-user-slash"></i></div>
<h3>Clients get burned</h3>
<p>“Paid ₦15,000 upfront. He vanished. Now I'm scared to trust anyone.” <br>— Amara, working mom</p>
</div>
</div>
<p class="text-muted" style="margin-top: 1rem;">Centralized platforms take a cut or hold funds hostage. We fix that.</p>
</section>
<!-- Solution: three layers -->
<section>
<h2>Three layers of trust</h2>
<div class="journey-step">
<div class="step-number">1</div>
<div class="step-content">
<h3>Social vouching <i class="fas fa-users"></i></h3>
<p>Neighbors, past clients, friends vouch for you. Real humans. No bots. Every vouch is an on‑chain compressed NFT — portable, verifiable reputation.</p>
</div>
</div>
<div class="journey-step">
<div class="step-number">2</div>
<div class="step-content">
<h3>Identity, not anonymity <i class="fas fa-id-card"></i></h3>
<p>Optional gov ID verification via zero‑knowledge proofs. You prove you're real without exposing your data. No ghosts.</p>
</div>
</div>
<div class="journey-step">
<div class="step-number">3</div>
<div class="step-content">
<h3>Escrow + QR release <i class="fas fa-lock"></i></h3>
<p>Money sits in a Solana smart contract. Client scans QR → funds release in seconds. Provider gets paid. No more “I'll transfer later.”</p>
</div>
</div>
<p class="text-muted"><i class="fas fa-eye-slash"></i> Blockchain is invisible. Users never see a wallet or seed phrase.</p>
</section>
<!-- User Journeys: dual role -->
<section>
<h2>Everyone plays both sides</h2>
<p>You can offer a service, request a service, post a job, or apply for one — all from the same account.</p>
<h3 style="margin-top: 2rem;">I need a service <span class="badge">client</span></h3>
<div class="journey-step">
<div class="step-number">1</div>
<div class="step-content"><strong>Post a job</strong> — describe, set price, location. Nearby providers see it.</div>
</div>
<div class="journey-step">
<div class="step-number">2</div>
<div class="step-content"><strong>Pick a provider</strong> — see trust score, vouches, verifiable work history.</div>
</div>
<div class="journey-step">
<div class="step-number">3</div>
<div class="step-content"><strong>Fund escrow</strong> — pay via mobile money or card. Money locked in smart contract.</div>
</div>
<div class="journey-step">
<div class="step-number">4</div>
<div class="step-content"><strong>Release & vouch</strong> — scan QR after job done. Funds release instantly. Leave a vouch (on-chain).</div>
</div>
<h3 style="margin-top: 2.5rem;">I offer a service <span class="badge badge-light">provider</span></h3>
<div class="journey-step">
<div class="step-number">1</div>
<div class="step-content"><strong>Create service listing</strong> — e.g., “Generator repair — Lekki — ₦15k”. Always discoverable.</div>
</div>
<div class="journey-step">
<div class="step-number">2</div>
<div class="step-content"><strong>Receive booking requests</strong> — clients find you via map/search, request a time.</div>
</div>
<div class="journey-step">
<div class="step-number">3</div>
<div class="step-content"><strong>Accept & complete</strong> — do the work. Client releases payment via QR.</div>
</div>
<div class="journey-step">
<div class="step-number">4</div>
<div class="step-content"><strong>Build reputation</strong> — each job adds to your on-chain trust score. Portable proof.</div>
</div>
<h3 style="margin-top: 2.5rem;">Apply for a posted job</h3>
<p>Browse open jobs in your neighborhood → apply with one tap. If selected, the escrow flow starts automatically.</p>
</section>
<!-- Features grid -->
<section>
<h2>Everything you need</h2>
<div class="grid-2">
<div><i class="fas fa-map-pin"></i> Neighborhood-first discovery</div>
<div><i class="fas fa-bolt"></i> Payouts under 5 min</div>
<div><i class="fas fa-shield"></i> Escrow protected</div>
<div><i class="fas fa-mobile-alt"></i> Works on weak network</div>
<div><i class="fas fa-exchange-alt"></i> Switch client/provider instantly</div>
<div><i class="fas fa-vote-yea"></i> Community dispute resolution</div>
</div>
</section>
<!-- Tech stack / invisible blockchain -->
<section>
<h2>Powered by Solana, hidden by design</h2>
<table>
<tr><th>Layer</th><th>Tech</th></tr>
<tr><td>Escrow</td><td>Anchor (Rust) smart contract</td></tr>
<tr><td>Reputation</td><td>Compressed NFTs (Metaplex)</td></tr>
<tr><td>Identity</td><td>Zero‑knowledge KYC (Civic)</td></tr>
<tr><td>Payments</td><td>MoonPay / Liquidity (fiat ↔ USDC)</td></tr>
</table>
<p class="text-muted"><i class="fas fa-tachometer-alt"></i> Solana gives us sub‑second finality, fees < $0.001 — affordable for any job.</p>
</section>
<!-- Business model -->
<section>
<h2>Fair, sustainable revenue</h2>
<div class="card" style="margin-bottom: 1rem;">
<h3><i class="fas fa-percent"></i> Transaction fee 5–12%</h3>
<p>Only on completed jobs. If provider doesn't get paid, we earn nothing. Aligned.</p>
</div>
<div class="card">
<h3><i class="fas fa-crown"></i> Provider subscriptions (optional)</h3>
<p>Pro: unlimited applications, higher visibility. Business: team dashboard, verified badge.</p>
</div>
</section>
<!-- Footer -->
<hr>
<footer style="display: flex; justify-content: space-between; padding: 1.5rem 0 2rem; color: #5a5a5a; font-size: 0.9rem;">
<span>© 2026 BAROS · Built for every neighborhood</span>
<span>
<a href="#" style="color: #111; text-decoration: none; margin-left: 1rem;">Terms</a>
<a href="#" style="color: #111; text-decoration: none; margin-left: 1rem;">Privacy</a>
</span>
</footer>
</div>
</body>
</html>