-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfeatures.html
More file actions
422 lines (409 loc) · 15.5 KB
/
features.html
File metadata and controls
422 lines (409 loc) · 15.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Features - BlackRoad OS</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Compare BlackRoad OS features across all plans. See what makes us the best AI operating system for teams.">
<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;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
margin-bottom: 60px;
}
.feature-card {
background: #1e293b;
padding: 40px;
border-radius: 20px;
border: 1px solid #334155;
transition: transform 0.2s, border-color 0.2s;
}
.feature-card:hover {
transform: translateY(-5px);
border-color: #10b981;
}
.feature-icon {
font-size: 3rem;
margin-bottom: 20px;
}
.feature-card h3 {
font-size: 1.5rem;
color: #10b981;
margin-bottom: 15px;
}
.feature-card p {
line-height: 1.7;
color: #cbd5e1;
margin-bottom: 20px;
}
.feature-list {
list-style: none;
}
.feature-list li {
padding: 8px 0;
padding-left: 25px;
position: relative;
}
.feature-list li:before {
content: "✓";
position: absolute;
left: 0;
color: #10b981;
font-weight: bold;
}
.comparison-table {
background: #1e293b;
border-radius: 20px;
overflow: hidden;
border: 1px solid #334155;
margin: 40px 0;
}
.comparison-table table {
width: 100%;
border-collapse: collapse;
}
.comparison-table th {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 20px;
text-align: left;
font-size: 1.1rem;
}
.comparison-table td {
padding: 20px;
border-bottom: 1px solid #334155;
}
.comparison-table tr:last-child td {
border-bottom: none;
}
.comparison-table tr:nth-child(even) {
background: rgba(255,255,255,0.02);
}
.check {
color: #10b981;
font-size: 1.3rem;
}
.cross {
color: #ef4444;
font-size: 1.3rem;
}
.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;
}
.category-title {
font-size: 2rem;
color: #10b981;
margin: 60px 0 30px 0;
text-align: center;
}
</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>Everything You Need to Ship Fast</h1>
<p>One platform. Unlimited possibilities.</p>
</div>
<div class="container">
<!-- Core Features -->
<h2 class="category-title">⚡ Core Features</h2>
<div class="feature-grid">
<div class="feature-card">
<div class="feature-icon">🚀</div>
<h3>Instant Deployments</h3>
<p>Deploy to production in seconds, not hours. Push to Git and we handle the rest.</p>
<ul class="feature-list">
<li>Global edge network (Cloudflare)</li>
<li>Automatic SSL certificates</li>
<li>Preview deployments for every PR</li>
<li>Rollback to any version instantly</li>
<li>Custom domains with one click</li>
</ul>
</div>
<div class="feature-card">
<div class="feature-icon">🤖</div>
<h3>AI-Powered Workflows</h3>
<p>Automate everything with built-in AI agents powered by Claude and GPT-4.</p>
<ul class="feature-list">
<li>Automated code reviews</li>
<li>Smart testing & QA</li>
<li>Documentation generation</li>
<li>Customer support automation</li>
<li>Custom AI agents (no code)</li>
</ul>
</div>
<div class="feature-card">
<div class="feature-icon">🔒</div>
<h3>Enterprise Security</h3>
<p>Bank-level security without the enterprise price tag.</p>
<ul class="feature-list">
<li>AES-256 encryption</li>
<li>SOC 2 compliant infrastructure</li>
<li>SSO & SAML authentication</li>
<li>Role-based access control</li>
<li>Audit logs for compliance</li>
</ul>
</div>
</div>
<!-- Collaboration Features -->
<h2 class="category-title">👥 Team Collaboration</h2>
<div class="feature-grid">
<div class="feature-card">
<div class="feature-icon">💬</div>
<h3>Built-in Communication</h3>
<p>Stop context switching between Slack, email, and project tools.</p>
<ul class="feature-list">
<li>Team chat with threads</li>
<li>Code-aware conversations</li>
<li>@mentions and notifications</li>
<li>File sharing & screenshots</li>
<li>Video calls (coming soon)</li>
</ul>
</div>
<div class="feature-card">
<div class="feature-icon">📋</div>
<h3>Project Management</h3>
<p>Tasks, issues, and roadmaps in one place.</p>
<ul class="feature-list">
<li>Kanban boards & sprints</li>
<li>GitHub/GitLab integration</li>
<li>Automatic issue tracking</li>
<li>Time tracking & estimates</li>
<li>Custom workflows</li>
</ul>
</div>
<div class="feature-card">
<div class="feature-icon">📚</div>
<h3>Knowledge Base</h3>
<p>Documentation that stays up-to-date automatically.</p>
<ul class="feature-list">
<li>Wiki with version control</li>
<li>AI-generated docs</li>
<li>Code snippets & examples</li>
<li>Search across everything</li>
<li>Public or private docs</li>
</ul>
</div>
</div>
<!-- Developer Tools -->
<h2 class="category-title">🛠️ Developer Experience</h2>
<div class="feature-grid">
<div class="feature-card">
<div class="feature-icon">⚙️</div>
<h3>CLI & API</h3>
<p>Automate everything with our powerful command-line interface.</p>
<ul class="feature-list">
<li>Deploy from terminal</li>
<li>Full REST API access</li>
<li>Webhooks for integrations</li>
<li>GraphQL endpoint</li>
<li>SDKs for all languages</li>
</ul>
</div>
<div class="feature-card">
<div class="feature-icon">📊</div>
<h3>Real-Time Analytics</h3>
<p>Know exactly what's happening in your applications.</p>
<ul class="feature-list">
<li>Performance monitoring</li>
<li>Error tracking & alerts</li>
<li>User analytics</li>
<li>Custom dashboards</li>
<li>API usage metrics</li>
</ul>
</div>
<div class="feature-card">
<div class="feature-icon">🔧</div>
<h3>Integrations</h3>
<p>Connect with the tools you already use.</p>
<ul class="feature-list">
<li>GitHub, GitLab, Bitbucket</li>
<li>Slack, Discord, Teams</li>
<li>Linear, Jira, Asana</li>
<li>Stripe, Auth0, Clerk</li>
<li>50+ more integrations</li>
</ul>
</div>
</div>
<!-- Comparison Table -->
<h2 class="category-title">📊 Feature Comparison</h2>
<div class="comparison-table">
<table>
<thead>
<tr>
<th>Feature</th>
<th>Founding Member</th>
<th>Pro</th>
<th>Enterprise</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Price</strong></td>
<td>$29/mo <small style="color: #10b981;">(50% off forever)</small></td>
<td>$58/mo</td>
<td>$199/mo</td>
</tr>
<tr>
<td>Deployments</td>
<td><span class="check">✓</span> Unlimited</td>
<td><span class="check">✓</span> Unlimited</td>
<td><span class="check">✓</span> Unlimited</td>
</tr>
<tr>
<td>Team Members</td>
<td><span class="check">✓</span> Up to 10</td>
<td><span class="check">✓</span> Up to 50</td>
<td><span class="check">✓</span> Unlimited</td>
</tr>
<tr>
<td>AI Workflows</td>
<td><span class="check">✓</span> Unlimited</td>
<td><span class="check">✓</span> Unlimited</td>
<td><span class="check">✓</span> Unlimited</td>
</tr>
<tr>
<td>Custom Domains</td>
<td><span class="check">✓</span> Unlimited</td>
<td><span class="check">✓</span> Unlimited</td>
<td><span class="check">✓</span> Unlimited</td>
</tr>
<tr>
<td>Analytics & Monitoring</td>
<td><span class="check">✓</span></td>
<td><span class="check">✓</span></td>
<td><span class="check">✓</span> Advanced</td>
</tr>
<tr>
<td>SSO / SAML</td>
<td><span class="check">✓</span></td>
<td><span class="check">✓</span></td>
<td><span class="check">✓</span></td>
</tr>
<tr>
<td>Priority Support</td>
<td><span class="check">✓</span> 4h response</td>
<td><span class="check">✓</span> 24h response</td>
<td><span class="check">✓</span> 1h response</td>
</tr>
<tr>
<td>24/7 Phone Support</td>
<td><span class="cross">✗</span></td>
<td><span class="cross">✗</span></td>
<td><span class="check">✓</span></td>
</tr>
<tr>
<td>Dedicated Account Manager</td>
<td><span class="cross">✗</span></td>
<td><span class="cross">✗</span></td>
<td><span class="check">✓</span></td>
</tr>
<tr>
<td>Custom Integrations</td>
<td><span class="cross">✗</span></td>
<td><span class="cross">✗</span></td>
<td><span class="check">✓</span></td>
</tr>
<tr>
<td>SLA Guarantee</td>
<td>99.9%</td>
<td>99.9%</td>
<td>99.95%</td>
</tr>
<tr>
<td>Founding Member Badge</td>
<td><span class="check">✓</span> 🏆</td>
<td><span class="cross">✗</span></td>
<td><span class="cross">✗</span></td>
</tr>
<tr>
<td>Early Access to Features</td>
<td><span class="check">✓</span></td>
<td><span class="cross">✗</span></td>
<td><span class="check">✓</span></td>
</tr>
</tbody>
</table>
</div>
<!-- CTA -->
<div class="cta-box">
<h2>Ready to Ship Faster?</h2>
<p>Start your 14-day free trial. No credit card required.</p>
<a href="https://buy.stripe.com/9B6cN4fOr6bYbvi8xD" class="button">Get 50% Off - Only 79 Spots Left</a>
</div>
</div>
</body>
</html>