-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
421 lines (370 loc) · 13.5 KB
/
index.html
File metadata and controls
421 lines (370 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bleuprint - Modern Mac Development Environment</title>
<meta name="description" content="Bootstrap your Mac with 120+ modern developer tools using Nix-Darwin. Security-first, reproducible, one-command setup.">
<!-- Open Graph / Social Media -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://bleulabs.github.io/bleuprint/">
<meta property="og:title" content="Bleuprint - Modern Mac Development Environment">
<meta property="og:description" content="Bootstrap your Mac with 120+ modern developer tools using Nix-Darwin. Security-first, reproducible, one-command setup.">
<meta property="og:image" content="https://bleulabs.github.io/bleuprint/assets/image.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://bleulabs.github.io/bleuprint/">
<meta property="twitter:title" content="Bleuprint - Modern Mac Development Environment">
<meta property="twitter:description" content="Bootstrap your Mac with 120+ modern developer tools using Nix-Darwin. Security-first, reproducible, one-command setup.">
<meta property="twitter:image" content="https://bleulabs.github.io/bleuprint/assets/image.png">
<!-- Favicon -->
<link rel="icon" type="image/png" href="assets/image.png">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
header {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
}
.logo {
display: flex;
align-items: center;
font-size: 1.5rem;
font-weight: bold;
color: #667eea;
}
.logo img {
width: 40px;
height: 40px;
margin-right: 10px;
border-radius: 8px;
}
.nav-links {
display: flex;
gap: 2rem;
list-style: none;
}
.nav-links a {
text-decoration: none;
color: #333;
font-weight: 500;
transition: color 0.3s;
}
.nav-links a:hover {
color: #667eea;
}
.hero {
text-align: center;
padding: 120px 0 80px;
color: white;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
font-weight: 700;
}
.hero p {
font-size: 1.3rem;
margin-bottom: 2rem;
opacity: 0.9;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 3rem;
}
.btn {
padding: 15px 30px;
border: none;
border-radius: 8px;
font-size: 1.1rem;
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
cursor: pointer;
display: inline-block;
}
.btn-primary {
background: #fff;
color: #667eea;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.btn-secondary {
background: rgba(255, 255, 255, 0.2);
color: white;
border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-secondary:hover {
background: rgba(255, 255, 255, 0.3);
border-color: rgba(255, 255, 255, 0.8);
}
.quick-install {
background: rgba(0, 0, 0, 0.3);
padding: 20px;
border-radius: 12px;
margin: 2rem auto;
max-width: 600px;
backdrop-filter: blur(10px);
}
.quick-install h3 {
margin-bottom: 1rem;
color: #fff;
}
.code-block {
background: rgba(0, 0, 0, 0.5);
padding: 15px;
border-radius: 8px;
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
color: #00ff88;
font-size: 0.9rem;
overflow-x: auto;
}
.features {
background: white;
padding: 80px 0;
}
.features h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: #333;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.feature-card {
background: #f8f9fa;
padding: 2rem;
border-radius: 12px;
text-align: center;
transition: transform 0.3s;
}
.feature-card:hover {
transform: translateY(-5px);
}
.feature-icon {
font-size: 3rem;
margin-bottom: 1rem;
}
.feature-card h3 {
margin-bottom: 1rem;
color: #333;
}
.stats {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 60px 0;
text-align: center;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
}
.stat-item h3 {
font-size: 3rem;
margin-bottom: 0.5rem;
}
.footer {
background: #333;
color: white;
padding: 40px 0;
text-align: center;
}
.footer-links {
display: flex;
justify-content: center;
gap: 2rem;
margin-bottom: 1rem;
flex-wrap: wrap;
}
.footer-links a {
color: #ccc;
text-decoration: none;
transition: color 0.3s;
}
.footer-links a:hover {
color: white;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.1rem;
}
.cta-buttons {
flex-direction: column;
align-items: center;
}
.nav-links {
display: none;
}
}
</style>
</head>
<body>
<header>
<nav class="container">
<div class="logo">
<img src="assets/image.png" alt="Bleuprint">
<span>bleuprint</span>
</div>
<ul class="nav-links">
<li><a href="#features">Features</a></li>
<li><a href="docs/">Documentation</a></li>
<li><a href="https://github.com/bleulabs/bleuprint">GitHub</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<div class="container">
<h1>Modern Mac Development Environment</h1>
<p>Bootstrap your Mac with 120+ modern developer tools using Nix-Darwin. Security-first, reproducible, one-command setup.</p>
<div class="cta-buttons">
<a href="https://github.com/new?template_name=bleuprint&template_owner=bleulabs" class="btn btn-primary">Use This Template</a>
<a href="docs/" class="btn btn-secondary">View Documentation</a>
</div>
<div class="quick-install">
<h3>🏃♂️ Ultra-Quick Install (For the Laziest)</h3>
<div class="code-block">
curl -fsSL https://bleulabs.github.io/bleuprint/install.sh | bash
</div>
<p style="margin-top: 1rem; font-size: 0.9rem; opacity: 0.8;">
Or visit <a href="install.html" style="color: #00ff88;">bleulabs.github.io/bleuprint/install</a> for an easy-copy version
</p>
</div>
</div>
</section>
<section class="stats">
<div class="container">
<div class="stats-grid">
<div class="stat-item">
<h3>120+</h3>
<p>Modern CLI Tools</p>
</div>
<div class="stat-item">
<h3>~15min</h3>
<p>Setup Time</p>
</div>
<div class="stat-item">
<h3>100%</h3>
<p>Reproducible</p>
</div>
<div class="stat-item">
<h3>Security</h3>
<p>First Design</p>
</div>
</div>
</div>
</section>
<section class="features" id="features">
<div class="container">
<h2>Why Choose Bleuprint?</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">🚀</div>
<h3>One-Command Setup</h3>
<p>Bootstrap a complete development environment in ~15 minutes. No complex configuration required.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔒</div>
<h3>Security-First</h3>
<p>Git hooks prevent sensitive data leaks, Touch ID sudo, encryption tools, and safe defaults.</p>
</div>
<div class="feature-card">
<div class="feature-icon">📦</div>
<h3>120+ Modern Tools</h3>
<p>Rust-based CLI tools, development languages, GUI apps, and productivity enhancers.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔄</div>
<h3>Fully Reproducible</h3>
<p>Same command = same environment, every time. Powered by Nix for ultimate reliability.</p>
</div>
<div class="feature-card">
<div class="feature-icon">⚡</div>
<h3>Instant Rollbacks</h3>
<p>Break something? Roll back to any previous generation in seconds with Nix-Darwin.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🎛️</div>
<h3>Highly Configurable</h3>
<p>Modular design makes customization easy. Add tools, change settings, make it yours.</p>
</div>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<div class="footer-links">
<a href="https://github.com/bleulabs/bleuprint">GitHub</a>
<a href="docs/">Documentation</a>
<a href="docs/SETUP.html">Setup Guide</a>
<a href="docs/CLI_CHEATSHEET.html">CLI Reference</a>
<a href="docs/CONTRIBUTING.html">Contributing</a>
</div>
<p>© 2024 BLEU. Released under MIT License.</p>
</div>
</footer>
<script>
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Add scroll effect to header
window.addEventListener('scroll', () => {
const header = document.querySelector('header');
if (window.scrollY > 100) {
header.style.background = 'rgba(255, 255, 255, 0.98)';
} else {
header.style.background = 'rgba(255, 255, 255, 0.95)';
}
});
</script>
</body>
</html>