mou8999 commited on
Commit
aaff394
·
verified ·
1 Parent(s): 361d707

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +562 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Traffic Accelerator Workshop
3
- emoji: 🐢
4
- colorFrom: purple
5
- colorTo: pink
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: traffic-accelerator-workshop
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: yellow
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,562 @@
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>Traffic Accelerator Workshop | Build a Scalable Traffic System in 5 Days</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
+ <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap" rel="stylesheet">
10
+ <style>
11
+ body {
12
+ font-family: 'Montserrat', sans-serif;
13
+ background-color: #0a0a0a;
14
+ color: white;
15
+ scroll-behavior: smooth;
16
+ }
17
+ .video-background {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 100%;
22
+ height: 100%;
23
+ object-fit: cover;
24
+ z-index: -1;
25
+ opacity: 0.4;
26
+ }
27
+ .gold-gradient {
28
+ background: linear-gradient(90deg, #FFD700 0%, #FFC000 100%);
29
+ }
30
+ .blue-gradient {
31
+ background: linear-gradient(90deg, #00B4DB 0%, #0083B0 100%);
32
+ }
33
+ .fade-in {
34
+ animation: fadeIn 1.5s ease-in-out;
35
+ }
36
+ @keyframes fadeIn {
37
+ from { opacity: 0; }
38
+ to { opacity: 1; }
39
+ }
40
+ .timeline-item:not(:last-child):after {
41
+ content: '';
42
+ position: absolute;
43
+ left: 24px;
44
+ top: 40px;
45
+ height: calc(100% - 40px);
46
+ width: 2px;
47
+ background: rgba(255, 255, 255, 0.2);
48
+ }
49
+ .testimonial-card {
50
+ background: rgba(255, 255, 255, 0.05);
51
+ backdrop-filter: blur(10px);
52
+ border: 1px solid rgba(255, 255, 255, 0.1);
53
+ transition: all 0.3s ease;
54
+ }
55
+ .testimonial-card:hover {
56
+ transform: translateY(-5px);
57
+ background: rgba(255, 255, 255, 0.1);
58
+ }
59
+ .faq-item {
60
+ border-bottom: 1px solid rgba(255, 255, 255, 0.1);
61
+ }
62
+ .faq-content {
63
+ max-height: 0;
64
+ overflow: hidden;
65
+ transition: max-height 0.5s ease;
66
+ }
67
+ .faq-content.active {
68
+ max-height: 300px;
69
+ }
70
+ </style>
71
+ </head>
72
+ <body class="text-white">
73
+ <!-- Hero Section -->
74
+ <section class="relative min-h-screen flex items-center justify-center overflow-hidden">
75
+ <video autoplay muted loop class="video-background">
76
+ <source src="https://assets.mixkit.co/videos/preview/mixkit-close-up-of-hands-typing-on-a-laptop-4983-large.mp4" type="video/mp4">
77
+ </video>
78
+ <div class="absolute inset-0 bg-black opacity-60 z-0"></div>
79
+
80
+ <div class="container mx-auto px-6 z-10 text-center fade-in">
81
+ <h1 class="text-4xl md:text-6xl lg:text-7xl font-bold mb-6 leading-tight">
82
+ Build a Lead-Generating <span class="text-transparent bg-clip-text gold-gradient">Traffic Machine</span> in 5 Days
83
+ </h1>
84
+ <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto opacity-90">
85
+ Join the $37 Traffic Accelerator Workshop — No Ads. No Guessing. Just Qualified Leads Daily.
86
+ </p>
87
+ <a href="#purchase" class="gold-gradient hover:opacity-90 text-black font-bold py-4 px-12 rounded-full text-xl inline-block transition-all duration-300 transform hover:scale-105 shadow-lg">
88
+ Join Now for $37
89
+ </a>
90
+
91
+ <div class="mt-12 bg-black bg-opacity-50 inline-block px-6 py-3 rounded-full">
92
+ <div class="flex items-center justify-center space-x-4">
93
+ <div class="flex items-center">
94
+ <i class="fas fa-clock text-yellow-400 mr-2"></i>
95
+ <span id="countdown" class="font-bold">00:00:00</span>
96
+ </div>
97
+ <div class="hidden sm:block">|</div>
98
+ <div class="flex items-center">
99
+ <i class="fas fa-users text-yellow-400 mr-2"></i>
100
+ <span class="font-bold">Limited spots remaining</span>
101
+ </div>
102
+ </div>
103
+ <p class="mt-2 text-sm opacity-80">Next workshop starts Monday · Lifetime replay access</p>
104
+ </div>
105
+ </div>
106
+ </section>
107
+
108
+ <!-- Core Benefits -->
109
+ <section class="py-20 bg-gradient-to-b from-black to-gray-900">
110
+ <div class="container mx-auto px-6">
111
+ <div class="text-center mb-16">
112
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">
113
+ Your <span class="text-transparent bg-clip-text blue-gradient">5-Day Transformation</span> Includes:
114
+ </h2>
115
+ <p class="text-xl opacity-90 max-w-2xl mx-auto">
116
+ Everything you need to build a traffic system that works while you sleep
117
+ </p>
118
+ </div>
119
+
120
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 max-w-6xl mx-auto">
121
+ <div class="bg-gray-900 p-8 rounded-xl border border-gray-800 text-center">
122
+ <div class="text-4xl mb-4 text-blue-400">🔁</div>
123
+ <h3 class="text-xl font-bold mb-3">AI-Powered Content System</h3>
124
+ <p class="opacity-80">Create months of content in hours using our battle-tested AI templates</p>
125
+ </div>
126
+
127
+ <div class="bg-gray-900 p-8 rounded-xl border border-gray-800 text-center">
128
+ <div class="text-4xl mb-4 text-blue-400">📈</div>
129
+ <h3 class="text-xl font-bold mb-3">Skool Funnel That Converts</h3>
130
+ <p class="opacity-80">Turn visitors into community members and paying clients automatically</p>
131
+ </div>
132
+
133
+ <div class="bg-gray-900 p-8 rounded-xl border border-gray-800 text-center">
134
+ <div class="text-4xl mb-4 text-blue-400">💬</div>
135
+ <h3 class="text-xl font-bold mb-3">DM Framework That Books Calls</h3>
136
+ <p class="opacity-80">Our proven DM sequence converts 30%+ of leads into booked calls</p>
137
+ </div>
138
+
139
+ <div class="bg-gray-900 p-8 rounded-xl border border-gray-800 text-center">
140
+ <div class="text-4xl mb-4 text-blue-400">📊</div>
141
+ <h3 class="text-xl font-bold mb-3">Growth Tracker + Accountability</h3>
142
+ <p class="opacity-80">Track your progress and stay accountable with our simple system</p>
143
+ </div>
144
+ </div>
145
+ </div>
146
+ </section>
147
+
148
+ <!-- High-Status Banner -->
149
+ <section class="py-16 bg-gradient-to-r from-blue-900 to-black">
150
+ <div class="container mx-auto px-6 text-center">
151
+ <div class="max-w-4xl mx-auto">
152
+ <h2 class="text-3xl md:text-4xl font-bold mb-6 leading-tight">
153
+ You don't need ads. You need a system that works while you sleep.
154
+ </h2>
155
+ <p class="text-xl opacity-90 mb-8">
156
+ While others waste money on ads that don't convert, you'll build an organic traffic machine that delivers qualified leads daily.
157
+ </p>
158
+ <div class="flex justify-center">
159
+ <img src="https://via.placeholder.com/800x400?text=Skool+Dashboard+Example" alt="Skool Dashboard" class="rounded-lg border border-gray-700 shadow-xl">
160
+ </div>
161
+ </div>
162
+ </div>
163
+ </section>
164
+
165
+ <!-- Timeline -->
166
+ <section class="py-20 bg-black">
167
+ <div class="container mx-auto px-6">
168
+ <div class="text-center mb-16">
169
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">
170
+ Your <span class="text-transparent bg-clip-text gold-gradient">5-Day Blueprint</span>
171
+ </h2>
172
+ <p class="text-xl opacity-90 max-w-2xl mx-auto">
173
+ Exactly what we'll cover each day to build your traffic system
174
+ </p>
175
+ </div>
176
+
177
+ <div class="max-w-3xl mx-auto space-y-8">
178
+ <div class="timeline-item relative pl-16">
179
+ <div class="absolute left-0 top-0 w-10 h-10 rounded-full gold-gradient flex items-center justify-center">
180
+ <span class="font-bold text-black">1</span>
181
+ </div>
182
+ <h3 class="text-2xl font-bold mb-2">Day 1: Offer + Identity Refinement</h3>
183
+ <p class="opacity-90">Craft an irresistible offer and messaging that attracts your ideal clients like a magnet</p>
184
+ </div>
185
+
186
+ <div class="timeline-item relative pl-16">
187
+ <div class="absolute left-0 top-0 w-10 h-10 rounded-full gold-gradient flex items-center justify-center">
188
+ <span class="font-bold text-black">2</span>
189
+ </div>
190
+ <h3 class="text-2xl font-bold mb-2">Day 2: Content System + AI Templates</h3>
191
+ <p class="opacity-90">Build your content machine with our AI-powered templates that create months of content in hours</p>
192
+ </div>
193
+
194
+ <div class="timeline-item relative pl-16">
195
+ <div class="absolute left-0 top-0 w-10 h-10 rounded-full gold-gradient flex items-center justify-center">
196
+ <span class="font-bold text-black">3</span>
197
+ </div>
198
+ <h3 class="text-2xl font-bold mb-2">Day 3: Skool Funnel Setup</h3>
199
+ <p class="opacity-90">Configure your Skool community to automatically convert visitors into engaged members</p>
200
+ </div>
201
+
202
+ <div class="timeline-item relative pl-16">
203
+ <div class="absolute left-0 top-0 w-10 h-10 rounded-full gold-gradient flex items-center justify-center">
204
+ <span class="font-bold text-black">4</span>
205
+ </div>
206
+ <h3 class="text-2xl font-bold mb-2">Day 4: DM System + Tracker Build</h3>
207
+ <p class="opacity-90">Implement our proven DM sequence that converts 30%+ of leads into booked calls</p>
208
+ </div>
209
+
210
+ <div class="timeline-item relative pl-16">
211
+ <div class="absolute left-0 top-0 w-10 h-10 rounded-full gold-gradient flex items-center justify-center">
212
+ <span class="font-bold text-black">5</span>
213
+ </div>
214
+ <h3 class="text-2xl font-bold mb-2">Day 5: Monetization & Scaling Playbook</h3>
215
+ <p class="opacity-90">Turn your traffic into revenue with our scaling strategies for $10k+ months</p>
216
+ </div>
217
+ </div>
218
+ </div>
219
+ </section>
220
+
221
+ <!-- Testimonials -->
222
+ <section class="py-20 bg-gradient-to-b from-black to-gray-900">
223
+ <div class="container mx-auto px-6">
224
+ <div class="text-center mb-16">
225
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">
226
+ What <span class="text-transparent bg-clip-text blue-gradient">Our Students</span> Say
227
+ </h2>
228
+ <p class="text-xl opacity-90 max-w-2xl mx-auto">
229
+ Coaches and creators who transformed their traffic using this system
230
+ </p>
231
+ </div>
232
+
233
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 max-w-6xl mx-auto">
234
+ <div class="testimonial-card p-6 rounded-lg">
235
+ <div class="flex items-center mb-4">
236
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah K." class="w-12 h-12 rounded-full mr-4">
237
+ <div>
238
+ <h4 class="font-bold">Sarah K.</h4>
239
+ <p class="text-sm opacity-70">Life Coach</p>
240
+ </div>
241
+ </div>
242
+ <p class="italic opacity-90">"Generated 20+ leads within 3 days of implementing the system. My calendar is now fully booked!"</p>
243
+ </div>
244
+
245
+ <div class="testimonial-card p-6 rounded-lg">
246
+ <div class="flex items-center mb-4">
247
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4">
248
+ <div>
249
+ <h4 class="font-bold">Michael T.</h4>
250
+ <p class="text-sm opacity-70">Marketing Consultant</p>
251
+ </div>
252
+ </div>
253
+ <p class="italic opacity-90">"My Skool funnel finally converts! Went from 0 to 47 members in 2 weeks with this framework."</p>
254
+ </div>
255
+
256
+ <div class="testimonial-card p-6 rounded-lg">
257
+ <div class="flex items-center mb-4">
258
+ <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Lisa M." class="w-12 h-12 rounded-full mr-4">
259
+ <div>
260
+ <h4 class="font-bold">Lisa M.</h4>
261
+ <p class="text-sm opacity-70">Fitness Coach</p>
262
+ </div>
263
+ </div>
264
+ <p class="italic opacity-90">"Best $37 I ever spent. Period. The AI content system alone is worth 10x the price."</p>
265
+ </div>
266
+
267
+ <div class="testimonial-card p-6 rounded-lg">
268
+ <div class="flex items-center mb-4">
269
+ <img src="https://randomuser.me/api/portraits/men/75.jpg" alt="David R." class="w-12 h-12 rounded-full mr-4">
270
+ <div>
271
+ <h4 class="font-bold">David R.</h4>
272
+ <p class="text-sm opacity-70">Business Coach</p>
273
+ </div>
274
+ </div>
275
+ <p class="italic opacity-90">"The DM framework booked me 8 calls in my first week. Closed 3 clients from those calls!"</p>
276
+ </div>
277
+
278
+ <div class="testimonial-card p-6 rounded-lg">
279
+ <div class="flex items-center mb-4">
280
+ <img src="https://randomuser.me/api/portraits/women/90.jpg" alt="Jessica L." class="w-12 h-12 rounded-full mr-4">
281
+ <div>
282
+ <h4 class="font-bold">Jessica L.</h4>
283
+ <p class="text-sm opacity-70">Mindset Coach</p>
284
+ </div>
285
+ </div>
286
+ <p class="italic opacity-90">"Finally a system that works without ads! My organic reach has tripled in 30 days."</p>
287
+ </div>
288
+
289
+ <div class="testimonial-card p-6 rounded-lg">
290
+ <div class="flex items-center mb-4">
291
+ <img src="https://randomuser.me/api/portraits/men/15.jpg" alt="Alex P." class="w-12 h-12 rounded-full mr-4">
292
+ <div>
293
+ <h4 class="font-bold">Alex P.</h4>
294
+ <p class="text-sm opacity-70">Copywriting Coach</p>
295
+ </div>
296
+ </div>
297
+ <p class="italic opacity-90">"Went from $2k to $8.5k months after implementing this. The growth tracker keeps me accountable."</p>
298
+ </div>
299
+ </div>
300
+ </div>
301
+ </section>
302
+
303
+ <!-- About Host -->
304
+ <section class="py-20 bg-gray-900">
305
+ <div class="container mx-auto px-6">
306
+ <div class="flex flex-col lg:flex-row items-center">
307
+ <div class="lg:w-1/2 mb-10 lg:mb-0 lg:pr-12">
308
+ <img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Workshop Host" class="rounded-xl shadow-2xl border-4 border-white">
309
+ </div>
310
+ <div class="lg:w-1/2">
311
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">
312
+ Built By a Coach Who's <span class="text-transparent bg-clip-text gold-gradient">Done It</span> — Not Just Talked About It
313
+ </h2>
314
+ <p class="text-lg opacity-90 mb-6">
315
+ I help creators and coaches scale to $10k/month using AI, content systems, and Skool. After struggling for years with inconsistent traffic, I developed this system that now delivers 50-100 qualified leads per month on autopilot.
316
+ </p>
317
+ <p class="text-lg opacity-90 mb-8">
318
+ This is the exact framework I've used to help 50+ coaches fill their communities and calendars — and now you're getting it for just $37.
319
+ </p>
320
+ <div class="flex items-center">
321
+ <div class="mr-4">
322
+ <img src="https://via.placeholder.com/80x80?text=Signature" alt="Signature" class="h-12">
323
+ </div>
324
+ <div>
325
+ <p class="font-bold">[Your Name]</p>
326
+ <p class="text-sm opacity-80">Creator, Traffic Accelerator Workshop</p>
327
+ </div>
328
+ </div>
329
+ </div>
330
+ </div>
331
+ </div>
332
+ </section>
333
+
334
+ <!-- Mid-Page CTA -->
335
+ <section class="py-16 bg-gradient-to-r from-blue-900 to-black">
336
+ <div class="container mx-auto px-6 text-center">
337
+ <h2 class="text-3xl md:text-4xl font-bold mb-6 leading-tight">
338
+ Everything You Need to Attract Traffic, Book Calls, and Close — in 5 Days.
339
+ </h2>
340
+ <p class="text-xl opacity-90 mb-8 max-w-3xl mx-auto">
341
+ For less than the cost of a single ad campaign, you'll get a complete system that delivers consistent results month after month.
342
+ </p>
343
+ <a href="#purchase" class="gold-gradient hover:opacity-90 text-black font-bold py-4 px-12 rounded-full text-xl inline-block transition-all duration-300 transform hover:scale-105 shadow-lg mb-8">
344
+ Join the Workshop Now – $37
345
+ </a>
346
+ <div class="flex justify-center space-x-8 opacity-80">
347
+ <img src="https://via.placeholder.com/120x40?text=Stripe" alt="Stripe" class="h-8">
348
+ <img src="https://via.placeholder.com/120x40?text=PayPal" alt="PayPal" class="h-8">
349
+ <img src="https://via.placeholder.com/120x40?text=Secure+Checkout" alt="Secure Checkout" class="h-8">
350
+ </div>
351
+ </div>
352
+ </section>
353
+
354
+ <!-- FAQ -->
355
+ <section class="py-20 bg-black">
356
+ <div class="container mx-auto px-6 max-w-4xl">
357
+ <div class="text-center mb-16">
358
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">
359
+ Your <span class="text-transparent bg-clip-text blue-gradient">Questions</span> Answered
360
+ </h2>
361
+ <p class="text-xl opacity-90">
362
+ Everything you need to know before joining
363
+ </p>
364
+ </div>
365
+
366
+ <div class="space-y-4">
367
+ <div class="faq-item">
368
+ <button class="faq-toggle w-full flex justify-between items-center py-4 text-left focus:outline-none">
369
+ <span class="text-lg font-bold">Is this beginner friendly?</span>
370
+ <i class="fas fa-chevron-down transition-transform duration-300"></i>
371
+ </button>
372
+ <div class="faq-content">
373
+ <div class="pb-4 opacity-90">
374
+ <p>Absolutely! We've designed this workshop to work for complete beginners while still providing advanced strategies for more experienced entrepreneurs. We'll start with fundamentals and build up to more advanced concepts.</p>
375
+ </div>
376
+ </div>
377
+ </div>
378
+
379
+ <div class="faq-item">
380
+ <button class="faq-toggle w-full flex justify-between items-center py-4 text-left focus:outline-none">
381
+ <span class="text-lg font-bold">Do I need a Skool community already?</span>
382
+ <i class="fas fa-chevron-down transition-transform duration-300"></i>
383
+ </button>
384
+ <div class="faq-content">
385
+ <div class="pb-4 opacity-90">
386
+ <p>No! We'll show you how to set one up from scratch if needed. However, if you already have a Skool community, you'll learn how to optimize it for maximum conversions.</p>
387
+ </div>
388
+ </div>
389
+ </div>
390
+
391
+ <div class="faq-item">
392
+ <button class="faq-toggle w-full flex justify-between items-center py-4 text-left focus:outline-none">
393
+ <span class="text-lg font-bold">What if I can't attend live?</span>
394
+ <i class="fas fa-chevron-down transition-transform duration-300"></i>
395
+ </button>
396
+ <div class="faq-content">
397
+ <div class="pb-4 opacity-90">
398
+ <p>No problem! All sessions will be recorded and available within 24 hours. You'll have lifetime access to the recordings, worksheets, and all bonus materials.</p>
399
+ </div>
400
+ </div>
401
+ </div>
402
+
403
+ <div class="faq-item">
404
+ <button class="faq-toggle w-full flex justify-between items-center py-4 text-left focus:outline-none">
405
+ <span class="text-lg font-bold">How is the workshop delivered?</span>
406
+ <i class="fas fa-chevron-down transition-transform duration-300"></i>
407
+ </button>
408
+ <div class="faq-content">
409
+ <div class="pb-4 opacity-90">
410
+ <p>The workshop includes daily live training sessions (with replays), downloadable templates and worksheets, and access to our private Skool community for ongoing support.</p>
411
+ </div>
412
+ </div>
413
+ </div>
414
+
415
+ <div class="faq-item">
416
+ <button class="faq-toggle w-full flex justify-between items-center py-4 text-left focus:outline-none">
417
+ <span class="text-lg font-bold">Is there a money-back guarantee?</span>
418
+ <i class="fas fa-chevron-down transition-transform duration-300"></i>
419
+ </button>
420
+ <div class="faq-content">
421
+ <div class="pb-4 opacity-90">
422
+ <p>Yes! We offer a 30-day money-back guarantee. If you don't find the workshop valuable, simply email us within 30 days of purchase for a full refund, no questions asked.</p>
423
+ </div>
424
+ </div>
425
+ </div>
426
+ </div>
427
+ </div>
428
+ </section>
429
+
430
+ <!-- Final CTA -->
431
+ <section id="purchase" class="py-20 bg-gradient-to-b from-black to-blue-900">
432
+ <div class="container mx-auto px-6 text-center">
433
+ <h2 class="text-3xl md:text-5xl font-bold mb-6 leading-tight">
434
+ Your Community Deserves Growth. <br>Your Content Deserves Results.
435
+ </h2>
436
+ <p class="text-xl opacity-90 mb-8 max-w-3xl mx-auto">
437
+ Stop wasting time on strategies that don't work. Build your traffic machine in just 5 days.
438
+ </p>
439
+
440
+ <div class="max-w-md mx-auto bg-black bg-opacity-50 p-8 rounded-xl border border-gray-800 mb-10">
441
+ <div class="flex justify-between items-center mb-6">
442
+ <span class="text-lg font-bold">Traffic Accelerator Workshop</span>
443
+ <span class="text-xl font-bold">$37</span>
444
+ </div>
445
+
446
+ <ul class="space-y-3 text-left mb-8">
447
+ <li class="flex items-start">
448
+ <i class="fas fa-check-circle text-green-400 mt-1 mr-3"></i>
449
+ <span>5-Day Live Workshop (with lifetime replays)</span>
450
+ </li>
451
+ <li class="flex items-start">
452
+ <i class="fas fa-check-circle text-green-400 mt-1 mr-3"></i>
453
+ <span>AI-Powered Content System Templates</span>
454
+ </li>
455
+ <li class="flex items-start">
456
+ <i class="fas fa-check-circle text-green-400 mt-1 mr-3"></i>
457
+ <span>Skool Funnel Blueprint</span>
458
+ </li>
459
+ <li class="flex items-start">
460
+ <i class="fas fa-check-circle text-green-400 mt-1 mr-3"></i>
461
+ <span>High-Converting DM Framework</span>
462
+ </li>
463
+ <li class="flex items-start">
464
+ <i class="fas fa-check-circle text-green-400 mt-1 mr-3"></i>
465
+ <span>Growth Tracker & Accountability System</span>
466
+ </li>
467
+ <li class="flex items-start">
468
+ <i class="fas fa-check-circle text-green-400 mt-1 mr-3"></i>
469
+ <span>Private Skool Community Access</span>
470
+ </li>
471
+ </ul>
472
+
473
+ <div class="bg-yellow-500 bg-opacity-20 border border-yellow-400 rounded-lg p-4 mb-6">
474
+ <div class="flex items-center justify-center">
475
+ <i class="fas fa-clock text-yellow-400 mr-2"></i>
476
+ <span id="final-countdown" class="font-bold">00:00:00</span>
477
+ <span class="ml-2">remaining at this price</span>
478
+ </div>
479
+ </div>
480
+
481
+ <a href="#" class="gold-gradient hover:opacity-90 text-black font-bold py-4 px-8 rounded-full text-xl w-full block transition-all duration-300 transform hover:scale-105 shadow-lg mb-4">
482
+ Join for $37 Before Spots Close
483
+ </a>
484
+
485
+ <p class="text-sm opacity-80 mt-4">
486
+ <i class="fas fa-lock"></i> Secure checkout · 30-Day Money-Back Guarantee
487
+ </p>
488
+ </div>
489
+ </div>
490
+ </section>
491
+
492
+ <!-- Footer -->
493
+ <footer class="py-12 bg-black">
494
+ <div class="container mx-auto px-6 text-center">
495
+ <div class="mb-8">
496
+ <h2 class="text-2xl font-bold mb-2">TRAFFIC ACCELERATOR WORKSHOP</h2>
497
+ <p class="opacity-80">Build a Scalable Traffic System in 5 Days</p>
498
+ </div>
499
+
500
+ <div class="flex justify-center space-x-6 mb-8">
501
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-instagram text-xl"></i></a>
502
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter text-xl"></i></a>
503
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-youtube text-xl"></i></a>
504
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-tiktok text-xl"></i></a>
505
+ </div>
506
+
507
+ <div class="text-sm opacity-70">
508
+ <p class="mb-2">© 2023 Traffic Accelerator Workshop. All rights reserved.</p>
509
+ <p class="mb-2"><a href="#" class="underline">Terms</a> | <a href="#" class="underline">Privacy</a> | <a href="#" class="underline">Refunds</a></p>
510
+ <p>This site is not a part of the Skool website or Skool Inc.</p>
511
+ </div>
512
+ </div>
513
+ </footer>
514
+
515
+ <script>
516
+ // Countdown Timer
517
+ function updateCountdown() {
518
+ const now = new Date();
519
+ const workshopDate = new Date();
520
+ workshopDate.setDate(now.getDate() + 3); // Workshop in 3 days
521
+
522
+ const diff = workshopDate - now;
523
+
524
+ const days = Math.floor(diff / (1000 * 60 * 60 * 24));
525
+ const hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
526
+ const minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60));
527
+ const seconds = Math.floor((diff % (1000 * 60)) / 1000);
528
+
529
+ document.getElementById('countdown').textContent = `${hours.toString().padStart(2, '0')}:${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`;
530
+ document.getElementById('final-countdown').textContent = `${hours.toString().padStart(2, '0')}:${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`;
531
+ }
532
+
533
+ setInterval(updateCountdown, 1000);
534
+ updateCountdown();
535
+
536
+ // FAQ Toggle
537
+ document.querySelectorAll('.faq-toggle').forEach(button => {
538
+ button.addEventListener('click', () => {
539
+ const content = button.nextElementSibling;
540
+ const icon = button.querySelector('i');
541
+
542
+ content.classList.toggle('active');
543
+ icon.classList.toggle('transform');
544
+ icon.classList.toggle('rotate-180');
545
+ });
546
+ });
547
+
548
+ // Animate elements on scroll
549
+ const observer = new IntersectionObserver((entries) => {
550
+ entries.forEach(entry => {
551
+ if (entry.isIntersecting) {
552
+ entry.target.classList.add('fade-in');
553
+ }
554
+ });
555
+ }, { threshold: 0.1 });
556
+
557
+ document.querySelectorAll('section').forEach(section => {
558
+ observer.observe(section);
559
+ });
560
+ </script>
561
+ <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=mou8999/traffic-accelerator-workshop" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
562
+ </html>
prompts.txt ADDED
File without changes