-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
366 lines (303 loc) · 10.5 KB
/
index.html
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
<!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>
/* Reset and base styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: #222;
line-height: 1.5;
padding: 80px 20px 40px 20px;
max-width: 1200px;
margin: 0 auto;
}
/* Layout */
.container {
display: flex;
flex-direction: row;
gap: 80px;
margin-top: 40px;
}
/* Sidebar */
.sidebar {
width: 150px;
flex-shrink: 0;
}
.logo {
font-size: 24px;
margin-bottom: 40px;
}
.nav {
display: flex;
flex-direction: column;
gap: 20px;
}
.nav-item {
text-decoration: none;
color: #222;
}
.nav-title {
font-weight: bold;
}
.nav-subtitle {
color: #0000EE;
}
/* Main content */
.main {
flex-grow: 1;
max-width: 800px;
}
.hero {
margin-bottom: 60px;
}
.hero-title {
font-size: 48px;
font-weight: bold;
line-height: 1.1;
margin-bottom: 40px;
}
.hero-text {
font-size: 18px;
color: #444;
margin-bottom: 30px;
}
.divider {
height: 1px;
background-color: #e0e0e0;
margin: 60px 0;
}
.section-number {
color: #666;
margin-bottom: 20px;
}
.section-title {
font-size: 32px;
font-weight: bold;
margin-bottom: 20px;
}
.section-text {
font-size: 18px;
color: #444;
margin-bottom: 20px;
}
.demo-link {
color: #0000EE;
text-decoration: none;
border-bottom: 1px solid #0000EE;
}
/* Visualization card */
.visualization-card {
background-color: white;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
padding: 30px;
margin-top: 40px;
}
.waveform {
width: 100%;
height: 200px;
background-image: url('recast-studio.webp');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
margin: 20px 0;
position: relative;
}
.waveform-label {
position: absolute;
font-size: 12px;
color: #888;
}
.waveform-label.human {
top: 0;
left: 0;
}
.waveform-label.sesame {
bottom: 0;
left: 0;
}
.timeline {
display: flex;
justify-content: space-between;
margin: 10px 0 30px;
}
.timeline-mark {
width: 1px;
height: 10px;
background-color: #ddd;
}
.card-footer {
display: flex;
justify-content: space-between;
align-items: center;
}
.card-link {
text-decoration: none;
color: #222;
font-weight: 500;
}
.arrow-icon {
font-size: 20px;
}
/* Responsive styles */
@media (max-width: 768px) {
body {
padding: 60px 15px 30px 15px;
}
.container {
flex-direction: column;
gap: 40px;
}
.sidebar {
width: 100%;
text-align: center;
}
.logo {
margin-bottom: 20px;
}
.logo img {
max-width: 120px;
}
.nav {
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
}
.hero-title {
font-size: 36px;
}
.section-title {
font-size: 28px;
}
.section-text {
font-size: 16px;
}
.divider {
margin: 40px 0;
}
}
@media (max-width: 480px) {
body {
padding: 40px 10px 20px 10px;
}
.container {
gap: 30px;
margin-top: 20px;
}
.hero-title {
font-size: 28px;
}
.section-title {
font-size: 24px;
}
img {
width: 100% !important;
height: auto !important;
}
}
/* Make all images responsive by default */
img {
max-width: 100%;
height: auto;
}
</style>
</head>
<body>
<div class="container">
<!-- Sidebar -->
<div class="sidebar">
<div class="logo"><img src="/bitbybit.webp" alt="Bit By Bit Labs Logo"
style="width: 100%; height: 100%; object-fit: contain;"></div>
<nav class="nav">
<a href="#" class="nav-item">
<div class="nav-title">Bit By Bit Labs</div>
<div class="nav-subtitle"><a href="#products">Products</a></div>
<div class="nav-subtitle"><a href="#about">About</a></div>
</a>
<!-- <a href="#" class="nav-item">
<div class="nav-subtitle">Demo</div>
</a> -->
</nav>
</div>
<!-- Main content -->
<div class="main">
<!-- Hero section -->
<section class="hero">
<h1 class="hero-title">We build <br>world class products<br>bit by bit...</h1>
<!-- <p class="hero-text">
We believe in a future where computers are lifelike. They will see, hear, and
collaborate with us the way we're used to. A natural human voice is key to
unlocking this future.
</p>
<p class="hero-text">
To start, we have two goals.
</p> -->
</section>
<div class="divider"></div>
<section id="products">
<h2 style="font-size: 36px; font-weight: bold; margin-bottom: 40px;">What we are building</h2>
<div class="section-number">01</div>
<h2 class="section-title">Recast Studio: AI-Powered Video Editor for Marketing Teams</h2>
<p class="section-text">
Recast Studio is an AI-powered video editor that helps marketing teams with no video editing skills
to edit and repurpose their video and audio content.
</p>
<p class="section-text">
Check out <a href="https://recast.studio" class="demo-link">here</a>.
</p>
<div class="section-number">02</div>
<h2 class="section-title">Podcast Generator: Turn your Text into Lifelike Audio Discussions</h2>
<p class="section-text">
Podcast Generator helps you convert web URLs, PDFs, and text into engaging audio conversations using
AI.
</p>
<p class="section-text">
Check out <a href="https://podcastmaker.ai" class="demo-link">here</a>.
</p>
<div class="section-number">3</div>
<h2 class="section-title">Music Visualizer(coming soon): Turn your music into a killer video</h2>
<p class="section-text">
Music Visualizer makes it fast and easy to create custom music visualizers.
</p>
<!-- <p class="section-text">
Check out <a href="https://podcastmaker.ai" class="demo-link">here</a>.
</p> -->
</section>
<div class="divider"></div>
<section id="about">
<h2 style="font-size: 36px; font-weight: bold; margin-bottom: 40px;">About Us</h2>
<p class="section-text">We are a tiny but effective team of makers based in Indore, India.</p>
<p class="section-text">Our philosophy is simple: build high-quality, profitable software that solves real problems. We focus
on AI SaaS solutions that can be effectively managed by small teams.</p>
<p class="section-text">The below GIF aptly represents our work style. 👇</p>
<img src="/fire.gif" alt="BitbyBit Labs" style="width: 50%; height: auto; margin-top: 20px;">
</section>
<div class="divider"></div>
<section class="contact">
<h2 class="section-title">Get in Touch</h2>
<p class="section-text">Interested in our products or want to learn more about what we do?</p>
<p class="section-text">Email: <a href="mailto:[email protected]">[email protected]</a></p>
</section>
<footer>
<p style="text-align: center; font-size: 10px;">© 2025 Bit By Bit Labs Pvt Ltd. All rights
reserved.</p>
</footer>
</div>
</div>
</body>
</html>