-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkforce.html
More file actions
258 lines (234 loc) · 14.9 KB
/
Copy pathworkforce.html
File metadata and controls
258 lines (234 loc) · 14.9 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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Join the Workforce | SimplyCodes Truth Engine</title>
<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=Figtree:ital,wght@0,300..900;1,300..900&family=JetBrains+Mono:wght@400;500;700&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
sc: {
black: '#070707',
surface: '#111111',
border: '#222222',
neon: '#86FC4F',
text: '#E5E5E5',
muted: '#737373'
}
},
fontFamily: {
sans: ['Figtree', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
}
}
}
}
</script>
<style>
.neon-glow { box-shadow: 0 0 20px rgba(134, 252, 79, 0.15); }
.glass-panel { background: rgba(17, 17, 17, 0.7); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.08); }
</style>
</head>
<body class="bg-sc-black text-sc-text font-sans antialiased selection:bg-sc-neon selection:text-black">
<nav class="fixed top-0 w-full z-50 border-b border-sc-border bg-sc-black/90 backdrop-blur-md">
<div class="max-w-7xl mx-auto px-6 h-16 flex items-center justify-between">
<div class="flex items-center gap-8">
<a href="index.html" class="flex items-center gap-2 group">
<div class="w-6 h-6 rounded bg-sc-neon flex items-center justify-center text-black font-bold text-lg group-hover:neon-glow transition-all">S</div>
<span class="font-bold tracking-tight text-white">SimplyCodes</span>
</a>
<div class="hidden md:flex items-center gap-6 text-sm font-medium text-sc-muted">
<a href="live.html" class="hover:text-white transition-colors">Live Ledger</a>
<a href="truth.html" class="hover:text-white transition-colors">Methodology</a>
</div>
</div>
<div class="flex items-center gap-4">
<a href="api.html" class="hidden md:block text-sm font-mono text-sc-muted hover:text-white transition-colors">For Agents API</a>
<a href="#" class="text-sm font-medium hover:text-white transition-colors">Log In</a>
<a href="extension.html" class="bg-white text-black px-4 py-2 rounded-full text-sm font-bold hover:bg-sc-neon hover:neon-glow transition-all duration-300">
Get Extension
</a>
</div>
</div>
</nav>
<header class="pt-32 pb-24 px-6 relative overflow-hidden">
<div class="absolute right-0 top-1/2 -translate-y-1/2 w-[500px] h-[500px] border border-sc-neon rounded-full opacity-5 pointer-events-none"></div>
<div class="absolute right-0 top-1/2 -translate-y-1/2 w-[300px] h-[300px] border border-sc-neon rounded-full opacity-10 pointer-events-none"></div>
<div class="max-w-4xl mx-auto relative z-10">
<div class="inline-flex items-center gap-2 px-3 py-1 rounded bg-sc-black border border-sc-border text-xs font-mono text-sc-neon mb-8">
<span class="w-2 h-2 rounded-full bg-sc-neon animate-pulse-slow"></span>
HIRING: GLOBAL VALIDATORS
</div>
<h1 class="text-5xl md:text-7xl font-bold text-white tracking-tight mb-8">
Turn Accuracy<br>
<span class="text-transparent bg-clip-text bg-gradient-to-r from-sc-neon to-white">Into Income.</span>
</h1>
<p class="text-xl text-sc-muted leading-relaxed max-w-2xl mb-12">
AI can find codes, but it can't verify them. We need humans to audit the results. Join the workforce, verify data, and earn cash for every confirmed signal.
</p>
<div class="flex flex-col sm:flex-row gap-4">
<a href="dashboard.html" class="inline-flex items-center justify-center gap-3 bg-white text-black px-8 py-4 rounded-full text-lg font-bold hover:bg-sc-neon hover:neon-glow transition-all duration-300">
<span>Start Earning</span>
</a>
<div class="flex items-center gap-4 px-6 py-2 text-sm font-mono text-sc-muted">
<span>Avg: $15-25/hr</span>
<span>•</span>
<span>Instant Payout</span>
</div>
</div>
</div>
</header>
<section class="py-24 px-6 border-y border-sc-border bg-sc-surface">
<div class="max-w-6xl mx-auto">
<h2 class="text-3xl font-bold text-white mb-16 text-center">The Consensus Protocol</h2>
<div class="grid md:grid-cols-3 gap-12">
<div class="relative group">
<div class="w-16 h-16 rounded-2xl bg-sc-black border border-sc-border flex items-center justify-center mb-6 group-hover:border-sc-neon transition-colors">
<span class="font-mono text-xl font-bold text-white">1</span>
</div>
<h3 class="text-xl font-bold text-white mb-3">Blind Verification</h3>
<p class="text-sm text-sc-muted">
You receive a task: "Does code NIKE20 work?" You test it. You do not see what other validators said. This prevents bias.
</p>
</div>
<div class="relative group">
<div class="w-16 h-16 rounded-2xl bg-sc-black border border-sc-border flex items-center justify-center mb-6 group-hover:border-sc-neon transition-colors">
<span class="font-mono text-xl font-bold text-white">2</span>
</div>
<h3 class="text-xl font-bold text-white mb-3">Staked Reputation</h3>
<p class="text-sm text-sc-muted">
Your reputation score is your collateral. High accuracy increases your "Trust Tier" and payout rate. Low accuracy gets you fired by the algorithm.
</p>
</div>
<div class="relative group">
<div class="w-16 h-16 rounded-2xl bg-sc-black border border-sc-border flex items-center justify-center mb-6 group-hover:border-sc-neon transition-colors">
<span class="font-mono text-xl font-bold text-white">3</span>
</div>
<h3 class="text-xl font-bold text-white mb-3">Evidence Requirement</h3>
<p class="text-sm text-sc-muted">
You can't just click "Yes." You must upload forensic proof (Screenshots, Cart Totals) or the system rejects your claim.
</p>
</div>
</div>
</div>
</section>
<section class="py-24 px-6 bg-sc-black overflow-hidden">
<div class="max-w-6xl mx-auto flex flex-col md:flex-row items-center gap-16">
<div class="max-w-md">
<h2 class="text-3xl font-bold text-white mb-6">The Workstation.</h2>
<p class="text-sc-muted mb-8">
A pro-grade console for high-velocity verification. Hotkeys, auto-screenshots, and real-time earnings tracking.
</p>
<ul class="space-y-4 font-mono text-sm text-gray-400">
<li class="flex items-center gap-3">
<span class="text-sc-neon">➜</span> <span>Desktop & Mobile Support</span>
</li>
<li class="flex items-center gap-3">
<span class="text-sc-neon">➜</span> <span>Weekly Leaderboard Bonuses</span>
</li>
<li class="flex items-center gap-3">
<span class="text-sc-neon">➜</span> <span>Crypto or Fiat Payouts</span>
</li>
</ul>
</div>
<div class="flex-1 w-full">
<div class="bg-sc-surface border border-sc-border rounded-xl shadow-2xl p-6 relative">
<div class="flex justify-between items-center mb-6 border-b border-sc-border pb-4">
<div class="flex items-center gap-3">
<div class="w-10 h-10 bg-white rounded flex items-center justify-center">
<svg class="w-6 h-6 text-black" viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>
</div>
<div>
<div class="text-white font-bold">Verify 'SUMMER20'</div>
<div class="text-xs text-sc-muted font-mono">Target: GAP.COM</div>
</div>
</div>
<div class="text-right">
<div class="text-sm text-sc-muted font-mono">BOUNTY</div>
<div class="text-xl text-sc-neon font-mono font-bold">$1.50</div>
</div>
</div>
<div class="space-y-4 mb-6">
<div class="bg-sc-black p-4 rounded border border-sc-border flex justify-between items-center">
<span class="text-sc-muted text-sm">Code to Test:</span>
<span class="text-white font-mono font-bold tracking-widest bg-sc-surface px-3 py-1 rounded">SUMMER20</span>
</div>
<div class="flex gap-4">
<button class="flex-1 py-3 bg-red-900/20 text-red-500 border border-red-900/50 rounded font-bold hover:bg-red-900/40 transition-colors">
INVALID (F1)
</button>
<button class="flex-1 py-3 bg-green-900/20 text-green-500 border border-green-900/50 rounded font-bold hover:bg-green-900/40 transition-colors">
VALID (F2)
</button>
</div>
</div>
<div class="w-full bg-sc-black h-1.5 rounded-full overflow-hidden">
<div class="bg-sc-neon w-3/4 h-full"></div>
</div>
<div class="flex justify-between text-[10px] font-mono text-sc-muted mt-2">
<span>Daily Goal: $50.00</span>
<span>$38.50 Earned</span>
</div>
</div>
</div>
</div>
</section>
<footer class="bg-sc-black border-t border-sc-border pt-20 pb-10 px-6">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-2 md:grid-cols-4 gap-12 mb-20">
<div>
<h4 class="font-mono text-xs text-sc-muted uppercase tracking-widest mb-6">Platform</h4>
<ul class="space-y-4 text-sm font-medium text-gray-400">
<li><a href="extension.html" class="hover:text-white hover:text-sc-neon transition-colors">Extension</a></li>
<li><a href="mobile-app.html" class="hover:text-white hover:text-sc-neon transition-colors">Mobile App</a></li>
<li><a href="chatgpt.html" class="hover:text-white hover:text-sc-neon transition-colors">ChatGPT App</a></li>
<li><a href="api.html" class="hover:text-white hover:text-sc-neon transition-colors">Developer API</a></li>
</ul>
</div>
<div>
<h4 class="font-mono text-xs text-sc-muted uppercase tracking-widest mb-6">Truth</h4>
<ul class="space-y-4 text-sm font-medium text-gray-400">
<li><a href="live.html" class="hover:text-white hover:text-sc-neon transition-colors">Live Ledger</a></li>
<li><a href="truth.html" class="hover:text-white hover:text-sc-neon transition-colors">Methodology</a></li>
<li><a href="taxonomy.html" class="hover:text-white hover:text-sc-neon transition-colors">Failure Taxonomy</a></li>
<li><a href="privacy.html" class="hover:text-white hover:text-sc-neon transition-colors">Privacy Promise</a></li>
</ul>
</div>
<div>
<h4 class="font-mono text-xs text-sc-muted uppercase tracking-widest mb-6">Workforce</h4>
<ul class="space-y-4 text-sm font-medium text-gray-400">
<li><a href="workforce.html" class="text-white hover:text-sc-neon transition-colors">Join the Workforce</a></li>
<li><a href="leaderboards.html" class="hover:text-white hover:text-sc-neon transition-colors">Leaderboards</a></li>
<li><a href="#" class="hover:text-white hover:text-sc-neon transition-colors">ShopGraph Tasks</a></li>
</ul>
</div>
<div>
<h4 class="font-mono text-xs text-sc-muted uppercase tracking-widest mb-6">Status</h4>
<div class="flex items-center gap-2 mb-4">
<span class="w-2 h-2 rounded-full bg-sc-neon"></span>
<span class="text-sm text-white font-mono">Operational</span>
</div>
<p class="text-xs text-sc-muted">Latency: 12ms</p>
<p class="text-xs text-sc-muted">San Francisco, CA</p>
</div>
</div>
<div class="border-t border-sc-border pt-8 flex flex-col md:flex-row justify-between items-center gap-4">
<div class="text-sm text-sc-muted">© 2026 Demand.io. All rights reserved.</div>
<div class="flex gap-6 text-sm text-sc-muted">
<a href="#" class="hover:text-white">Twitter / X</a>
<a href="#" class="hover:text-white">LinkedIn</a>
</div>
</div>
</div>
</footer>
</body>
</html>