-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
269 lines (231 loc) · 7.47 KB
/
Copy pathcontact.html
File metadata and controls
269 lines (231 loc) · 7.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="canonical" href="https://blackroad.io/contact">
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="https://images.blackroad.io/brand/br-square-512.png">
<meta property="og:image" content="https://images.blackroad.io/brand/br-square-512.png">
<title>Contact — BlackRoad OS</title>
<link rel="stylesheet" href="/_shared/design.css">
<style>
.contact-layout {
display: grid;
grid-template-columns: 1fr 320px;
gap: var(--sp-xl);
max-width: 900px;
margin: 0 auto;
padding: var(--sp-2xl) var(--sp-lg);
}
.contact-form-section h1 {
margin-bottom: var(--sp-sm);
}
.contact-form-section p {
color: var(--subtle);
font-size: 0.95rem;
margin-bottom: var(--sp-xl);
}
.form-group {
margin-bottom: var(--sp-lg);
}
.form-group label {
display: block;
font-family: var(--font-mono);
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.15em;
color: var(--muted);
margin-bottom: var(--sp-sm);
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-input);
padding: 12px 14px;
color: var(--white);
font-family: var(--font-body);
font-size: 0.9rem;
transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--violet);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
color: var(--dim);
}
.form-group select {
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 14px center;
cursor: pointer;
}
.form-group select option {
background: var(--surface);
color: var(--white);
}
.form-group textarea {
min-height: 140px;
resize: vertical;
}
.sidebar {
padding-top: 60px;
}
.sidebar-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-card);
padding: var(--sp-lg);
}
.sidebar-item {
margin-bottom: var(--sp-lg);
}
.sidebar-item:last-child {
margin-bottom: 0;
}
.sidebar-item .sidebar-label {
font-family: var(--font-mono);
font-size: 0.65rem;
text-transform: uppercase;
letter-spacing: 0.2em;
color: var(--muted);
margin-bottom: var(--sp-xs);
}
.sidebar-item .sidebar-value {
font-size: 0.9rem;
color: var(--secondary);
line-height: 1.5;
}
.sidebar-item .sidebar-value a {
color: var(--secondary);
border-bottom: 1px solid var(--border);
transition: border-color 0.2s, color 0.2s;
}
.sidebar-item .sidebar-value a:hover {
color: var(--white);
border-color: var(--muted);
}
.response-note {
margin-top: var(--sp-lg);
padding: var(--sp-md);
background: var(--inset);
border-radius: var(--radius-small);
font-size: 0.8rem;
color: var(--subtle);
border-left: 2px solid var(--violet);
}
@media (max-width: 720px) {
.contact-layout {
grid-template-columns: 1fr;
padding: var(--sp-xl) var(--sp-md);
}
.sidebar {
padding-top: 0;
}
}
</style>
<link rel="manifest" href="/manifest.json">
<meta name="theme-color" content="#0a0a0a">
</head>
<body>
<!-- Nav -->
<nav class="br-nav">
<a href="/" class="nav-brand">
<div class="spectrum-mark">
<span></span><span></span><span></span><span></span><span></span><span></span>
</div>
Contact
</a>
<div class="nav-links">
<a href="/">Home</a>
</div>
</nav>
<div class="grad-bar"></div>
<!-- Contact Layout -->
<div class="contact-layout">
<!-- Form -->
<div class="contact-form-section">
<h1>Get in touch.</h1>
<p>We'd love to hear from you. Fill out the form and we'll get back to you.</p>
<form id="contact-form">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Your name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="you@example.com" required>
</div>
<div class="form-group">
<label for="subject">Subject</label>
<select id="subject" name="subject" required>
<option value="" disabled selected>Select a topic</option>
<option value="General">General</option>
<option value="Support">Support</option>
<option value="Enterprise">Enterprise</option>
<option value="Partnership">Partnership</option>
</select>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" placeholder="Tell us what you're thinking..." required></textarea>
</div>
<button type="submit" class="btn-primary">Send</button>
</form>
</div>
<!-- Sidebar -->
<div class="sidebar">
<div class="sidebar-card">
<div class="sidebar-item">
<div class="sidebar-label">Email</div>
<div class="sidebar-value">
<a href="mailto:alexa@blackroad.io">alexa@blackroad.io</a>
</div>
</div>
<div class="sidebar-item">
<div class="sidebar-label">GitHub</div>
<div class="sidebar-value">
<a href="https://github.com/BlackRoad-OS-Inc" target="_blank" rel="noopener">github.com/BlackRoad-OS-Inc</a>
</div>
</div>
<div class="sidebar-item">
<div class="sidebar-label">Location</div>
<div class="sidebar-value">Delaware, USA — infrastructure everywhere</div>
</div>
</div>
<div class="response-note">
We typically respond within 24 hours.
</div>
</div>
</div>
<!-- Footer -->
<div class="grad-bar"></div>
<footer>
<span>© 2026 BlackRoad OS, Inc.</span>
<span>Pave Tomorrow.</span>
</footer>
<script>
document.getElementById('contact-form').addEventListener('submit', function(e) {
e.preventDefault();
const name = document.getElementById('name').value;
const email = document.getElementById('email').value;
const subject = document.getElementById('subject').value;
const message = document.getElementById('message').value;
const body = `Name: ${name}\nEmail: ${email}\n\n${message}`;
const mailto = `mailto:alexa@blackroad.io?subject=${encodeURIComponent('[' + subject + '] Contact from ' + name)}&body=${encodeURIComponent(body)}`;
window.location.href = mailto;
});
</script>
<script>if("serviceWorker" in navigator)navigator.serviceWorker.register("/sw.js").catch(()=>{});</script>
<script src="/_shared/feedback.js" defer></script>
<script src="/_shared/crosslinks.js" defer></script>
</body>
</html>