W3cgymnott commited on
Commit
5918470
·
verified ·
1 Parent(s): 0b8ee18

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +533 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Threadkey
3
- emoji: 🏆
4
- colorFrom: yellow
5
- colorTo: indigo
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: threadkey
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: red
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,533 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>ThreadKey Smart Contracts for Conversations</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Space Grotesk', sans-serif;
14
+ background-color: #0f0f17;
15
+ color: #e2e2e2;
16
+ }
17
+
18
+ .gradient-text {
19
+ background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
20
+ -webkit-background-clip: text;
21
+ background-clip: text;
22
+ color: transparent;
23
+ }
24
+
25
+ .glow-box {
26
+ box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
27
+ }
28
+
29
+ .thread-line {
30
+ position: relative;
31
+ }
32
+
33
+ .thread-line:before {
34
+ content: "";
35
+ position: absolute;
36
+ left: 0;
37
+ top: 0;
38
+ height: 100%;
39
+ width: 2px;
40
+ background: linear-gradient(to bottom, #3b82f6, #8b5cf6, #ec4899);
41
+ }
42
+
43
+ .feature-card:hover {
44
+ transform: translateY(-5px);
45
+ box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
46
+ }
47
+
48
+ .typewriter {
49
+ overflow: hidden;
50
+ border-right: .15em solid #3b82f6;
51
+ white-space: nowrap;
52
+ margin: 0 auto;
53
+ letter-spacing: .15em;
54
+ animation:
55
+ typing 3.5s steps(40, end),
56
+ blink-caret .75s step-end infinite;
57
+ }
58
+
59
+ @keyframes typing {
60
+ from { width: 0 }
61
+ to { width: 100% }
62
+ }
63
+
64
+ @keyframes blink-caret {
65
+ from, to { border-color: transparent }
66
+ 50% { border-color: #3b82f6; }
67
+ }
68
+ </style>
69
+ </head>
70
+ <body>
71
+ <!-- Navigation -->
72
+ <nav class="border-b border-gray-800 py-4 px-6 fixed w-full bg-black bg-opacity-80 backdrop-blur-sm z-50">
73
+ <div class="max-w-6xl mx-auto flex justify-between items-center">
74
+ <div class="flex items-center space-x-2">
75
+ <div class="w-8 h-8 rounded-full bg-gradient-to-r from-blue-500 to-purple-600 flex items-center justify-center">
76
+ <i class="fas fa-key text-white text-sm"></i>
77
+ </div>
78
+ <span class="text-xl font-bold gradient-text">ThreadKey</span>
79
+ </div>
80
+ <div class="hidden md:flex space-x-8">
81
+ <a href="#about" class="text-gray-300 hover:text-white transition">About</a>
82
+ <a href="#features" class="text-gray-300 hover:text-white transition">Features</a>
83
+ <a href="#usecases" class="text-gray-300 hover:text-white transition">Use Cases</a>
84
+ <a href="#tech" class="text-gray-300 hover:text-white transition">Technology</a>
85
+ </div>
86
+ <div class="flex items-center space-x-4">
87
+ <button class="px-4 py-2 rounded-full bg-gradient-to-r from-blue-600 to-purple-600 text-white font-medium hover:opacity-90 transition">
88
+ Join Waitlist
89
+ </button>
90
+ <button class="md:hidden text-gray-300">
91
+ <i class="fas fa-bars text-xl"></i>
92
+ </button>
93
+ </div>
94
+ </div>
95
+ </nav>
96
+
97
+ <!-- Hero Section -->
98
+ <section class="pt-32 pb-20 px-6">
99
+ <div class="max-w-6xl mx-auto">
100
+ <div class="flex flex-col md:flex-row items-center">
101
+ <div class="md:w-1/2 mb-12 md:mb-0">
102
+ <h1 class="text-4xl md:text-6xl font-bold mb-6 leading-tight">
103
+ <span class="gradient-text">Threads</span> with <br>
104
+ <span class="typewriter">superpowers</span>
105
+ </h1>
106
+ <p class="text-xl text-gray-300 mb-8">
107
+ Turn any social thread into a programmable smart wallet that holds assets, triggers logic, runs AI agents, or governs itself — all based on replies and interactions.
108
+ </p>
109
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
110
+ <button class="px-6 py-3 rounded-full bg-gradient-to-r from-blue-600 to-purple-600 text-white font-medium hover:opacity-90 transition flex items-center justify-center">
111
+ <i class="fab fa-ethereum mr-2"></i> Try Demo
112
+ </button>
113
+ <button class="px-6 py-3 rounded-full border border-gray-700 text-white font-medium hover:bg-gray-800 transition flex items-center justify-center">
114
+ <i class="fas fa-book mr-2"></i> Documentation
115
+ </button>
116
+ </div>
117
+ </div>
118
+ <div class="md:w-1/2 relative">
119
+ <div class="relative glow-box bg-gray-900 rounded-2xl p-1">
120
+ <div class="bg-gray-800 rounded-xl overflow-hidden">
121
+ <div class="bg-gray-900 p-4 flex items-center">
122
+ <div class="w-8 h-8 rounded-full bg-gray-700"></div>
123
+ <div class="ml-3">
124
+ <div class="w-32 h-3 rounded-full bg-gray-700"></div>
125
+ <div class="w-24 h-2 rounded-full bg-gray-800 mt-1"></div>
126
+ </div>
127
+ </div>
128
+ <div class="p-4 thread-line pl-8">
129
+ <div class="mb-6">
130
+ <div class="w-10/12 h-4 rounded-full bg-gray-700 mb-2"></div>
131
+ <div class="w-8/12 h-4 rounded-full bg-gray-700"></div>
132
+ </div>
133
+ <div class="ml-6 mb-4">
134
+ <div class="flex items-center mb-2">
135
+ <div class="w-6 h-6 rounded-full bg-purple-600"></div>
136
+ <div class="ml-2 w-24 h-3 rounded-full bg-gray-700"></div>
137
+ </div>
138
+ <div class="w-9/12 h-4 rounded-full bg-gray-700 mb-2"></div>
139
+ <div class="flex space-x-2 mt-2">
140
+ <div class="w-16 h-6 rounded-full bg-blue-900 flex items-center justify-center text-xs text-blue-300">
141
+ <i class="fas fa-coins mr-1"></i> 0.1 ETH
142
+ </div>
143
+ <div class="w-16 h-6 rounded-full bg-purple-900 flex items-center justify-center text-xs text-purple-300">
144
+ <i class="fas fa-thumbs-up mr-1"></i> Vote
145
+ </div>
146
+ </div>
147
+ </div>
148
+ <div class="ml-12 mb-4">
149
+ <div class="flex items-center mb-2">
150
+ <div class="w-6 h-6 rounded-full bg-pink-600"></div>
151
+ <div class="ml-2 w-24 h-3 rounded-full bg-gray-700"></div>
152
+ </div>
153
+ <div class="w-10/12 h-4 rounded-full bg-gray-700 mb-2"></div>
154
+ <div class="flex space-x-2 mt-2">
155
+ <div class="w-16 h-6 rounded-full bg-blue-900 flex items-center justify-center text-xs text-blue-300">
156
+ <i class="fas fa-coins mr-1"></i> 0.5 ETH
157
+ </div>
158
+ </div>
159
+ </div>
160
+ <div class="bg-gray-900 rounded-lg p-3 mt-4 flex items-center">
161
+ <div class="w-8 h-8 rounded-full bg-gray-700"></div>
162
+ <div class="ml-3 w-full h-8 rounded-full bg-gray-700"></div>
163
+ <div class="ml-3 w-8 h-8 rounded-full bg-gradient-to-r from-blue-500 to-purple-600 flex items-center justify-center">
164
+ <i class="fas fa-paper-plane text-white"></i>
165
+ </div>
166
+ </div>
167
+ </div>
168
+ </div>
169
+ <div class="absolute -bottom-4 -right-4 bg-gradient-to-r from-blue-600 to-purple-600 text-white text-xs font-bold px-3 py-1 rounded-full">
170
+ Powered by Base
171
+ </div>
172
+ </div>
173
+ </div>
174
+ </div>
175
+ </div>
176
+ </section>
177
+
178
+ <!-- About Section -->
179
+ <section id="about" class="py-20 px-6 bg-gray-900">
180
+ <div class="max-w-6xl mx-auto">
181
+ <div class="text-center mb-16">
182
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">
183
+ <span class="gradient-text">Tokenizing Conversations</span>, Not Just Content
184
+ </h2>
185
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">
186
+ ThreadKey makes the thread itself an actor onchain — it can hold assets, execute logic, and interact with the world.
187
+ </p>
188
+ </div>
189
+ <div class="grid md:grid-cols-3 gap-8">
190
+ <div class="bg-gray-800 rounded-xl p-8 feature-card transition duration-300">
191
+ <div class="w-12 h-12 rounded-full bg-gradient-to-r from-blue-600 to-purple-600 flex items-center justify-center mb-6">
192
+ <i class="fas fa-wallet text-white text-xl"></i>
193
+ </div>
194
+ <h3 class="text-xl font-bold mb-3">Smart Wallets</h3>
195
+ <p class="text-gray-400">
196
+ Every thread becomes a programmable wallet that can hold ETH, stablecoins, or any other assets.
197
+ </p>
198
+ </div>
199
+ <div class="bg-gray-800 rounded-xl p-8 feature-card transition duration-300">
200
+ <div class="w-12 h-12 rounded-full bg-gradient-to-r from-blue-600 to-purple-600 flex items-center justify-center mb-6">
201
+ <i class="fas fa-robot text-white text-xl"></i>
202
+ </div>
203
+ <h3 class="text-xl font-bold mb-3">AI Integration</h3>
204
+ <p class="text-gray-400">
205
+ Threads can trigger AI workflows like summarization, response generation, or autonomous agents.
206
+ </p>
207
+ </div>
208
+ <div class="bg-gray-800 rounded-xl p-8 feature-card transition duration-300">
209
+ <div class="w-12 h-12 rounded-full bg-gradient-to-r from-blue-600 to-purple-600 flex items-center justify-center mb-6">
210
+ <i class="fas fa-users text-white text-xl"></i>
211
+ </div>
212
+ <h3 class="text-xl font-bold mb-3">Community Governance</h3>
213
+ <p class="text-gray-400">
214
+ Threads act like micro-DAOs where replies become votes that control funds and decisions.
215
+ </p>
216
+ </div>
217
+ </div>
218
+ </div>
219
+ </section>
220
+
221
+ <!-- Features Section -->
222
+ <section id="features" class="py-20 px-6">
223
+ <div class="max-w-6xl mx-auto">
224
+ <div class="text-center mb-16">
225
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">
226
+ How <span class="gradient-text">ThreadKey</span> Works
227
+ </h2>
228
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">
229
+ Activate any thread with a simple reply and unlock powerful onchain capabilities.
230
+ </p>
231
+ </div>
232
+ <div class="grid md:grid-cols-2 gap-12 items-center">
233
+ <div class="space-y-8">
234
+ <div class="flex">
235
+ <div class="text-2xl font-bold text-blue-500 mr-6">1</div>
236
+ <div>
237
+ <h3 class="text-xl font-bold mb-2">Activate the Thread</h3>
238
+ <p class="text-gray-400">
239
+ Reply to any thread with <code class="bg-gray-800 px-2 py-1 rounded text-blue-400">/activate</code> to create a linked smart contract wallet.
240
+ </p>
241
+ </div>
242
+ </div>
243
+ <div class="flex">
244
+ <div class="text-2xl font-bold text-purple-500 mr-6">2</div>
245
+ <div>
246
+ <h3 class="text-xl font-bold mb-2">Interact & Contribute</h3>
247
+ <p class="text-gray-400">
248
+ Participants can add funds, vote, or trigger actions through replies, likes, or mints.
249
+ </p>
250
+ </div>
251
+ </div>
252
+ <div class="flex">
253
+ <div class="text-2xl font-bold text-pink-500 mr-6">3</div>
254
+ <div>
255
+ <h3 class="text-xl font-bold mb-2">Execute Logic</h3>
256
+ <p class="text-gray-400">
257
+ The thread wallet executes predefined logic based on interactions: payments, NFTs, AI, etc.
258
+ </p>
259
+ </div>
260
+ </div>
261
+ </div>
262
+ <div class="bg-gray-900 rounded-2xl overflow-hidden glow-box">
263
+ <div class="p-6 bg-gray-800">
264
+ <div class="flex items-center mb-4">
265
+ <div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
266
+ <div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div>
267
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
268
+ <div class="ml-auto text-sm text-gray-400">ThreadKey Contract</div>
269
+ </div>
270
+ <div class="bg-gray-900 rounded-lg p-4 font-mono text-sm overflow-x-auto">
271
+ <div class="text-blue-400">contract <span class="text-white">ThreadWallet</span> {</div>
272
+ <div class="ml-4">
273
+ <div class="text-purple-400">address public</div>
274
+ <div class="text-white">threadId;</div>
275
+ <br>
276
+ <div class="text-purple-400">mapping(address => uint256) public</div>
277
+ <div class="text-white">votes;</div>
278
+ <br>
279
+ <div class="text-purple-400">uint256 public</div>
280
+ <div class="text-white">totalFunds;</div>
281
+ <br>
282
+ <div class="text-blue-400">function</div>
283
+ <div class="text-white">vote(bool support) external {</div>
284
+ <div class="ml-4 text-gray-500">// Logic to count votes</div>
285
+ <div class="text-white">}</div>
286
+ <br>
287
+ <div class="text-blue-400">function</div>
288
+ <div class="text-white">execute() external {</div>
289
+ <div class="ml-4 text-gray-500">// Execute based on votes</div>
290
+ <div class="ml-4 text-gray-500">// Send funds, mint NFTs, etc.</div>
291
+ <div class="text-white">}</div>
292
+ </div>
293
+ <div class="text-blue-400">}</div>
294
+ </div>
295
+ </div>
296
+ </div>
297
+ </div>
298
+ </div>
299
+ </section>
300
+
301
+ <!-- Use Cases Section -->
302
+ <section id="usecases" class="py-20 px-6 bg-gray-900">
303
+ <div class="max-w-6xl mx-auto">
304
+ <div class="text-center mb-16">
305
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">
306
+ <span class="gradient-text">Use Cases</span> That Change Everything
307
+ </h2>
308
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">
309
+ From fundraising to storytelling, ThreadKey unlocks new possibilities for social interactions.
310
+ </p>
311
+ </div>
312
+ <div class="grid md:grid-cols-3 gap-6">
313
+ <div class="bg-gray-800 rounded-xl overflow-hidden feature-card transition duration-300">
314
+ <div class="h-48 bg-gradient-to-r from-blue-900 to-purple-900 flex items-center justify-center">
315
+ <i class="fas fa-hand-holding-usd text-5xl text-white opacity-50"></i>
316
+ </div>
317
+ <div class="p-6">
318
+ <h3 class="text-xl font-bold mb-3">Fundraising Threads</h3>
319
+ <p class="text-gray-400 mb-4">
320
+ "Should we fund this project?" Replies become votes that automatically release funds when thresholds are met.
321
+ </p>
322
+ <div class="flex flex-wrap gap-2">
323
+ <span class="text-xs bg-blue-900 text-blue-300 px-2 py-1 rounded-full">DAO</span>
324
+ <span class="text-xs bg-purple-900 text-purple-300 px-2 py-1 rounded-full">Crowdfunding</span>
325
+ </div>
326
+ </div>
327
+ </div>
328
+ <div class="bg-gray-800 rounded-xl overflow-hidden feature-card transition duration-300">
329
+ <div class="h-48 bg-gradient-to-r from-purple-900 to-pink-900 flex items-center justify-center">
330
+ <i class="fas fa-robot text-5xl text-white opacity-50"></i>
331
+ </div>
332
+ <div class="p-6">
333
+ <h3 class="text-xl font-bold mb-3">AI-Powered Threads</h3>
334
+ <p class="text-gray-400 mb-4">
335
+ Threads that automatically summarize discussions, generate responses, or execute AI workflows based on interactions.
336
+ </p>
337
+ <div class="flex flex-wrap gap-2">
338
+ <span class="text-xs bg-pink-900 text-pink-300 px-2 py-1 rounded-full">AI</span>
339
+ <span class="text-xs bg-indigo-900 text-indigo-300 px-2 py-1 rounded-full">Automation</span>
340
+ </div>
341
+ </div>
342
+ </div>
343
+ <div class="bg-gray-800 rounded-xl overflow-hidden feature-card transition duration-300">
344
+ <div class="h-48 bg-gradient-to-r from-pink-900 to-blue-900 flex items-center justify-center">
345
+ <i class="fas fa-trophy text-5xl text-white opacity-50"></i>
346
+ </div>
347
+ <div class="p-6">
348
+ <h3 class="text-xl font-bold mb-3">Community Challenges</h3>
349
+ <p class="text-gray-400 mb-4">
350
+ "Best idea wins 1 ETH" - Thread collects submissions, community votes, and automatically rewards the winner.
351
+ </p>
352
+ <div class="flex flex-wrap gap-2">
353
+ <span class="text-xs bg-yellow-900 text-yellow-300 px-2 py-1 rounded-full">Bounties</span>
354
+ <span class="text-xs bg-green-900 text-green-300 px-2 py-1 rounded-full">Rewards</span>
355
+ </div>
356
+ </div>
357
+ </div>
358
+ </div>
359
+ </div>
360
+ </section>
361
+
362
+ <!-- Technology Section -->
363
+ <section id="tech" class="py-20 px-6">
364
+ <div class="max-w-6xl mx-auto">
365
+ <div class="text-center mb-16">
366
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">
367
+ Built for <span class="gradient-text">Protocol-Level Disruption</span>
368
+ </h2>
369
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">
370
+ ThreadKey combines the best of social, blockchain, and AI into a seamless experience.
371
+ </p>
372
+ </div>
373
+ <div class="bg-gray-900 rounded-2xl overflow-hidden mb-12">
374
+ <div class="grid md:grid-cols-4 divide-x divide-gray-800 text-center">
375
+ <div class="p-8">
376
+ <div class="text-blue-500 text-4xl mb-4">
377
+ <i class="fab fa-ethereum"></i>
378
+ </div>
379
+ <h3 class="text-xl font-bold mb-2">Base Chain</h3>
380
+ <p class="text-gray-400">Low-cost, high-speed transactions</p>
381
+ </div>
382
+ <div class="p-8">
383
+ <div class="text-purple-500 text-4xl mb-4">
384
+ <i class="fas fa-comments"></i>
385
+ </div>
386
+ <h3 class="text-xl font-bold mb-2">Social APIs</h3>
387
+ <p class="text-gray-400">Farcaster, Lens, X integration</p>
388
+ </div>
389
+ <div class="p-8">
390
+ <div class="text-pink-500 text-4xl mb-4">
391
+ <i class="fas fa-brain"></i>
392
+ </div>
393
+ <h3 class="text-xl font-bold mb-2">AI Layer</h3>
394
+ <p class="text-gray-400">OpenAI, Claude, AgentKit</p>
395
+ </div>
396
+ <div class="p-8">
397
+ <div class="text-green-500 text-4xl mb-4">
398
+ <i class="fas fa-cubes"></i>
399
+ </div>
400
+ <h3 class="text-xl font-bold mb-2">Modular Logic</h3>
401
+ <p class="text-gray-400">Plug-and-play smart modules</p>
402
+ </div>
403
+ </div>
404
+ </div>
405
+ <div class="text-center">
406
+ <h3 class="text-2xl font-bold mb-6">Ready to Build the Future of Social?</h3>
407
+ <button class="px-8 py-4 rounded-full bg-gradient-to-r from-blue-600 to-purple-600 text-white font-bold hover:opacity-90 transition text-lg">
408
+ Get Early Access
409
+ </button>
410
+ </div>
411
+ </div>
412
+ </section>
413
+
414
+ <!-- Footer -->
415
+ <footer class="bg-gray-900 py-12 px-6 border-t border-gray-800">
416
+ <div class="max-w-6xl mx-auto">
417
+ <div class="grid md:grid-cols-4 gap-8 mb-8">
418
+ <div>
419
+ <div class="flex items-center space-x-2 mb-4">
420
+ <div class="w-8 h-8 rounded-full bg-gradient-to-r from-blue-500 to-purple-600 flex items-center justify-center">
421
+ <i class="fas fa-key text-white text-sm"></i>
422
+ </div>
423
+ <span class="text-xl font-bold gradient-text">ThreadKey</span>
424
+ </div>
425
+ <p class="text-gray-400">
426
+ Smart contracts for conversations. Wallets with personality. Threads with power.
427
+ </p>
428
+ </div>
429
+ <div>
430
+ <h4 class="text-lg font-bold mb-4">Product</h4>
431
+ <ul class="space-y-2">
432
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Features</a></li>
433
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Integrations</a></li>
434
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li>
435
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Demo</a></li>
436
+ </ul>
437
+ </div>
438
+ <div>
439
+ <h4 class="text-lg font-bold mb-4">Resources</h4>
440
+ <ul class="space-y-2">
441
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Documentation</a></li>
442
+ <li><a href="#" class="text-gray-400 hover:text-white transition">API Reference</a></li>
443
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Tutorials</a></li>
444
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
445
+ </ul>
446
+ </div>
447
+ <div>
448
+ <h4 class="text-lg font-bold mb-4">Connect</h4>
449
+ <div class="flex space-x-4 mb-4">
450
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-gray-300 hover:text-white hover:bg-gray-700 transition">
451
+ <i class="fab fa-twitter"></i>
452
+ </a>
453
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-gray-300 hover:text-white hover:bg-gray-700 transition">
454
+ <i class="fab fa-discord"></i>
455
+ </a>
456
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-gray-300 hover:text-white hover:bg-gray-700 transition">
457
+ <i class="fab fa-github"></i>
458
+ </a>
459
+ </div>
460
+ <p class="text-gray-400">
461
+ Join our community of builders shaping the future of social.
462
+ </p>
463
+ </div>
464
+ </div>
465
+ <div class="pt-8 border-t border-gray-800 text-center text-gray-500 text-sm">
466
+ <p>© 2023 ThreadKey Protocol. All rights reserved.</p>
467
+ </div>
468
+ </div>
469
+ </footer>
470
+
471
+ <script>
472
+ // Simple typewriter effect
473
+ document.addEventListener('DOMContentLoaded', function() {
474
+ const phrases = [
475
+ "superpowers",
476
+ "smart wallets",
477
+ "AI agents",
478
+ "community DAOs",
479
+ "onchain logic"
480
+ ];
481
+
482
+ let currentPhrase = 0;
483
+ const element = document.querySelector('.typewriter');
484
+
485
+ function typeWriter() {
486
+ let i = 0;
487
+ const text = phrases[currentPhrase];
488
+ element.innerHTML = '';
489
+ element.style.width = '0';
490
+ element.style.borderRight = '.15em solid #3b82f6';
491
+
492
+ function typing() {
493
+ if (i < text.length) {
494
+ element.innerHTML += text.charAt(i);
495
+ element.style.width = (i + 1) * 10 + 'px';
496
+ i++;
497
+ setTimeout(typing, 100);
498
+ } else {
499
+ setTimeout(erase, 2000);
500
+ }
501
+ }
502
+
503
+ function erase() {
504
+ if (i >= 0) {
505
+ element.innerHTML = text.substring(0, i);
506
+ element.style.width = i * 10 + 'px';
507
+ i--;
508
+ setTimeout(erase, 50);
509
+ } else {
510
+ currentPhrase = (currentPhrase + 1) % phrases.length;
511
+ setTimeout(typeWriter, 500);
512
+ }
513
+ }
514
+
515
+ typing();
516
+ }
517
+
518
+ typeWriter();
519
+
520
+ // Smooth scrolling for anchor links
521
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
522
+ anchor.addEventListener('click', function (e) {
523
+ e.preventDefault();
524
+
525
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
526
+ behavior: 'smooth'
527
+ });
528
+ });
529
+ });
530
+ });
531
+ </script>
532
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=W3cgymnott/threadkey" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
533
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ build a website for "Alright — gloves off. No fluff. No vibes. Just a serious builder-tier idea built for Base, AI, and protocol-level disruption. --- 💡 “ThreadKey” — Turn Any Social Thread Into a Smart Wallet --- 🔥 What It Is: A protocol that lets anyone turn a social thread (on Farcaster, Lens, X, etc.) into a programmable smart wallet that holds assets, triggers logic, runs AI agents, or even governs itself — all based on replies and interactions. --- 🚨 Why It’s Wild: You’re tokenizing conversations, not just content. You’re making the thread itself an actor onchain — it can: - Hold ETH or stablecoins - Distribute funds based on votes/replies - Mint NFTs for top contributors - Trigger AI workflows (like generate summaries, run GPT agents) - Act like a group chat DAO — fully programmable --- ⚙ How It Works: - You reply to a thread with /activate - A smart contract is created that links to the thread ID - Anyone interacting with the thread (likes, replies, mints) can: - Contribute ETH/USDC - Vote on outcomes - Get airdropped tokens or NFTs - Thread can execute: - AI summarization - Payment splits - Dynamic NFTs - Auctions - Autonomous logic Example: - Someone posts: “Should we fund this dev?” - People reply yes/no, add ETH to the thread wallet, - AI counts replies, if YES > NO → funds auto-release to wallet > It’s like Juicebox + Snapshot + GPT + Wallet — all in a tweet or cast. --- 🤯 Use Cases: - Fundraising threads that act like DAOs - Creator tip jars powered by replies - Community challenges (e.g., “best idea wins funds”) - Real-time bounties - AI agents inside threads (auto-summarize, respond, act) - Storytelling NFTs that evolve with each reply --- 🧱 MVP Stack: - Base chain smart contract (modular wallet per thread) - Farcaster/Lens/X API to get thread data - AI layer (AgentKit, OpenAI, Claude, etc.) - API/backend that tracks thread → wallet → logic - Optional: frontend dashboard per thread --- 🤑 Monetization Paths: - Take a % of funds transacted in thread-wallets - Offer premium “logic packs” (like plug-and-play modules: auction, drip funds, lottery, etc.) - Launch as an SDK for social dApps on Base - Tokenized protocol later (governance over modules/AI used) --- 🧠 Why It’s Disruptive: - Threads become autonomous agents - Social apps gain native onchain finance and logic - First system where conversations become smart contracts --- 🔧 What You Can Demo in the Hackathon: - A thread that creates a wallet and distributes funds based on replies, - An AI that watches the thread and mints an NFT of the best idea - A thread that collects funds and auto-deploys to another smart contract --- You’re basically creating: > Smart Contracts for Conversations. > Wallets with personality. > Threads with power. --- Wanna go deeper and scope it for the hackathon? Or want me to throw one more fire-tier concept your way?"