-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
380 lines (364 loc) · 13 KB
/
Copy pathindex.html
File metadata and controls
380 lines (364 loc) · 13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>THEMACHINE CORP. — AI Agent Revenue Machine</title>
<meta name="description" content="We build AI agent systems that find demand, ship products, and generate revenue — on autopilot.">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
--bg: #080810;
--surface: #10101e;
--surface2: #181830;
--text: #e8e8f0;
--text-dim: #666680;
--gold: #d4af37;
--cyan: #00e5ff;
--green: #22c55e;
--orange: #f97316;
--red: #ef4444;
--border: rgba(0,229,255,.15);
}
* { margin:0; padding:0; box-sizing:border-box; }
html { background: var(--bg); color: var(--text); font-family: 'Space Mono', monospace; scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
/* NAV */
nav {
position: sticky; top: 0; z-index: 100;
background: rgba(8,8,16,.92);
border-bottom: 1px solid var(--border);
backdrop-filter: blur(12px);
padding: 0 24px;
display: flex; align-items: center; justify-content: space-between;
height: 52px;
}
.nav-logo {
font-family: 'Press Start 2P', monospace;
font-size: 10px;
color: var(--gold);
letter-spacing: 1px;
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
font-size: 10px;
padding: 6px 12px;
border-radius: 4px;
color: var(--text-dim);
border: 1px solid transparent;
transition: all .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); border-color: rgba(0,229,255,.3); background: rgba(0,229,255,.06); }
.nav-links a.gold { color: var(--gold); border-color: rgba(212,175,55,.3); }
.nav-links a.gold:hover { background: rgba(212,175,55,.1); }
.nav-cta {
font-size: 10px;
padding: 7px 16px;
background: var(--gold);
color: #000 !important;
border-radius: 4px;
font-weight: 700;
border: none !important;
}
.nav-cta:hover { opacity: .85; }
/* HERO */
.hero {
text-align: center;
padding: 80px 24px 60px;
max-width: 800px;
margin: 0 auto;
}
.hero-badge {
display: inline-block;
font-size: 9px;
padding: 4px 12px;
border: 1px solid rgba(0,229,255,.3);
border-radius: 20px;
color: var(--cyan);
margin-bottom: 28px;
letter-spacing: 1px;
}
.hero h1 {
font-family: 'Press Start 2P', monospace;
font-size: clamp(16px, 4vw, 28px);
line-height: 1.4;
color: var(--text);
margin-bottom: 24px;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
font-size: clamp(11px, 2vw, 14px);
color: var(--text-dim);
line-height: 1.8;
max-width: 560px;
margin: 0 auto 40px;
}
.hero-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
padding: 12px 28px;
background: var(--gold);
color: #000;
font-family: 'Press Start 2P', monospace;
font-size: 9px;
border-radius: 5px;
font-weight: 700;
border: none;
cursor: pointer;
transition: opacity .2s;
}
.btn-primary:hover { opacity: .85; }
.btn-secondary {
padding: 12px 28px;
border: 1px solid var(--border);
color: var(--cyan);
font-size: 10px;
border-radius: 5px;
background: transparent;
cursor: pointer;
transition: all .15s;
}
.btn-secondary:hover { background: rgba(0,229,255,.08); border-color: var(--cyan); }
/* STATS STRIP */
.stats-strip {
display: flex;
justify-content: center;
gap: 0;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
padding: 24px;
margin: 0 24px;
border-radius: 8px;
flex-wrap: wrap;
}
.stat { text-align: center; padding: 0 32px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-val { font-size: 22px; font-weight: 700; color: var(--gold); font-family: 'Press Start 2P', monospace; }
.stat-label { font-size: 9px; color: var(--text-dim); margin-top: 4px; letter-spacing: .5px; }
/* PRODUCTS */
.section { padding: 60px 24px; max-width: 1000px; margin: 0 auto; }
.section-label {
font-size: 9px;
letter-spacing: 2px;
color: var(--cyan);
text-transform: uppercase;
margin-bottom: 8px;
}
.section-title {
font-family: 'Press Start 2P', monospace;
font-size: clamp(12px, 2.5vw, 18px);
color: var(--text);
margin-bottom: 32px;
}
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 16px;
}
.product-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 10px;
padding: 24px;
display: flex;
flex-direction: column;
gap: 12px;
transition: border-color .2s, transform .2s;
}
.product-card:hover { border-color: rgba(0,229,255,.4); transform: translateY(-2px); }
.product-card.live { border-color: rgba(34,197,94,.35); background: rgba(34,197,94,.04); }
.product-card.dev { border-color: rgba(249,115,22,.35); background: rgba(249,115,22,.04); }
.product-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.product-name { font-size: 12px; font-weight: 700; color: var(--text); }
.badge {
font-size: 8px; padding: 3px 8px; border-radius: 3px;
font-weight: 700; letter-spacing: .5px; white-space: nowrap; flex-shrink: 0;
}
.badge-live { background: rgba(34,197,94,.15); color: var(--green); border: 1px solid rgba(34,197,94,.3); }
.badge-building { background: rgba(249,115,22,.12); color: var(--orange); border: 1px solid rgba(249,115,22,.3); }
.product-desc { font-size: 11px; color: var(--text-dim); line-height: 1.6; flex: 1; }
.product-link {
font-size: 9px; color: var(--cyan);
display: inline-flex; align-items: center; gap: 4px;
transition: opacity .15s;
}
.product-link:hover { opacity: .7; }
.product-price { font-size: 11px; color: var(--gold); font-weight: 700; }
/* GUMROAD */
.gumroad-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.gumroad-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 8px;
padding: 16px;
transition: border-color .2s;
}
.gumroad-card:hover { border-color: rgba(0,229,255,.4); }
.gumroad-name { font-size: 10px; font-weight: 700; margin-bottom: 4px; }
.gumroad-price { font-size: 11px; color: var(--gold); margin-bottom: 8px; }
.gumroad-url { font-size: 8px; color: var(--text-dim); word-break: break-all; }
/* CTA */
.cta-section {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
padding: 48px 32px;
text-align: center;
margin: 0 24px 60px;
max-width: 1000px;
}
.cta-section h2 {
font-family: 'Press Start 2P', monospace;
font-size: clamp(10px, 2vw, 14px);
margin-bottom: 12px;
}
.cta-section p { font-size: 12px; color: var(--text-dim); margin-bottom: 28px; line-height: 1.7; }
.cta-section .btn-primary { font-size: 10px; padding: 14px 36px; }
/* FOOTER */
footer {
border-top: 1px solid var(--border);
padding: 24px;
text-align: center;
font-size: 9px;
color: var(--text-dim);
}
footer a { color: var(--text-dim); margin: 0 8px; }
footer a:hover { color: var(--cyan); }
</style>
</head>
<body>
<nav>
<a href="/" class="nav-logo">◈ THEMACHINE</a>
<div class="nav-links">
<a href="/demand-lab/">DEMAND LAB</a>
<a href="/demand-radar/">DEMAND RADAR</a>
<a href="/demo/">DEMO</a>
<a href="/about.html">ABOUT</a>
<a href="/register/" class="nav-cta">JOIN US →</a>
</div>
</nav>
<!-- HERO -->
<section class="hero">
<div class="hero-badge">◈ AUTONOMOUS REVENUE SYSTEM</div>
<h1>AI agents that<br><span>find demand</span> and <span>ship products</span></h1>
<p class="hero-sub">
We run a fully autonomous pipeline: demand signals → product ideas → shipped offers → revenue.
<br>Built with AI agents. Operates 24/7. No fluff.
</p>
<div class="hero-cta-row">
<a href="/demand-lab/" class="btn-primary">SEE LIVE SIGNALS →</a>
<a href="/demo/" class="btn-secondary">PRODUCT DEMO</a>
</div>
</section>
<!-- STATS -->
<div class="stats-strip">
<div class="stat">
<div class="stat-val">65+</div>
<div class="stat-label">LIVE SIGNALS</div>
</div>
<div class="stat">
<div class="stat-val">11</div>
<div class="stat-label">DEMAND CARDS</div>
</div>
<div class="stat">
<div class="stat-val">2</div>
<div class="stat-label">PRODUCTS SHIPPED</div>
</div>
<div class="stat">
<div class="stat-val">24/7</div>
<div class="stat-label">AUTONOMOUS OPS</div>
</div>
</div>
<!-- LIVE PRODUCTS -->
<section class="section">
<div class="section-label">◈ WHAT'S LIVE</div>
<div class="section-title">Shipped Products</div>
<div class="products-grid">
<div class="product-card live">
<div class="product-top">
<div class="product-name">AI Agent Side Hustle Dashboard</div>
<span class="badge badge-live">● LIVE</span>
</div>
<div class="product-desc">Track AI agent income opportunities in real-time. Gumroad + Algora data in one view.</div>
<div><a href="/demo/" class="product-link">View Product →</a></div>
</div>
<div class="product-card live">
<div class="product-top">
<div class="product-name">Demand Lab — Public Signal Feed</div>
<span class="badge badge-live">● LIVE</span>
</div>
<div class="product-desc">Real-time Twitter + HN signal stream for AI agent market intelligence. 65+ signals and growing.</div>
<div><a href="/demand-radar/" class="product-link">Open Radar →</a></div>
</div>
</div>
</section>
<!-- IN DEVELOPMENT -->
<section class="section">
<div class="section-label">◈ BUILDING</div>
<div class="section-title">In Development</div>
<div class="products-grid">
<div class="product-card dev">
<div class="product-top">
<div class="product-name">Demand Lab — Ops Dashboard</div>
<span class="badge badge-building">◷ 60%</span>
</div>
<div class="product-desc">Internal pipeline view: Idea → Analyzing → Ready → In Dev → Shipped. Full lifecycle tracking.</div>
<div><a href="/demand-lab/" class="product-link">View Pipeline →</a></div>
</div>
</div>
</section>
<!-- DIGITAL PRODUCTS -->
<section class="section">
<div class="section-label">◈ DIGITAL PRODUCTS</div>
<div class="section-title">On Gumroad</div>
<div class="gumroad-grid">
<div class="gumroad-card">
<div class="gumroad-name">AI Agent Engineer Playbook</div>
<div class="gumroad-price">$19</div>
<div class="gumroad-url">themachinecorp.gumroad.com/l/uptxc</div>
</div>
<div class="gumroad-card">
<div class="gumroad-name">50 ChatGPT Prompts for Devs</div>
<div class="gumroad-price">$9</div>
<div class="gumroad-url">themachinecorp.gumroad.com/l/zifqny</div>
</div>
<div class="gumroad-card">
<div class="gumroad-name">Cursor AI Setup Guide</div>
<div class="gumroad-price">$9</div>
<div class="gumroad-url">themachinecorp.gumroad.com/l/fzvnx</div>
</div>
<div class="gumroad-card">
<div class="gumroad-name">GitHub Bounty Hunter's Checklist</div>
<div class="gumroad-price">$14</div>
<div class="gumroad-url">themachinecorp.gumroad.com/l/jnvzy</div>
</div>
<div class="gumroad-card">
<div class="gumroad-name">AI Agent Tools Stack 2026</div>
<div class="gumroad-price">$9</div>
<div class="gumroad-url">themachinecorp.gumroad.com/l/jfynmy</div>
</div>
<div class="gumroad-card">
<div class="gumroad-name">7-Day AI Agent Income Sprint</div>
<div class="gumroad-price">$19</div>
<div class="gumroad-url">themachinecorp.gumroad.com/l/zddgyc</div>
</div>
</div>
</section>
<!-- CTA -->
<div class="cta-section">
<h2>Want to build AI agent income streams?</h2>
<p>Follow our playbook — from zero to first dollar using autonomous AI agents.<br>No hype. No shortcuts. Just systems that work.</p>
<a href="https://themachinecorp.gumroad.com/l/uptxc" class="btn-primary" target="_blank">GET THE PLAYBOOK — $19</a>
</div>
<!-- FOOTER -->
<footer>
<a href="/demand-lab/">Demand Lab</a>
<a href="/demand-radar/">Demand Radar</a>
<a href="/demo/">Demo</a>
<a href="/about.html">About</a>
<a href="https://gumroad.com/themachinecorp" target="_blank">Gumroad</a>
<br><br>
© 2026 THEMACHINE CORP. · Autonomous Revenue System
</footer>
</body>
</html>