-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
531 lines (515 loc) · 17.3 KB
/
index.html
File metadata and controls
531 lines (515 loc) · 17.3 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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BitBuilder Cloud - Brand Asset Catalog</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: system-ui, -apple-system, sans-serif;
background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
color: #333;
}
.header {
background: #252a34;
color: white;
padding: 3rem 2rem;
text-align: center;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.header h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
font-weight: 700;
}
.header .tagline {
font-size: 1.1rem;
opacity: 0.9;
text-transform: uppercase;
letter-spacing: 2px;
}
.header .subtitle {
margin-top: 1rem;
font-size: 0.9rem;
opacity: 0.7;
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 3rem 2rem;
}
.quick-links {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin-bottom: 3rem;
}
.quick-link {
background: white;
padding: 1.5rem;
border-radius: 8px;
text-decoration: none;
color: #333;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
transition: all 0.2s;
display: flex;
align-items: center;
gap: 1rem;
}
.quick-link:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.quick-link-icon {
width: 50px;
height: 50px;
background: #252a34;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
flex-shrink: 0;
}
.quick-link-content h3 {
font-size: 1.1rem;
margin-bottom: 0.25rem;
color: #252a34;
}
.quick-link-content p {
font-size: 0.85rem;
color: #666;
}
.section {
background: white;
padding: 2rem;
border-radius: 8px;
margin-bottom: 2rem;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.section h2 {
font-size: 1.75rem;
color: #252a34;
margin-bottom: 1.5rem;
padding-bottom: 0.75rem;
border-bottom: 3px solid #252a34;
}
.logo-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 1.5rem;
margin-top: 1.5rem;
}
.logo-card {
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 1.5rem;
background: #f9fafb;
transition: all 0.2s;
}
.logo-card:hover {
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
transform: translateY(-2px);
}
.logo-preview {
height: 150px;
background: white;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
border: 1px solid #e0e0e0;
padding: 1rem;
}
.logo-preview.dark {
background: #252a34;
}
.logo-preview img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.logo-info h3 {
font-size: 1rem;
color: #252a34;
margin-bottom: 0.5rem;
}
.logo-info p {
font-size: 0.85rem;
color: #666;
margin-bottom: 0.75rem;
line-height: 1.5;
}
.logo-meta {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}
.meta-tag {
background: #252a34;
color: white;
padding: 0.25rem 0.75rem;
border-radius: 4px;
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.meta-tag.color-white {
background: white;
color: #252a34;
border: 1px solid #252a34;
}
.meta-tag.color-blue {
background: #3b82f6;
}
.download-btn {
display: inline-block;
margin-top: 1rem;
padding: 0.5rem 1rem;
background: #252a34;
color: white;
text-decoration: none;
border-radius: 4px;
font-size: 0.85rem;
transition: background 0.2s;
}
.download-btn:hover {
background: #1a1e28;
}
.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 1rem;
margin-bottom: 2rem;
}
.stat {
background: #252a34;
color: white;
padding: 1.5rem;
border-radius: 8px;
text-align: center;
}
.stat-number {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.stat-label {
font-size: 0.85rem;
opacity: 0.9;
text-transform: uppercase;
letter-spacing: 1px;
}
.footer {
text-align: center;
padding: 2rem;
color: #666;
font-size: 0.9rem;
}
</style>
</head>
<body>
<div class="header">
<h1>BitBuilder Cloud</h1>
<div class="tagline">Brand Asset Catalog</div>
<div class="subtitle">Distributed • Vendor Agnostic • E2E Encrypted</div>
</div>
<div class="container">
<!-- Quick Links -->
<div class="quick-links">
<a href="README.md" class="quick-link">
<div class="quick-link-icon">📖</div>
<div class="quick-link-content">
<h3>Documentation</h3>
<p>Complete package guide</p>
</div>
</a>
<a href="BRAND_GUIDELINES.md" class="quick-link">
<div class="quick-link-icon">🎨</div>
<div class="quick-link-content">
<h3>Brand Guidelines</h3>
<p>Usage rules & specifications</p>
</div>
</a>
<a href="SOCIAL_MEDIA_ASSETS.md" class="quick-link">
<div class="quick-link-icon">📱</div>
<div class="quick-link-content">
<h3>Social Media</h3>
<p>Platform-specific specs</p>
</div>
</a>
<a href="svg-to-png-converter.html" class="quick-link">
<div class="quick-link-icon">🖼️</div>
<div class="quick-link-content">
<h3>PNG Generator</h3>
<p>Convert SVG to PNG</p>
</div>
</a>
<a href="templates/business-card-front.html" class="quick-link">
<div class="quick-link-icon">💼</div>
<div class="quick-link-content">
<h3>Business Cards</h3>
<p>Printable templates</p>
</div>
</a>
<a href="templates/letterhead.html" class="quick-link">
<div class="quick-link-icon">📄</div>
<div class="quick-link-content">
<h3>Letterhead</h3>
<p>Official stationery</p>
</div>
</a>
<a href="templates/email-signature.html" class="quick-link">
<div class="quick-link-icon">✉️</div>
<div class="quick-link-content">
<h3>Email Signature</h3>
<p>HTML signature generator</p>
</div>
</a>
</div>
<!-- Stats -->
<div class="stats">
<div class="stat">
<div class="stat-number">12</div>
<div class="stat-label">Logo Variations</div>
</div>
<div class="stat">
<div class="stat-number">48</div>
<div class="stat-label">SVG Files</div>
</div>
<div class="stat">
<div class="stat-number">8+</div>
<div class="stat-label">PNG Sizes</div>
</div>
<div class="stat">
<div class="stat-number">5</div>
<div class="stat-label">Templates</div>
</div>
</div>
<!-- Logo Variations -->
<div class="section">
<h2>Logo Variations</h2>
<div class="logo-grid">
<!-- Logo 01 -->
<div class="logo-card">
<div class="logo-preview">
<img src="exports/optimized-svg/01-horizontal-black.svg" alt="Horizontal Black">
</div>
<div class="logo-info">
<h3>01. Horizontal Black</h3>
<p>Primary logo for light backgrounds. Use in headers, navigation, and print materials.</p>
<div class="logo-meta">
<span class="meta-tag">Black</span>
<span class="meta-tag">Primary</span>
</div>
<a href="exports/optimized-svg/01-horizontal-black.svg" download class="download-btn">Download SVG</a>
</div>
</div>
<!-- Logo 02 -->
<div class="logo-card">
<div class="logo-preview dark">
<img src="exports/optimized-svg/02-horizontal-white.svg" alt="Horizontal White">
</div>
<div class="logo-info">
<h3>02. Horizontal White</h3>
<p>Primary logo for dark backgrounds. Perfect for dark mode UIs and video overlays.</p>
<div class="logo-meta">
<span class="meta-tag color-white">White</span>
<span class="meta-tag">Primary</span>
</div>
<a href="exports/optimized-svg/02-horizontal-white.svg" download class="download-btn">Download SVG</a>
</div>
</div>
<!-- Logo 03 -->
<div class="logo-card">
<div class="logo-preview">
<img src="exports/optimized-svg/03-large-black.svg" alt="Large Black">
</div>
<div class="logo-info">
<h3>03. Large Black</h3>
<p>Scaled up version for high-impact placements like billboards and large format print.</p>
<div class="logo-meta">
<span class="meta-tag">Black</span>
<span class="meta-tag">Large</span>
</div>
<a href="exports/optimized-svg/03-large-black.svg" download class="download-btn">Download SVG</a>
</div>
</div>
<!-- Logo 04 -->
<div class="logo-card">
<div class="logo-preview dark">
<img src="exports/optimized-svg/04-large-white.svg" alt="Large White">
</div>
<div class="logo-info">
<h3>04. Large White</h3>
<p>Large scale version for dark backgrounds and hero sections.</p>
<div class="logo-meta">
<span class="meta-tag color-white">White</span>
<span class="meta-tag">Large</span>
</div>
<a href="exports/optimized-svg/04-large-white.svg" download class="download-btn">Download SVG</a>
</div>
</div>
<!-- Logo 05 -->
<div class="logo-card">
<div class="logo-preview dark">
<img src="exports/optimized-svg/05-with-tagline-white.svg" alt="With Tagline White">
</div>
<div class="logo-info">
<h3>05. Full Brand - White</h3>
<p>Complete brand mark with "Secure Engineering" tagline. For marketing materials.</p>
<div class="logo-meta">
<span class="meta-tag color-white">White</span>
<span class="meta-tag">Tagline</span>
</div>
<a href="exports/optimized-svg/05-with-tagline-white.svg" download class="download-btn">Download SVG</a>
</div>
</div>
<!-- Logo 06 -->
<div class="logo-card">
<div class="logo-preview">
<img src="exports/optimized-svg/06-with-tagline-black.svg" alt="With Tagline Black">
</div>
<div class="logo-info">
<h3>06. Full Brand - Black</h3>
<p>Complete brand mark for light backgrounds. Ideal for documents and presentations.</p>
<div class="logo-meta">
<span class="meta-tag">Black</span>
<span class="meta-tag">Tagline</span>
</div>
<a href="exports/optimized-svg/06-with-tagline-black.svg" download class="download-btn">Download SVG</a>
</div>
</div>
<!-- Logo 07 -->
<div class="logo-card">
<div class="logo-preview">
<img src="exports/optimized-svg/07-compact-blue.svg" alt="Compact Blue">
</div>
<div class="logo-info">
<h3>07. Compact Blue</h3>
<p>Brand mark in signature dark blue. For secondary placements and footer logos.</p>
<div class="logo-meta">
<span class="meta-tag color-blue">Blue</span>
<span class="meta-tag">Compact</span>
</div>
<a href="exports/optimized-svg/07-compact-blue.svg" download class="download-btn">Download SVG</a>
</div>
</div>
<!-- Logo 08 -->
<div class="logo-card">
<div class="logo-preview">
<img src="exports/optimized-svg/08-horizontal-icon-black.svg" alt="Horizontal Icon Black">
</div>
<div class="logo-info">
<h3>08. Horizontal with Icon - Black</h3>
<p>Logo with framed terminal icon. Perfect for technical documentation.</p>
<div class="logo-meta">
<span class="meta-tag">Black</span>
<span class="meta-tag">Framed</span>
</div>
<a href="exports/optimized-svg/08-horizontal-icon-black.svg" download class="download-btn">Download SVG</a>
</div>
</div>
<!-- Logo 09 -->
<div class="logo-card">
<div class="logo-preview">
<img src="exports/optimized-svg/09-compact-black.svg" alt="Compact Black">
</div>
<div class="logo-info">
<h3>09. Compact Black</h3>
<p>Space-efficient version for mobile headers and constrained areas.</p>
<div class="logo-meta">
<span class="meta-tag">Black</span>
<span class="meta-tag">Compact</span>
</div>
<a href="exports/optimized-svg/09-compact-black.svg" download class="download-btn">Download SVG</a>
</div>
</div>
<!-- Logo 10 -->
<div class="logo-card">
<div class="logo-preview">
<img src="exports/optimized-svg/10-compact-icon-black.svg" alt="Compact Icon Black">
</div>
<div class="logo-info">
<h3>10. Compact Icon - Black</h3>
<p>Compact with boxed icon. Excellent for technical badges and certifications.</p>
<div class="logo-meta">
<span class="meta-tag">Black</span>
<span class="meta-tag">Badge</span>
</div>
<a href="exports/optimized-svg/10-compact-icon-black.svg" download class="download-btn">Download SVG</a>
</div>
</div>
<!-- Logo 11 -->
<div class="logo-card">
<div class="logo-preview dark">
<img src="exports/optimized-svg/11-compact-icon-white.svg" alt="Compact Icon White">
</div>
<div class="logo-info">
<h3>11. Compact Icon - White</h3>
<p>Compact version for dark backgrounds. Ideal for profile pictures and avatars.</p>
<div class="logo-meta">
<span class="meta-tag color-white">White</span>
<span class="meta-tag">Badge</span>
</div>
<a href="exports/optimized-svg/11-compact-icon-white.svg" download class="download-btn">Download SVG</a>
</div>
</div>
<!-- Logo 12 -->
<div class="logo-card">
<div class="logo-preview dark">
<img src="exports/optimized-svg/12-full-brand-white.svg" alt="Full Brand White">
</div>
<div class="logo-info">
<h3>12. Complete Brand Package</h3>
<p>Full brand identity with all elements. For premium marketing materials.</p>
<div class="logo-meta">
<span class="meta-tag color-white">White</span>
<span class="meta-tag">Complete</span>
</div>
<a href="exports/optimized-svg/12-full-brand-white.svg" download class="download-btn">Download SVG</a>
</div>
</div>
</div>
</div>
<!-- Additional Formats -->
<div class="section">
<h2>Additional Formats</h2>
<p style="margin-bottom: 1rem; color: #666;">Each logo variation is also available in:</p>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem;">
<div style="padding: 1rem; background: #f9fafb; border-radius: 4px;">
<h4 style="color: #252a34; margin-bottom: 0.5rem;">⬜ Square Format</h4>
<p style="font-size: 0.85rem; color: #666;">Perfect for social media avatars and app icons</p>
</div>
<div style="padding: 1rem; background: #f9fafb; border-radius: 4px;">
<h4 style="color: #252a34; margin-bottom: 0.5rem;">⭕ Circular Format</h4>
<p style="font-size: 0.85rem; color: #666;">Ideal for profile pictures and badges</p>
</div>
<div style="padding: 1rem; background: #f9fafb; border-radius: 4px;">
<h4 style="color: #252a34; margin-bottom: 0.5rem;">🔄 Inverted Colors</h4>
<p style="font-size: 0.85rem; color: #666;">Alternate color schemes for flexibility</p>
</div>
<div style="padding: 1rem; background: #f9fafb; border-radius: 4px;">
<h4 style="color: #252a34; margin-bottom: 0.5rem;">🖼️ PNG Export</h4>
<p style="font-size: 0.85rem; color: #666;">Multiple resolutions (16px to 2048px)</p>
</div>
</div>
</div>
</div>
<div class="footer">
<p><strong>BitBuilder Cloud</strong> - Secure Engineering</p>
<p style="margin-top: 0.5rem; font-size: 0.85rem;">
Distributed • Vendor Agnostic • E2E Encrypted • Multi-Cloud Infrastructure Platform
</p>
<p style="margin-top: 1rem; font-size: 0.8rem; opacity: 0.7;">
© 2025 BitBuilder Cloud. All rights reserved.
</p>
</div>
</body>
</html>