-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
337 lines (312 loc) · 12.9 KB
/
contact.html
File metadata and controls
337 lines (312 loc) · 12.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us & Book a Demo | BlackRoad OS</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Get in touch with BlackRoad OS. Book a demo, ask questions, or request a custom quote for your team.">
<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: 1100px;
margin: 0 auto;
padding: 60px 40px;
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin: 40px 0;
}
@media (max-width: 868px) {
.contact-grid {
grid-template-columns: 1fr;
}
}
.contact-form {
background: #1e293b;
padding: 40px;
border-radius: 20px;
border: 1px solid #334155;
}
.contact-form h2 {
color: #10b981;
font-size: 1.8rem;
margin-bottom: 30px;
}
.form-group {
margin-bottom: 25px;
}
.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: #cbd5e1;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 15px 20px;
font-size: 1rem;
border: 1px solid #334155;
border-radius: 10px;
background: #0f172a;
color: #e2e8f0;
font-family: inherit;
}
.form-group textarea {
min-height: 150px;
resize: vertical;
}
.submit-btn {
background: #10b981;
color: white;
border: none;
padding: 18px;
font-size: 1.1rem;
border-radius: 10px;
cursor: pointer;
font-weight: 700;
width: 100%;
transition: transform 0.2s;
}
.submit-btn:hover {
transform: translateY(-2px);
}
.contact-info {
background: #1e293b;
padding: 40px;
border-radius: 20px;
border: 1px solid #334155;
}
.contact-info h2 {
color: #10b981;
font-size: 1.8rem;
margin-bottom: 30px;
}
.info-item {
padding: 20px 0;
border-bottom: 1px solid #334155;
}
.info-item:last-child {
border-bottom: none;
}
.info-item .icon {
font-size: 1.5rem;
margin-bottom: 10px;
}
.info-item h3 {
color: #10b981;
margin-bottom: 10px;
}
.info-item p {
color: #cbd5e1;
line-height: 1.6;
}
.info-item a {
color: #10b981;
text-decoration: none;
}
.info-item a:hover {
text-decoration: underline;
}
.quick-links {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 40px;
border-radius: 20px;
margin-top: 40px;
}
.quick-links h3 {
margin-bottom: 20px;
font-size: 1.5rem;
}
.quick-links-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
}
.quick-link-btn {
background: rgba(255,255,255,0.2);
backdrop-filter: blur(10px);
padding: 20px;
border-radius: 15px;
text-decoration: none;
color: white;
font-weight: 600;
text-align: center;
transition: transform 0.2s, background 0.2s;
display: block;
}
.quick-link-btn:hover {
transform: translateY(-3px);
background: rgba(255,255,255,0.3);
}
</style>
</head>
<body>
<div class="header">
<h1>Get in Touch</h1>
<p>Let's talk about how BlackRoad OS can help your team ship faster</p>
</div>
<div class="container">
<div class="contact-grid">
<!-- Contact Form -->
<div class="contact-form">
<h2>Send Us a Message</h2>
<form id="contact-form" onsubmit="handleSubmit(event)">
<div class="form-group">
<label for="name">Your Name *</label>
<input type="text" id="name" required>
</div>
<div class="form-group">
<label for="email">Email Address *</label>
<input type="email" id="email" required>
</div>
<div class="form-group">
<label for="company">Company Name</label>
<input type="text" id="company">
</div>
<div class="form-group">
<label for="inquiry-type">I'm interested in: *</label>
<select id="inquiry-type" required>
<option value="">Select an option...</option>
<option value="demo">Booking a demo</option>
<option value="pricing">Custom pricing quote</option>
<option value="enterprise">Enterprise features</option>
<option value="migration">Migration help</option>
<option value="partnership">Partnership opportunity</option>
<option value="support">Technical support</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-group">
<label for="message">Message *</label>
<textarea id="message" required placeholder="Tell us about your project and how we can help..."></textarea>
</div>
<button type="submit" class="submit-btn">Send Message →</button>
<p style="margin-top: 15px; font-size: 0.9rem; opacity: 0.7;">
We typically respond within 4 hours during business hours.
</p>
</form>
</div>
<!-- Contact Info -->
<div>
<div class="contact-info">
<h2>Other Ways to Reach Us</h2>
<div class="info-item">
<div class="icon">📧</div>
<h3>Email</h3>
<p><a href="mailto:blackroad.systems@gmail.com">blackroad.systems@gmail.com</a></p>
<p style="font-size: 0.9rem; opacity: 0.8; margin-top: 5px;">4-hour response time for founders</p>
</div>
<div class="info-item">
<div class="icon">💬</div>
<h3>Discord Community</h3>
<p><a href="https://discord.gg/blackroad" target="_blank">Join our Discord →</a></p>
<p style="font-size: 0.9rem; opacity: 0.8; margin-top: 5px;">Chat with the team and other users</p>
</div>
<div class="info-item">
<div class="icon">🐦</div>
<h3>Twitter/X</h3>
<p><a href="https://twitter.com/blackroad_os" target="_blank">@blackroad_os</a></p>
<p style="font-size: 0.9rem; opacity: 0.8; margin-top: 5px;">Follow for updates and announcements</p>
</div>
<div class="info-item">
<div class="icon">📅</div>
<h3>Book a Demo</h3>
<p><a href="https://cal.com/blackroad/demo" target="_blank">Schedule 30-min call →</a></p>
<p style="font-size: 0.9rem; opacity: 0.8; margin-top: 5px;">See BlackRoad OS in action</p>
</div>
<div class="info-item">
<div class="icon">🏢</div>
<h3>Enterprise Sales</h3>
<p><a href="mailto:blackroad.systems@gmail.com?subject=Enterprise Inquiry">blackroad.systems@gmail.com</a></p>
<p style="font-size: 0.9rem; opacity: 0.8; margin-top: 5px;">Custom quotes for teams 50+</p>
</div>
</div>
<div class="quick-links" style="margin-top: 20px;">
<h3>Quick Links</h3>
<div class="quick-links-grid">
<a href="pricing.html" class="quick-link-btn">💰 Pricing</a>
<a href="features.html" class="quick-link-btn">⚡ Features</a>
<a href="faq.html" class="quick-link-btn">❓ FAQ</a>
<a href="calculator.html" class="quick-link-btn">📊 ROI Calculator</a>
</div>
</div>
</div>
</div>
<!-- FAQ Quick Hits -->
<div style="margin-top: 60px;">
<h2 style="text-align: center; font-size: 2rem; color: #10b981; margin-bottom: 30px;">
Common Questions
</h2>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px;">
<div style="background: #1e293b; padding: 25px; border-radius: 15px;">
<h4 style="color: #10b981; margin-bottom: 10px;">How fast is onboarding?</h4>
<p style="color: #cbd5e1;">Most teams are up and running in under 30 minutes. We provide white-glove onboarding for enterprise customers.</p>
</div>
<div style="background: #1e293b; padding: 25px; border-radius: 15px;">
<h4 style="color: #10b981; margin-bottom: 10px;">Do you offer custom contracts?</h4>
<p style="color: #cbd5e1;">Yes! For teams 50+ we offer custom MSAs, payment terms, and SLAs. Contact enterprise sales.</p>
</div>
<div style="background: #1e293b; padding: 25px; border-radius: 15px;">
<h4 style="color: #10b981; margin-bottom: 10px;">Can you help us migrate?</h4>
<p style="color: #cbd5e1;">Absolutely. We offer free migration assistance from Vercel, Netlify, Heroku, and other platforms.</p>
</div>
</div>
</div>
</div>
<script>
function handleSubmit(event) {
event.preventDefault();
const name = document.getElementById('name').value;
const email = document.getElementById('email').value;
const company = document.getElementById('company').value;
const inquiryType = document.getElementById('inquiry-type').value;
const message = document.getElementById('message').value;
// In production, send to your backend/email service
console.log('Contact form submitted:', {
name, email, company, inquiryType, message
});
// Show success message
const form = document.querySelector('.contact-form');
form.innerHTML = `
<div style="text-align: center; padding: 60px 20px;">
<div style="font-size: 5rem; margin-bottom: 20px;">✅</div>
<h2 style="color: #10b981; margin-bottom: 15px;">Message Sent!</h2>
<p style="color: #cbd5e1; font-size: 1.1rem; margin-bottom: 30px;">
Thanks for reaching out! We'll get back to you within 4 hours.
</p>
<p style="opacity: 0.8;">
We sent a confirmation to <strong>${email}</strong>
</p>
<a href="index.html" style="display: inline-block; margin-top: 30px; background: #10b981; color: white; padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: 600;">
Back to Home
</a>
</div>
`;
}
</script>
</body>
</html>