-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmockup.html
More file actions
610 lines (576 loc) · 37.3 KB
/
mockup.html
File metadata and controls
610 lines (576 loc) · 37.3 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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GTM Skills - Homepage Mockup</title>
<script src="https://cdn.tailwindcss.com"></script>
<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=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
},
},
}
</script>
<style>
body {
background: #0a0a0a;
color: #fafafa;
font-family: 'Inter', sans-serif;
}
.gradient-text {
background: linear-gradient(to right, #f97316, #ef4444);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.glow {
box-shadow: 0 0 60px rgba(249, 115, 22, 0.15);
}
@keyframes pulse-bar {
0%, 100% { transform: scaleY(0.3); }
50% { transform: scaleY(1); }
}
.waveform-bar {
animation: pulse-bar 1s ease-in-out infinite;
}
</style>
</head>
<body class="antialiased">
<!-- Navigation -->
<nav class="border-b border-zinc-800 sticky top-0 bg-zinc-950/80 backdrop-blur-xl z-50">
<div class="max-w-7xl mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center gap-8">
<!-- Logo -->
<a href="#" class="flex items-center gap-2">
<div class="w-8 h-8 rounded-lg bg-gradient-to-br from-orange-500 to-red-500 flex items-center justify-center">
<svg class="w-5 h-5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"/>
</svg>
</div>
<span class="font-bold text-lg">GTM Skills</span>
</a>
<!-- Nav Links -->
<div class="hidden md:flex items-center gap-6 text-sm">
<a href="#" class="text-zinc-400 hover:text-white transition-colors">Prompts</a>
<a href="#" class="text-zinc-400 hover:text-white transition-colors">Tools</a>
<a href="#" class="text-zinc-400 hover:text-white transition-colors">Community</a>
<a href="#" class="text-zinc-400 hover:text-white transition-colors">Developers</a>
</div>
</div>
<div class="flex items-center gap-3">
<a href="#" class="hidden md:flex items-center gap-2 px-3 py-1.5 rounded-lg border border-zinc-700 text-sm text-zinc-400 hover:text-white hover:border-zinc-600 transition-all">
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
<span>Star</span>
<span class="px-1.5 py-0.5 rounded bg-zinc-800 text-xs">127</span>
</a>
<a href="#" class="px-4 py-2 rounded-lg bg-gradient-to-r from-orange-500 to-red-500 text-white text-sm font-medium hover:from-orange-600 hover:to-red-600 transition-all">
Get Started
</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="relative py-20 md:py-32 overflow-hidden">
<!-- Background gradient -->
<div class="absolute inset-0 bg-gradient-to-b from-orange-500/5 via-transparent to-transparent"></div>
<div class="relative max-w-7xl mx-auto px-6 text-center">
<!-- Badge -->
<div class="inline-flex items-center gap-2 px-3 py-1 rounded-full border border-orange-500/30 text-orange-400 text-sm mb-6">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 3v4M3 5h4M6 17v4m-2-2h4m5-16l2.286 6.857L21 12l-5.714 2.143L13 21l-2.286-6.857L5 12l5.714-2.143L13 3z"/>
</svg>
Free & Open Source
</div>
<!-- Headline -->
<h1 class="text-4xl md:text-6xl lg:text-7xl font-bold tracking-tight mb-6">
The GTM Operating System for<br>
<span class="gradient-text">Agentic Sales</span>
</h1>
<!-- Subheadline -->
<p class="text-lg md:text-xl text-zinc-400 max-w-3xl mx-auto mb-8">
500+ battle-tested prompts. Browser extension. Voice AI templates.
CRM integrations. Community leaderboard. All free, all open source.
</p>
<!-- CTAs -->
<div class="flex flex-wrap gap-4 justify-center">
<a href="#" class="px-6 py-3 rounded-lg bg-gradient-to-r from-orange-500 to-red-500 text-white font-medium hover:from-orange-600 hover:to-red-600 transition-all">
Browse Prompts
</a>
<a href="#" class="flex items-center gap-2 px-6 py-3 rounded-lg border border-zinc-700 text-zinc-300 font-medium hover:border-zinc-600 hover:text-white transition-all">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
Star on GitHub
</a>
</div>
</div>
</section>
<!-- Ecosystem Bar -->
<section class="py-4 bg-zinc-900/50 border-y border-zinc-800">
<div class="max-w-7xl mx-auto px-6">
<div class="flex flex-wrap justify-center gap-6 md:gap-10 text-sm text-zinc-400">
<div class="flex items-center gap-2">
<svg class="w-4 h-4 text-orange-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/>
</svg>
<span>500+ Prompts</span>
</div>
<div class="flex items-center gap-2">
<svg class="w-4 h-4 text-blue-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"/>
</svg>
<span>Browser Extension</span>
</div>
<div class="flex items-center gap-2">
<svg class="w-4 h-4 text-violet-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 11a7 7 0 01-7 7m0 0a7 7 0 01-7-7m7 7v4m0 0H8m4 0h4m-4-8a3 3 0 01-3-3V5a3 3 0 116 0v6a3 3 0 01-3 3z"/>
</svg>
<span>Voice Templates</span>
</div>
<div class="flex items-center gap-2">
<svg class="w-4 h-4 text-amber-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
<span>Community Leaderboard</span>
</div>
<div class="flex items-center gap-2">
<svg class="w-4 h-4 text-teal-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13.828 10.172a4 4 0 00-5.656 0l-4 4a4 4 0 105.656 5.656l1.102-1.101m-.758-4.899a4 4 0 005.656 0l4-4a4 4 0 00-5.656-5.656l-1.1 1.1"/>
</svg>
<span>CRM Integrations</span>
</div>
<div class="flex items-center gap-2">
<svg class="w-4 h-4 text-emerald-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4"/>
</svg>
<span>REST API</span>
</div>
</div>
</div>
</section>
<!-- Tools & Integrations Grid -->
<section class="py-20 md:py-28">
<div class="max-w-7xl mx-auto px-6">
<div class="text-center mb-12">
<div class="inline-flex items-center gap-2 px-3 py-1 rounded-full border border-teal-500/30 text-teal-400 text-sm mb-4">
Works Everywhere
</div>
<h2 class="text-3xl md:text-4xl font-bold mb-4">Tools & Integrations</h2>
<p class="text-zinc-400 max-w-2xl mx-auto">
Use GTM Skills prompts wherever you work. Browser, CRM, voice calls, or API.
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
<!-- Browser Extension -->
<a href="#" class="group bg-zinc-900/50 border border-zinc-800 rounded-xl p-6 hover:border-blue-500/50 transition-all">
<div class="w-12 h-12 rounded-lg bg-gradient-to-br from-blue-500 to-cyan-500 flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"/>
</svg>
</div>
<h3 class="font-semibold mb-2">Browser Extension</h3>
<p class="text-sm text-zinc-400 mb-4">LinkedIn & Gmail integration. Context-aware prompts in your sidebar.</p>
<div class="flex items-center text-blue-400 text-sm">
Install Free
<svg class="w-4 h-4 ml-1 opacity-0 group-hover:opacity-100 transition-opacity" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/>
</svg>
</div>
</a>
<!-- Voice Templates -->
<a href="#" class="group bg-zinc-900/50 border border-zinc-800 rounded-xl p-6 hover:border-violet-500/50 transition-all">
<div class="w-12 h-12 rounded-lg bg-gradient-to-br from-violet-500 to-purple-500 flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 11a7 7 0 01-7 7m0 0a7 7 0 01-7-7m7 7v4m0 0H8m4 0h4m-4-8a3 3 0 01-3-3V5a3 3 0 116 0v6a3 3 0 01-3 3z"/>
</svg>
</div>
<h3 class="font-semibold mb-2">Voice Templates</h3>
<p class="text-sm text-zinc-400 mb-4">10 cold call scripts for Vapi. Deploy agentic voice calls in minutes.</p>
<div class="flex items-center text-violet-400 text-sm">
Browse Templates
<svg class="w-4 h-4 ml-1 opacity-0 group-hover:opacity-100 transition-opacity" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/>
</svg>
</div>
</a>
<!-- HubSpot -->
<a href="#" class="group bg-zinc-900/50 border border-zinc-800 rounded-xl p-6 hover:border-teal-500/50 transition-all">
<div class="w-12 h-12 rounded-lg bg-gradient-to-br from-teal-500 to-cyan-500 flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13.828 10.172a4 4 0 00-5.656 0l-4 4a4 4 0 105.656 5.656l1.102-1.101m-.758-4.899a4 4 0 005.656 0l4-4a4 4 0 00-5.656-5.656l-1.1 1.1"/>
</svg>
</div>
<h3 class="font-semibold mb-2">HubSpot Integration</h3>
<p class="text-sm text-zinc-400 mb-4">CRM sidebar with deal-stage prompts. One-click install.</p>
<div class="flex items-center text-teal-400 text-sm">
Connect HubSpot
<svg class="w-4 h-4 ml-1 opacity-0 group-hover:opacity-100 transition-opacity" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/>
</svg>
</div>
</a>
<!-- API -->
<a href="#" class="group bg-zinc-900/50 border border-zinc-800 rounded-xl p-6 hover:border-emerald-500/50 transition-all">
<div class="w-12 h-12 rounded-lg bg-gradient-to-br from-emerald-500 to-teal-500 flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4"/>
</svg>
</div>
<h3 class="font-semibold mb-2">REST API</h3>
<p class="text-sm text-zinc-400 mb-4">OpenAPI spec. llms.txt for LLMs. Build your own integrations.</p>
<div class="flex items-center text-emerald-400 text-sm">
View Docs
<svg class="w-4 h-4 ml-1 opacity-0 group-hover:opacity-100 transition-opacity" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/>
</svg>
</div>
</a>
</div>
</div>
</section>
<!-- Community Leaderboard Section -->
<section class="py-20 md:py-28 bg-gradient-to-b from-amber-500/5 via-transparent to-transparent">
<div class="max-w-7xl mx-auto px-6">
<div class="grid md:grid-cols-2 gap-12 items-center">
<!-- Left: Description -->
<div>
<div class="inline-flex items-center gap-2 px-3 py-1 rounded-full border border-amber-500/30 text-amber-400 text-sm mb-4">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
Community Ranked
</div>
<h2 class="text-3xl md:text-4xl font-bold mb-4">Prompts That Actually Work</h2>
<p class="text-zinc-400 mb-6">
The community votes on what works. See which prompts are booking meetings, closing deals, and generating real revenue.
</p>
<!-- Stats -->
<div class="grid grid-cols-3 gap-4 mb-6">
<div class="p-4 rounded-xl bg-zinc-900/50 border border-zinc-800">
<div class="text-2xl font-bold text-amber-400">$2.8M+</div>
<div class="text-xs text-zinc-500">Revenue Tracked</div>
</div>
<div class="p-4 rounded-xl bg-zinc-900/50 border border-zinc-800">
<div class="text-2xl font-bold text-amber-400">1,200+</div>
<div class="text-xs text-zinc-500">Outcomes Logged</div>
</div>
<div class="p-4 rounded-xl bg-zinc-900/50 border border-zinc-800">
<div class="text-2xl font-bold text-amber-400">89</div>
<div class="text-xs text-zinc-500">Deals Won</div>
</div>
</div>
<div class="flex gap-4">
<a href="#" class="px-5 py-2.5 rounded-lg bg-gradient-to-r from-orange-500 to-red-500 text-white font-medium text-sm">
View Leaderboard
</a>
<a href="#" class="px-5 py-2.5 rounded-lg border border-zinc-700 text-zinc-300 font-medium text-sm hover:border-zinc-600 transition-all">
See Impact
</a>
</div>
</div>
<!-- Right: Terminal Mockup -->
<div class="bg-zinc-900 rounded-xl border border-zinc-800 overflow-hidden">
<div class="px-4 py-3 border-b border-zinc-800 flex items-center gap-2">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
<span class="text-xs text-zinc-500 ml-2">Top Prompts</span>
</div>
<div class="p-4 space-y-3">
<!-- Prompt 1 -->
<div class="flex items-center gap-3 p-3 rounded-lg bg-zinc-800/50">
<div class="text-lg font-bold text-amber-400">#1</div>
<div class="flex-1 min-w-0">
<div class="font-medium text-sm truncate">MEDDPICC Discovery Framework</div>
<div class="text-xs text-zinc-500">847 points</div>
</div>
<div class="px-2 py-1 rounded border border-green-500/30 text-green-400 text-xs">$892K</div>
</div>
<!-- Prompt 2 -->
<div class="flex items-center gap-3 p-3 rounded-lg bg-zinc-800/50">
<div class="text-lg font-bold text-amber-400">#2</div>
<div class="flex-1 min-w-0">
<div class="font-medium text-sm truncate">Executive Cold Email - Series A</div>
<div class="text-xs text-zinc-500">634 points</div>
</div>
<div class="px-2 py-1 rounded border border-green-500/30 text-green-400 text-xs">$654K</div>
</div>
<!-- Prompt 3 -->
<div class="flex items-center gap-3 p-3 rounded-lg bg-zinc-800/50">
<div class="text-lg font-bold text-amber-400">#3</div>
<div class="flex-1 min-w-0">
<div class="font-medium text-sm truncate">Competitor Displacement Playbook</div>
<div class="text-xs text-zinc-500">521 points</div>
</div>
<div class="px-2 py-1 rounded border border-green-500/30 text-green-400 text-xs">$445K</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Voice AI Section -->
<section class="py-20 md:py-28">
<div class="max-w-7xl mx-auto px-6">
<div class="grid md:grid-cols-2 gap-12 items-center">
<!-- Left: Waveform Visual -->
<div class="bg-zinc-900 rounded-xl border border-zinc-800 p-8">
<div class="flex items-center gap-4 mb-6">
<div class="w-12 h-12 rounded-full bg-gradient-to-br from-violet-500 to-purple-500 flex items-center justify-center">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 11a7 7 0 01-7 7m0 0a7 7 0 01-7-7m7 7v4m0 0H8m4 0h4m-4-8a3 3 0 01-3-3V5a3 3 0 116 0v6a3 3 0 01-3 3z"/>
</svg>
</div>
<div>
<div class="font-semibold">Agentic Voice</div>
<div class="text-sm text-zinc-500">Cold Call Script</div>
</div>
</div>
<!-- Waveform -->
<div class="flex items-center justify-center gap-1 h-24">
<div class="w-1 h-8 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 0s"></div>
<div class="w-1 h-16 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 0.1s"></div>
<div class="w-1 h-12 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 0.2s"></div>
<div class="w-1 h-20 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 0.3s"></div>
<div class="w-1 h-10 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 0.4s"></div>
<div class="w-1 h-14 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 0.5s"></div>
<div class="w-1 h-18 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 0.6s"></div>
<div class="w-1 h-8 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 0.7s"></div>
<div class="w-1 h-16 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 0.8s"></div>
<div class="w-1 h-12 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 0.9s"></div>
<div class="w-1 h-20 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 1.0s"></div>
<div class="w-1 h-6 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 1.1s"></div>
<div class="w-1 h-14 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 1.2s"></div>
<div class="w-1 h-10 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 1.3s"></div>
<div class="w-1 h-18 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 1.4s"></div>
<div class="w-1 h-8 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 1.5s"></div>
<div class="w-1 h-12 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 1.6s"></div>
<div class="w-1 h-16 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 1.7s"></div>
<div class="w-1 h-6 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 1.8s"></div>
<div class="w-1 h-14 bg-gradient-to-t from-violet-500 to-purple-500 rounded-full waveform-bar" style="animation-delay: 1.9s"></div>
</div>
<div class="mt-6 p-4 bg-zinc-800 rounded-lg">
<p class="text-sm font-mono text-zinc-400">
"Hi [PROSPECT], this is [NAME] from [COMPANY]. Did I catch you at a bad time?"
</p>
</div>
</div>
<!-- Right: Description -->
<div>
<div class="inline-flex items-center gap-2 px-3 py-1 rounded-full border border-violet-500/30 text-violet-400 text-sm mb-4">
Powered by Vapi
</div>
<h2 class="text-3xl md:text-4xl font-bold mb-4">Agentic Voice in Minutes</h2>
<p class="text-zinc-400 mb-6">
Deploy battle-tested cold call scripts to Vapi. Agentic calls that handle objections, book meetings, and follow your exact playbook.
</p>
<div class="space-y-3 mb-6">
<div class="flex items-center gap-2 text-sm">
<svg class="w-4 h-4 text-violet-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
<span>MEDDPICC Discovery</span>
</div>
<div class="flex items-center gap-2 text-sm">
<svg class="w-4 h-4 text-violet-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
<span>Executive Cold Call</span>
</div>
<div class="flex items-center gap-2 text-sm">
<svg class="w-4 h-4 text-violet-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
<span>Objection Handling</span>
</div>
<div class="flex items-center gap-2 text-sm">
<svg class="w-4 h-4 text-violet-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
<span>Voicemail Drops</span>
</div>
</div>
<a href="#" class="inline-flex items-center px-5 py-2.5 rounded-lg bg-gradient-to-r from-violet-500 to-purple-500 text-white font-medium text-sm hover:from-violet-600 hover:to-purple-600 transition-all">
Explore Voice Templates
</a>
</div>
</div>
</div>
</section>
<!-- Developer Section -->
<section class="py-20 md:py-28 bg-gradient-to-b from-emerald-500/5 via-transparent to-transparent">
<div class="max-w-7xl mx-auto px-6">
<div class="text-center mb-12">
<div class="inline-flex items-center gap-2 px-3 py-1 rounded-full border border-emerald-500/30 text-emerald-400 text-sm mb-4">
For Developers
</div>
<h2 class="text-3xl md:text-4xl font-bold mb-4">Build With GTM Skills</h2>
<p class="text-zinc-400 max-w-2xl mx-auto">
Full REST API. LLM-optimized with llms.txt. OpenAPI spec included.
</p>
</div>
<!-- Code Block -->
<div class="max-w-3xl mx-auto">
<div class="bg-zinc-900 rounded-xl border border-zinc-800 overflow-hidden">
<div class="px-4 py-3 border-b border-zinc-800 flex items-center justify-between">
<div class="flex items-center gap-2">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
<span class="text-xs text-zinc-500 ml-2">terminal</span>
</div>
<button class="p-1.5 rounded hover:bg-zinc-800 text-zinc-500 hover:text-white transition-colors">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z"/>
</svg>
</button>
</div>
<pre class="p-6 font-mono text-sm overflow-x-auto"><code class="text-zinc-300"><span class="text-zinc-500"># Get prompts for SDR role</span>
curl https://gtm-skills.com/api/v1/prompts \
-H "Accept: application/json" \
-d "role=sdr&industry=saas"
<span class="text-zinc-500"># Response</span>
{
<span class="text-emerald-400">"data"</span>: [
{
<span class="text-emerald-400">"id"</span>: <span class="text-amber-400">"cold-email-series-a"</span>,
<span class="text-emerald-400">"title"</span>: <span class="text-amber-400">"Cold Email for Series A Founders"</span>,
<span class="text-emerald-400">"content"</span>: <span class="text-amber-400">"..."</span>,
<span class="text-emerald-400">"category"</span>: <span class="text-amber-400">"outreach"</span>
}
]
}</code></pre>
</div>
</div>
<!-- Resource Links -->
<div class="flex flex-wrap justify-center gap-3 mt-8">
<a href="#" class="flex items-center gap-2 px-4 py-2 rounded-lg border border-zinc-700 text-zinc-300 text-sm hover:border-zinc-600 hover:text-white transition-all">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/>
</svg>
API Reference
</a>
<a href="#" class="flex items-center gap-2 px-4 py-2 rounded-lg border border-zinc-700 text-zinc-300 text-sm hover:border-zinc-600 hover:text-white transition-all">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4"/>
</svg>
OpenAPI Spec
</a>
<a href="#" class="flex items-center gap-2 px-4 py-2 rounded-lg border border-zinc-700 text-zinc-300 text-sm hover:border-zinc-600 hover:text-white transition-all">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.75 17L9 20l-1 1h8l-1-1-.75-3M3 13h18M5 17h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/>
</svg>
llms.txt
</a>
<a href="#" class="flex items-center gap-2 px-4 py-2 rounded-lg border border-zinc-700 text-zinc-300 text-sm hover:border-zinc-600 hover:text-white transition-all">
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
View Source
</a>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 md:py-28">
<div class="max-w-4xl mx-auto px-6 text-center">
<div class="relative p-8 md:p-12 rounded-2xl bg-gradient-to-r from-orange-500/10 to-red-500/10 border border-orange-500/20 glow">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
Ready to 10x Your Sales Productivity?
</h2>
<p class="text-zinc-400 mb-8 max-w-xl mx-auto">
Join thousands of sales teams using GTM Skills. Free forever, open source, no signup required.
</p>
<div class="flex flex-wrap gap-4 justify-center">
<a href="#" class="px-6 py-3 rounded-lg bg-gradient-to-r from-orange-500 to-red-500 text-white font-medium hover:from-orange-600 hover:to-red-600 transition-all">
Browse Prompts
</a>
<a href="#" class="flex items-center gap-2 px-6 py-3 rounded-lg border border-zinc-700 text-zinc-300 font-medium hover:border-zinc-600 hover:text-white transition-all">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
Star on GitHub
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="border-t border-zinc-800 py-12">
<div class="max-w-7xl mx-auto px-6">
<div class="grid grid-cols-2 md:grid-cols-5 gap-8">
<!-- Logo -->
<div class="col-span-2 md:col-span-1">
<div class="flex items-center gap-2 mb-4">
<div class="w-8 h-8 rounded-lg bg-gradient-to-br from-orange-500 to-red-500 flex items-center justify-center">
<svg class="w-5 h-5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"/>
</svg>
</div>
<span class="font-bold">GTM Skills</span>
</div>
<p class="text-sm text-zinc-500">The GTM Operating System</p>
</div>
<!-- Prompts -->
<div>
<h4 class="font-semibold text-sm mb-4">Prompts</h4>
<ul class="space-y-2 text-sm text-zinc-500">
<li><a href="#" class="hover:text-white transition-colors">By Role</a></li>
<li><a href="#" class="hover:text-white transition-colors">By Industry</a></li>
<li><a href="#" class="hover:text-white transition-colors">By Methodology</a></li>
<li><a href="#" class="hover:text-white transition-colors">All Prompts</a></li>
</ul>
</div>
<!-- Tools -->
<div>
<h4 class="font-semibold text-sm mb-4">Tools</h4>
<ul class="space-y-2 text-sm text-zinc-500">
<li><a href="#" class="hover:text-white transition-colors">Browser Extension</a></li>
<li><a href="#" class="hover:text-white transition-colors">Voice Templates</a></li>
<li><a href="#" class="hover:text-white transition-colors">HubSpot</a></li>
<li><a href="#" class="hover:text-white transition-colors">MCP Server</a></li>
</ul>
</div>
<!-- Community -->
<div>
<h4 class="font-semibold text-sm mb-4">Community</h4>
<ul class="space-y-2 text-sm text-zinc-500">
<li><a href="#" class="hover:text-white transition-colors">Leaderboard</a></li>
<li><a href="#" class="hover:text-white transition-colors">Impact Dashboard</a></li>
<li><a href="#" class="hover:text-white transition-colors">Submit Prompt</a></li>
</ul>
</div>
<!-- Developers -->
<div>
<h4 class="font-semibold text-sm mb-4">Developers</h4>
<ul class="space-y-2 text-sm text-zinc-500">
<li><a href="#" class="hover:text-white transition-colors">API Docs</a></li>
<li><a href="#" class="hover:text-white transition-colors">OpenAPI Spec</a></li>
<li><a href="#" class="hover:text-white transition-colors">llms.txt</a></li>
<li><a href="#" class="hover:text-white transition-colors">GitHub</a></li>
</ul>
</div>
</div>
<div class="border-t border-zinc-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center gap-4">
<p class="text-sm text-zinc-500">Made with ♥ by Prospeda · MIT License · © 2026</p>
<div class="flex items-center gap-4">
<a href="#" class="text-zinc-500 hover:text-white transition-colors">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
</a>
<a href="#" class="text-zinc-500 hover:text-white transition-colors">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></svg>
</a>
<a href="#" class="text-zinc-500 hover:text-white transition-colors">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
</a>
</div>
</div>
</div>
</footer>
</body>
</html>