-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtestimonials.html
More file actions
365 lines (352 loc) · 13.5 KB
/
testimonials.html
File metadata and controls
365 lines (352 loc) · 13.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>What Our Customers Say - BlackRoad OS</title>
<!-- SEO Meta Tags -->
<meta name="description" content="See why developers and teams love BlackRoad OS. Real testimonials from real customers.">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #0f172a;
color: #e2e8f0;
}
.header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 60px 40px;
text-align: center;
}
.header h1 {
font-size: 3rem;
margin-bottom: 15px;
font-weight: 800;
}
.header p {
font-size: 1.2rem;
opacity: 0.9;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 60px 40px;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-bottom: 60px;
}
.stat-card {
background: #1e293b;
padding: 40px;
border-radius: 20px;
text-align: center;
border: 1px solid #334155;
}
.stat-number {
font-size: 3.5rem;
font-weight: 800;
color: #10b981;
margin-bottom: 10px;
}
.stat-label {
font-size: 1.1rem;
color: #cbd5e1;
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
margin-bottom: 40px;
}
.testimonial-card {
background: #1e293b;
padding: 35px;
border-radius: 20px;
border: 1px solid #334155;
transition: transform 0.2s, border-color 0.2s;
position: relative;
}
.testimonial-card:hover {
transform: translateY(-5px);
border-color: #10b981;
}
.quote-icon {
font-size: 3rem;
color: #10b981;
opacity: 0.3;
position: absolute;
top: 20px;
right: 30px;
}
.testimonial-text {
font-size: 1.1rem;
line-height: 1.7;
margin-bottom: 25px;
color: #cbd5e1;
}
.testimonial-author {
display: flex;
align-items: center;
gap: 15px;
}
.author-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: bold;
}
.author-info {
flex: 1;
}
.author-name {
font-weight: 700;
color: #e2e8f0;
margin-bottom: 3px;
}
.author-role {
font-size: 0.9rem;
color: #94a3b8;
}
.stars {
color: #f59e0b;
font-size: 1.2rem;
margin-bottom: 15px;
}
.featured-badge {
background: linear-gradient(135deg, #f59e0b, #ef4444);
color: white;
padding: 5px 15px;
border-radius: 15px;
font-size: 0.8rem;
font-weight: bold;
display: inline-block;
margin-bottom: 15px;
}
.cta-box {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 50px;
border-radius: 20px;
text-align: center;
margin-top: 60px;
}
.cta-box h2 {
font-size: 2rem;
margin-bottom: 15px;
}
.cta-box p {
font-size: 1.1rem;
margin-bottom: 30px;
opacity: 0.9;
}
.button {
background: #10b981;
color: white;
border: none;
padding: 18px 50px;
font-size: 1.2rem;
border-radius: 50px;
cursor: pointer;
font-weight: 700;
text-decoration: none;
display: inline-block;
transition: transform 0.2s, box-shadow 0.2s;
margin: 5px;
}
.button:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.nav-link {
display: inline-block;
color: white;
text-decoration: none;
margin: 0 15px;
padding: 10px;
transition: opacity 0.2s;
}
.nav-link:hover {
opacity: 0.8;
}
</style>
</head>
<body>
<div class="header">
<div style="margin-bottom: 30px;">
<a href="index.html" class="nav-link">Home</a>
<a href="pricing.html" class="nav-link">Pricing</a>
<a href="features.html" class="nav-link">Features</a>
<a href="faq.html" class="nav-link">FAQ</a>
</div>
<h1>Loved by Developers Worldwide</h1>
<p>See what our customers have to say</p>
</div>
<div class="container">
<!-- Stats -->
<div class="stats-grid">
<div class="stat-card">
<div class="stat-number">4.9</div>
<div class="stat-label">Average Rating</div>
</div>
<div class="stat-card">
<div class="stat-number">500+</div>
<div class="stat-label">Happy Customers</div>
</div>
<div class="stat-card">
<div class="stat-number">10k+</div>
<div class="stat-label">Deployments</div>
</div>
<div class="stat-card">
<div class="stat-number">99.9%</div>
<div class="stat-label">Uptime</div>
</div>
</div>
<!-- Testimonials -->
<div class="testimonials-grid">
<div class="testimonial-card">
<div class="quote-icon">"</div>
<div class="featured-badge">🏆 FOUNDING MEMBER</div>
<div class="stars">★★★★★</div>
<div class="testimonial-text">
"BlackRoad OS saved us $400/month in SaaS subscriptions. We went from juggling 8 different tools to just one platform. Best decision we made this year."
</div>
<div class="testimonial-author">
<div class="author-avatar">SM</div>
<div class="author-info">
<div class="author-name">Sarah Martinez</div>
<div class="author-role">CTO, TechStart Inc</div>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="quote-icon">"</div>
<div class="stars">★★★★★</div>
<div class="testimonial-text">
"The AI workflows are game-changing. What used to take our team 2 hours of code review now happens automatically in minutes. We ship 3x faster."
</div>
<div class="testimonial-author">
<div class="author-avatar">JC</div>
<div class="author-info">
<div class="author-name">James Chen</div>
<div class="author-role">Lead Developer, BuildFast Labs</div>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="quote-icon">"</div>
<div class="featured-badge">🏆 FOUNDING MEMBER</div>
<div class="stars">★★★★★</div>
<div class="testimonial-text">
"I'm a solo founder and BlackRoad OS gives me superpowers. I can compete with teams 10x my size. The founding member discount is insane value."
</div>
<div class="testimonial-author">
<div class="author-avatar">EK</div>
<div class="author-info">
<div class="author-name">Emily Kim</div>
<div class="author-role">Founder, SoloShip</div>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="quote-icon">"</div>
<div class="stars">★★★★★</div>
<div class="testimonial-text">
"Deployment went from 45 minutes to 30 seconds. No joke. The global edge network is incredibly fast. Our users noticed the difference immediately."
</div>
<div class="testimonial-author">
<div class="author-avatar">MR</div>
<div class="author-info">
<div class="author-name">Marcus Rodriguez</div>
<div class="author-role">DevOps Lead, CloudNative Co</div>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="quote-icon">"</div>
<div class="stars">★★★★★</div>
<div class="testimonial-text">
"Finally, a platform built for the AI era. The integrations just work. Support is incredible. We migrated our entire stack in one weekend."
</div>
<div class="testimonial-author">
<div class="author-avatar">AP</div>
<div class="author-info">
<div class="author-name">Aisha Patel</div>
<div class="author-role">Engineering Manager, DataFlow</div>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="quote-icon">"</div>
<div class="featured-badge">🏆 FOUNDING MEMBER</div>
<div class="stars">★★★★★</div>
<div class="testimonial-text">
"The founding member program is the best deal I've ever seen in SaaS. $29/mo for enterprise features? Locked in for life? No-brainer."
</div>
<div class="testimonial-author">
<div class="author-avatar">DL</div>
<div class="author-info">
<div class="author-name">David Lee</div>
<div class="author-role">CEO, StartupHub</div>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="quote-icon">"</div>
<div class="stars">★★★★★</div>
<div class="testimonial-text">
"We manage 20+ client projects. BlackRoad OS keeps everything organized in one place. The team dashboard is exactly what we needed."
</div>
<div class="testimonial-author">
<div class="author-avatar">RB</div>
<div class="author-info">
<div class="author-name">Rachel Brooks</div>
<div class="author-role">Agency Owner, WebPro Studios</div>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="quote-icon">"</div>
<div class="stars">★★★★★</div>
<div class="testimonial-text">
"Security was our biggest concern. SOC 2 compliance, SSO, audit logs—all included. Our enterprise clients are impressed."
</div>
<div class="testimonial-author">
<div class="author-avatar">TS</div>
<div class="author-info">
<div class="author-name">Tom Stevens</div>
<div class="author-role">Security Lead, FinTech Pro</div>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="quote-icon">"</div>
<div class="featured-badge">🏆 FOUNDING MEMBER</div>
<div class="stars">★★★★★</div>
<div class="testimonial-text">
"I've tried every deployment platform out there. BlackRoad OS is the first one that feels like it was built for developers, by developers."
</div>
<div class="testimonial-author">
<div class="author-avatar">NK</div>
<div class="author-info">
<div class="author-name">Nina Kumar</div>
<div class="author-role">Full-Stack Developer, Indie Hacker</div>
</div>
</div>
</div>
</div>
<!-- CTA -->
<div class="cta-box">
<h2>Join 500+ Happy Customers</h2>
<p>Start your 14-day free trial. No credit card required. Cancel anytime.</p>
<a href="https://buy.stripe.com/9B6cN4fOr6bYbvi8xD" class="button">Get 50% Off Forever - 79 Spots Left</a>
</div>
</div>
</body>
</html>