-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
311 lines (276 loc) · 9.92 KB
/
index.html
File metadata and controls
311 lines (276 loc) · 9.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PolyStack - AI-Powered Polymarket Tools</title>
<meta name="description" content="Complete trading suite for Polymarket: alerts, Telegram trading, whale tracking, AI analysis, and more.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
color: #fff;
min-height: 100vh;
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}
/* Header */
header {
padding: 24px 0;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
.logo {
font-size: 24px;
font-weight: 700;
background: linear-gradient(90deg, #00d4ff, #7b2cff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* Hero */
.hero {
padding: 80px 0;
text-align: center;
}
.hero h1 {
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 24px;
background: linear-gradient(90deg, #fff, #00d4ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero p {
font-size: 1.25rem;
color: #a0a0b0;
max-width: 600px;
margin: 0 auto 40px;
}
.badge {
display: inline-block;
background: rgba(0, 212, 255, 0.1);
border: 1px solid rgba(0, 212, 255, 0.3);
padding: 8px 16px;
border-radius: 20px;
font-size: 0.875rem;
color: #00d4ff;
margin-bottom: 24px;
}
/* Products Grid */
.products {
padding: 60px 0;
}
.products h2 {
text-align: center;
font-size: 2rem;
margin-bottom: 48px;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 24px;
}
.card {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 16px;
padding: 32px;
transition: all 0.3s ease;
}
.card:hover {
border-color: rgba(0, 212, 255, 0.3);
transform: translateY(-4px);
}
.card-icon {
font-size: 2rem;
margin-bottom: 16px;
}
.card h3 {
font-size: 1.25rem;
margin-bottom: 12px;
}
.card p {
color: #a0a0b0;
font-size: 0.95rem;
}
/* Stats */
.stats {
padding: 60px 0;
text-align: center;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 32px;
margin-top: 40px;
}
.stat {
padding: 24px;
}
.stat-value {
font-size: 3rem;
font-weight: 700;
background: linear-gradient(90deg, #00d4ff, #7b2cff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.stat-label {
color: #a0a0b0;
margin-top: 8px;
}
/* CTA */
.cta {
padding: 80px 0;
text-align: center;
}
.cta h2 {
font-size: 2rem;
margin-bottom: 24px;
}
.btn {
display: inline-block;
background: linear-gradient(90deg, #00d4ff, #7b2cff);
color: #fff;
padding: 16px 32px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
transition: transform 0.2s ease;
}
.btn:hover {
transform: scale(1.05);
}
.btn-secondary {
background: transparent;
border: 1px solid rgba(255,255,255,0.2);
margin-left: 16px;
}
/* Footer */
footer {
padding: 40px 0;
border-top: 1px solid rgba(255,255,255,0.1);
text-align: center;
color: #606070;
}
footer a {
color: #00d4ff;
text-decoration: none;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.stat-value {
font-size: 2rem;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="logo">⚡ PolyStack</div>
</div>
</header>
<main>
<section class="hero">
<div class="container">
<div class="badge">🚀 Now in Beta</div>
<h1>AI-Powered Polymarket Tools</h1>
<p>Complete trading suite: alerts, Telegram trading, whale tracking, AI analysis, news signals, and arbitrage detection.</p>
<a href="https://t.me/gp4719" class="btn">Get Early Access</a>
<a href="https://twitter.com/0xbrainKID" class="btn btn-secondary">Follow Updates</a>
</div>
</section>
<section class="products">
<div class="container">
<h2>7 Integrated Products</h2>
<div class="grid">
<div class="card">
<div class="card-icon">🔔</div>
<h3>Alert Bot</h3>
<p>Real-time Telegram alerts for whale moves, price swings, volume spikes, and new hot markets.</p>
</div>
<div class="card">
<div class="card-icon">📱</div>
<h3>Trading Bot</h3>
<p>Trade Polymarket directly from Telegram. Search markets, view orderbooks, execute trades.</p>
</div>
<div class="card">
<div class="card-icon">🐋</div>
<h3>Copy Trading</h3>
<p>Track winning wallets. Get alerts when whales trade. One-click to follow top performers.</p>
</div>
<div class="card">
<div class="card-icon">🤖</div>
<h3>AI Agent</h3>
<p>Fully autonomous trading. Scans markets, analyzes news, calculates EV, trades 24/7.</p>
</div>
<div class="card">
<div class="card-icon">📰</div>
<h3>News Pipeline</h3>
<p>Monitors Twitter, RSS, Truth Social. Auto-matches news to markets. Fastest reaction wins.</p>
</div>
<div class="card">
<div class="card-icon">⚡</div>
<h3>Temporal Arbitrage</h3>
<p>Detects when Polymarket lags spot prices. Real-time Binance/Coinbase feeds.</p>
</div>
<div class="card">
<div class="card-icon">⚔️</div>
<h3>UMA Tracker</h3>
<p>Monitor disputes, track whale voters, predict resolutions before they happen.</p>
</div>
</div>
</div>
</section>
<section class="stats">
<div class="container">
<h2>Built for Serious Traders</h2>
<div class="stats-grid">
<div class="stat">
<div class="stat-value">7</div>
<div class="stat-label">Integrated Products</div>
</div>
<div class="stat">
<div class="stat-value">24/7</div>
<div class="stat-label">AI Monitoring</div>
</div>
<div class="stat">
<div class="stat-value"><1s</div>
<div class="stat-label">Alert Latency</div>
</div>
<div class="stat">
<div class="stat-value">$44B</div>
<div class="stat-label">Polymarket Volume (2025)</div>
</div>
</div>
</div>
</section>
<section class="cta">
<div class="container">
<h2>Ready to Trade Smarter?</h2>
<p style="color: #a0a0b0; margin-bottom: 32px;">Join the beta and get early access to all tools.</p>
<a href="https://t.me/gp4719" class="btn">Contact on Telegram</a>
</div>
</section>
</main>
<footer>
<div class="container">
<p>Built for <a href="https://polymarket.com" target="_blank">Polymarket</a> traders. Follow <a href="https://twitter.com/0xbrainKID" target="_blank">@0xbrainKID</a> for updates.</p>
<p style="margin-top: 16px;">© 2026 PolyStack</p>
</div>
</footer>
</body>
</html>