-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
408 lines (352 loc) · 14 KB
/
index.html
File metadata and controls
408 lines (352 loc) · 14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bit By Bit Labs</title>
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="Bit By Bit Labs - World Class Products">
<meta property="og:description" content="We build world class AI-powered products including Recast Studio and Podcast Generator. A tiny but effective team of makers based in Indore, India.">
<meta property="og:image" content="/bitbybit.webp">
<meta property="og:url" content="https://bitbybitlabs.io">
<meta property="og:type" content="website">
<link rel="icon" type="image/png" href="bitbybit.webp">
<style>
:root {
--bg-color: #0f0f12; /* Deep dark background */
--text-main: #d4d4d4; /* Light grey text */
--text-muted: #808080; /* Muted text for comments/meta */
--accent-green: #2ecc71; /* Success/Prompt User */
--accent-blue: #3498db; /* Links/Directory */
--accent-yellow: #f1c40f; /* Warnings/Highlights */
--accent-purple: #9b59b6; /* Special Keywords */
--cursor-color: #d4d4d4;
--font-stack: 'Fira Code', 'Cascadia Code', 'Consolas', 'Courier New', monospace;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--bg-color);
color: var(--text-main);
font-family: var(--font-stack);
font-size: 16px;
line-height: 1.6;
padding: 20px;
overflow-x: hidden;
}
/* Scanline effect */
body::before {
content: " ";
display: block;
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
z-index: 2;
background-size: 100% 2px, 3px 100%;
pointer-events: none;
opacity: 0.3;
}
.terminal-container {
max-width: 900px;
margin: 0 auto;
position: relative;
z-index: 1;
padding-bottom: 50px;
}
/* Typography & Utilities */
a {
color: var(--accent-blue);
text-decoration: none;
border-bottom: 1px dashed var(--accent-blue);
transition: all 0.2s ease;
}
a:hover {
background-color: rgba(52, 152, 219, 0.1);
border-bottom-style: solid;
}
.text-green { color: var(--accent-green); }
.text-blue { color: var(--accent-blue); }
.text-yellow { color: var(--accent-yellow); }
.text-purple { color: var(--accent-purple); }
.text-muted { color: var(--text-muted); }
.hidden { display: none; }
/* Command Line Styles */
.cmd-line {
margin-top: 2rem;
margin-bottom: 1rem;
display: flex;
flex-wrap: wrap;
align-items: center;
}
.prompt {
white-space: nowrap;
margin-right: 10px;
}
.prompt-user {
color: var(--accent-green);
font-weight: bold;
}
.prompt-path {
color: var(--accent-blue);
font-weight: bold;
}
.cmd-input {
color: var(--text-main);
font-weight: bold;
}
.cursor-blink {
display: inline-block;
width: 10px;
height: 1.2em;
background-color: var(--cursor-color);
vertical-align: text-bottom;
animation: blink 1s step-end infinite;
margin-left: 5px;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
/* Output Sections */
.output-block {
margin-bottom: 1.5rem;
padding-left: 10px;
border-left: 2px solid rgba(255,255,255,0.05);
}
.welcome-ascii {
font-size: 12px;
white-space: pre;
color: var(--accent-purple);
margin-bottom: 2rem;
line-height: 1.2;
overflow-x: auto;
}
.file-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 10px;
}
.file-item {
display: flex;
align-items: center;
gap: 10px;
}
.file-perms { color: var(--text-muted); font-size: 0.9em; }
.file-size { color: var(--text-muted); font-size: 0.9em; width: 50px; text-align: right; }
.file-name { color: var(--accent-blue); font-weight: bold; }
.file-name.executable { color: var(--accent-green); }
/* Specific Content Styling */
.hero-title {
font-size: 2rem;
font-weight: bold;
color: var(--text-main);
margin-bottom: 1rem;
line-height: 1.3;
}
.card {
border: 1px solid #333;
background: rgba(255,255,255,0.02);
padding: 20px;
margin: 15px 0;
border-radius: 4px;
}
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
border-bottom: 1px solid #333;
padding-bottom: 10px;
}
.card-title {
font-size: 1.2rem;
color: var(--accent-yellow);
}
.tag {
background: #333;
padding: 2px 8px;
border-radius: 4px;
font-size: 0.8rem;
}
.img-responsive {
max-width: 100%;
height: auto;
border-radius: 4px;
border: 1px solid #333;
opacity: 0.9;
transition: opacity 0.3s;
}
.img-responsive:hover {
opacity: 1;
}
footer {
margin-top: 4rem;
border-top: 1px solid #333;
padding-top: 1rem;
text-align: center;
color: var(--text-muted);
font-size: 0.9rem;
}
/* Glitch effect on hover for title */
.glitch-hover:hover {
animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
color: var(--accent-green);
}
@keyframes glitch {
0% { transform: translate(0) }
20% { transform: translate(-2px, 2px) }
40% { transform: translate(-2px, -2px) }
60% { transform: translate(2px, 2px) }
80% { transform: translate(2px, -2px) }
100% { transform: translate(0) }
}
@media (max-width: 600px) {
.prompt { font-size: 0.9em; }
.hero-title { font-size: 1.5rem; }
.welcome-ascii { font-size: 8px; }
}
</style>
</head>
<body>
<div class="terminal-container">
<!-- Login Info -->
<div class="text-muted" style="margin-bottom: 20px;">
Last login: <span id="current-date"></span> on ttys001<br>
Welcome to Bit By Bit Labs
</div>
<!-- Logo -->
<div style="margin-bottom: 20px;">
<img src="/bitbybit-trans.png" alt="Bit By Bit Labs Logo" style="width: 80px; height: auto; filter: grayscale(20%); opacity: 0.9;">
</div>
<!-- ASCII Logo -->
<div class="welcome-ascii">
____ _ _ ____ ____ _ _ _ _
| __ )(_) |_ | __ ) _ _ | __ )(_) |_ | | __ _| |__ ___
| _ \| | __| | _ \| | | | | _ \| | __| | | / _` | '_ \/ __|
| |_) | | |_ | |_) | |_| | | |_) | | |_ | |__| (_| | |_) \__ \
|____/|_|\__| |____/ \__, | |____/|_|\__| |_____\__,_|_.__/|___/
|___/
</div>
<!-- Command 1: init -->
<div class="cmd-line">
<div class="prompt">
<span class="prompt-user">visitor@bitbybit</span>:<span class="prompt-path">~</span>$
</div>
<div class="cmd-input">./init.sh</div>
</div>
<div class="output-block">
<h1 class="hero-title">We build world class products<br><span class="text-green">bit by bit...</span></h1>
<p>Initializing mission parameters...</p>
<p class="text-muted">>> Loading philosophy modules...</p>
<p class="text-muted">>> Establishing connection to Indore, India HQ...</p>
<p class="text-green">>> Ready.</p>
</div>
<!-- Command 2: ls products -->
<div class="cmd-line">
<div class="prompt">
<span class="prompt-user">visitor@bitbybit</span>:<span class="prompt-path">~</span>$
</div>
<div class="cmd-input">ls -la ./products/</div>
</div>
<div class="output-block">
<div class="file-list" style="margin-bottom: 20px;">
<div class="file-item">
<span class="file-perms">drwxr-xr-x</span> <span class="file-size">4096</span> <span class="file-name text-blue">.</span>
</div>
<div class="file-item">
<span class="file-perms">drwxr-xr-x</span> <span class="file-size">4096</span> <span class="file-name text-blue">..</span>
</div>
<div class="file-item">
<span class="file-perms">-rwxr-xr-x</span> <span class="file-size">8.2M</span> <span class="file-name executable">recast_studio.exe</span>
</div>
<div class="file-item">
<span class="file-perms">-rwxr-xr-x</span> <span class="file-size">4.5M</span> <span class="file-name executable">jalp_ai.sh</span>
</div>
</div>
<!-- Product Cards displayed as if catting description files -->
<div class="cmd-line" style="margin-top: 0;">
<div class="prompt">
<span class="prompt-user">visitor@bitbybit</span>:<span class="prompt-path">~</span>$
</div>
<div class="cmd-input">cat ./products/recast_studio.md</div>
</div>
<div class="card">
<div class="card-header">
<span class="card-title">Recast Studio</span>
<span class="tag">AI Video Editor</span>
</div>
<p>AI-powered video editor helping marketing teams repurpose content without editing skills.</p>
<br>
<a href="https://recast.studio" target="_blank">[ACCESS MAINFRAME] -> recast.studio</a>
</div>
<div class="cmd-line">
<div class="prompt">
<span class="prompt-user">visitor@bitbybit</span>:<span class="prompt-path">~</span>$
</div>
<div class="cmd-input">cat ./products/jalp_ai.md</div>
</div>
<div class="card">
<div class="card-header">
<span class="card-title">Jalp AI</span>
<span class="tag">Text-to-Podcast</span>
</div>
<p>Turn text content into studio-quality podcasts using natural AI voices in minutes.</p>
<br>
<a href="https://jalp.ai" target="_blank">[ACCESS MAINFRAME] -> jalp.ai</a>
</div>
</div>
<!-- Command 3: About -->
<div class="cmd-line">
<div class="prompt">
<span class="prompt-user">visitor@bitbybit</span>:<span class="prompt-path">~</span>$
</div>
<div class="cmd-input">whoami --verbose</div>
</div>
<div class="output-block">
<p><strong>USER_ID:</strong> Team Bit By Bit</p>
<p><strong>LOCATION:</strong> Indore, India</p>
<p><strong>MISSION:</strong> Build high-quality, profitable software that solves real problems. Focus on AI SaaS solutions managed by small teams.</p>
<br>
<p><strong>CURRENT_STATUS:</strong></p>
<div style="margin-top: 10px; border: 1px dashed var(--text-muted); padding: 5px; display: inline-block;">
<img src="/fire.gif" alt="Team working hard" class="img-responsive" style="max-width: 300px;">
</div>
</div>
<!-- Command 4: Contact -->
<div class="cmd-line">
<div class="prompt">
<span class="prompt-user">visitor@bitbybit</span>:<span class="prompt-path">~</span>$
</div>
<div class="cmd-input">echo $CONTACT_EMAIL</div>
</div>
<div class="output-block">
<a href="mailto:[email protected]" class="text-green">[email protected]</a>
</div>
<!-- Interactive Line -->
<div class="cmd-line">
<div class="prompt">
<span class="prompt-user">visitor@bitbybit</span>:<span class="prompt-path">~</span>$
</div>
<div class="cmd-input"><span class="cursor-blink"></span></div>
</div>
<footer>
<p>© 2025 Bit By Bit Labs Pvt Ltd. | System Status: <span class="text-green">ONLINE</span></p>
</footer>
</div>
<script>
// Set current date
document.getElementById('current-date').textContent = new Date().toUTCString();
// Optional: Simple interactive effect where clicking anywhere focuses a hidden input (simulated)
document.addEventListener('keydown', function(e) {
// This is just for fun to make it feel alive, doesn't actually type
// Could implement a real typer if requested, but static design was asked.
});
</script>
</body>
</html>