-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatic.html
More file actions
572 lines (572 loc) · 20.5 KB
/
static.html
File metadata and controls
572 lines (572 loc) · 20.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
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
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RanBOT Labs - Browser as API</title>
<style>
body { font-family: 'Segoe UI', Arial, sans-serif; margin: 0; background: #f8fafc; color: #222; }
/* Navigation Bar */
.navbar {
background: #fff;
color: #18181b;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.75rem 2.5rem;
position: sticky;
top: 0;
z-index: 10;
box-shadow: 0 1px 8px #0001;
border-bottom: 1px solid #e5e7eb;
min-height: 64px;
font-family: 'Segoe UI', Arial, sans-serif;
}
.navbar-inner {
width: 100%;
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}
.navbar .logo {
color: #18181b;
display: flex;
align-items: center;
text-decoration: none;
font-weight: 800;
font-size: 1.3rem;
letter-spacing: 1px;
gap: 0.6rem;
}
.navbar .logo img {
height: 38px;
margin-right: 0.5rem;
}
.navbar-nav {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
gap: 2.2rem;
}
.navbar-nav li {
display: inline;
}
.navbar-nav li a {
color: #18181b;
text-decoration: none;
font-weight: 500;
font-size: 1.08rem;
transition: color 0.2s, background 0.2s;
padding: 0.35rem 0.9rem;
border-radius: 5px;
background: none;
}
.navbar-nav li a:hover {
color: #6366f1;
background: #f5f5f7;
}
.navbar-actions {
display: flex;
align-items: center;
gap: 1.2rem;
}
.navbar .btn-main {
background: #18181b;
color: #fff;
font-weight: 600;
border: none;
border-radius: 6px;
padding: 0.6rem 1.5rem;
font-size: 1.08rem;
margin-left: 0.5rem;
box-shadow: 0 2px 8px #0001;
cursor: pointer;
transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
text-decoration: none;
letter-spacing: 0.5px;
}
.navbar .btn-main:hover {
background: #6366f1;
color: #fff;
}
@media (max-width: 900px) {
.navbar { padding: 0.75rem 1rem; }
.navbar-inner { gap: 1rem; }
.navbar-nav { gap: 1.1rem; }
.navbar .btn-main { padding: 0.6rem 1rem; font-size: 1rem; }
}
@media (max-width: 600px) {
.navbar-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.navbar-nav { flex-direction: column; gap: 0.5rem; width: 100%; margin-top: 0.5rem; }
.navbar-actions { width: 100%; justify-content: flex-end; margin-top: 0.5rem; }
}
main, section, .feature-group, .pricing, .faq {
margin-top: 2.5rem;
}
/* Hero/Header */
header.hero {
background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center center/cover no-repeat #18181b;
color: #fff;
text-align: center;
padding: 0;
position: relative;
height: 100vh;
min-height: 400px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
box-shadow: 0 2px 8px #0002;
}
.hero-img-wrapper { display: none; }
.hero-content {
position: relative;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
pointer-events: none;
z-index: 2;
}
.hero-content h1 {
font-size: 4.2rem;
margin: 0 0 1.2rem 0;
font-weight: 900;
letter-spacing: 2px;
text-shadow: 0 6px 24px #000c, 0 2px 4px #0008;
pointer-events: auto;
}
.hero-content p {
font-size: 2rem;
margin: 0 0 2.5rem 0;
font-weight: 400;
text-shadow: 0 3px 12px #000a;
max-width: 800px;
pointer-events: auto;
}
.hero-content .btn-main { pointer-events: auto; font-size: 1.3rem; padding: 1rem 2.5rem; }
.stats {
display: flex;
justify-content: center;
gap: 2rem;
margin: 2rem 0;
flex-wrap: wrap;
margin-top: 10rem;
}
.stat {
background: #fff;
border-radius: 1rem;
box-shadow: 0 2px 12px #6366f133;
padding: 1.5rem 2rem;
min-width: 120px;
text-align: center;
transition: transform 0.2s, box-shadow 0.2s;
}
.stat:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 6px 24px #6366f155; }
.stat h2 { margin: 0; font-size: 2rem; color: #6366f1; font-weight: 700; }
.stat p { margin: 0.5rem 0 0 0; color: #555; font-weight: 500; }
section { max-width: 950px; margin: 2.5rem auto; padding: 2rem 1rem; border-radius: 1.5rem; }
h2 { color: #18181b; margin-top: 2.5rem; font-size: 2rem; font-weight: 700; letter-spacing: 0.5px; }
/* Features Section */
#features { background: linear-gradient(120deg, #f8fafc 60%, #e0e7ff 100%); box-shadow: 0 2px 12px #6366f111; }
.feature-group {
background: #f4f6fb;
border-radius: 1.2rem;
margin-bottom: 2rem;
padding: 1.5rem 1rem 1.2rem 1rem;
box-shadow: 0 2px 8px #6366f111;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1.5rem;
}
.feature-group h3.group-title {
grid-column: 1/-1;
font-size: 1.4rem;
color: #6366f1;
font-weight: 800;
margin-bottom: 1.2rem;
margin-top: 0;
letter-spacing: 1px;
text-align: left;
}
.feature {
background: #fff;
border-radius: 1rem;
box-shadow: 0 2px 8px #6366f122;
padding: 2.2rem 1.5rem;
transition: box-shadow 0.2s, transform 0.2s;
border-left: 4px solid #6366f1;
font-size: 1.18rem;
font-family: 'Segoe UI', Arial, sans-serif;
font-weight: 500;
}
.feature:hover { box-shadow: 0 6px 24px #6366f144; transform: translateY(-3px) scale(1.03); }
.feature h3 {
margin: 0 0 0.7rem 0;
color: #6366f1;
font-size: 1.5rem;
font-weight: 800;
letter-spacing: 0.5px;
}
/* Pricing Section */
#pricing { background: linear-gradient(120deg, #e0e7ff 60%, #f8fafc 100%); box-shadow: 0 2px 12px #6366f111; }
.pricing { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: start; margin-top: 2rem; }
.plan {
background: #fff;
border-radius: 1.2rem;
box-shadow: 0 2px 16px #6366f133;
padding: 2.8rem 1rem;
min-width: 260px;
text-align: center;
border-top: 5px solid #6366f1;
transition: box-shadow 0.2s, transform 0.2s;
position: relative;
font-size: 1.15rem;
font-family: 'Segoe UI', Arial, sans-serif;
font-weight: 500;
}
.plan:hover { box-shadow: 0 8px 32px #6366f155; transform: translateY(-6px) scale(1.04); }
.plan h3 {
margin: 0 0 0.7rem 0;
color: #18181b;
font-size: 1.6rem;
font-weight: 800;
letter-spacing: 0.5px;
}
.plan .price {
font-size: 2.5rem;
color: #6366f1;
margin: 0.7rem 0;
font-weight: 900;
}
.plan ul { font-size: 1.08rem; text-align: left; }
/* FAQ Section */
.faq { margin-top: 2.5rem; background: linear-gradient(120deg, #f8fafc 60%, #e0e7ff 100%); box-shadow: 0 2px 12px #6366f111; border-radius: 1.5rem; padding-bottom: 2rem; }
.faq-item {
background: #fff;
border-radius: 1rem;
box-shadow: 0 2px 8px #6366f122;
margin-bottom: 1.2rem;
padding: 2rem 2.2rem;
transition: box-shadow 0.2s, transform 0.2s;
border-left: 4px solid #6366f1;
font-size: 1.13rem;
font-family: 'Segoe UI', Arial, sans-serif;
font-weight: 500;
}
.faq-item:hover { box-shadow: 0 6px 24px #6366f144; transform: translateY(-2px) scale(1.01); }
.faq-item h4 {
margin: 0 0 0.7rem 0;
color: #6366f1;
font-size: 1.25rem;
font-weight: 800;
letter-spacing: 0.5px;
}
/* Footer */
footer {
background: #f5f5f7;
color: #18181b;
text-align: left;
padding: 3rem 0 2rem 0;
font-size: 1.05rem;
margin-top: 3rem;
border-top: 1px solid #e5e7eb;
letter-spacing: 0.5px;
}
.footer-content {
max-width: 1100px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 2.5rem;
}
.footer-col {
min-width: 160px;
flex: 1 1 180px;
}
.footer-col h4 {
color: #18181b;
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 1.1rem;
letter-spacing: 0.5px;
}
.footer-col ul {
list-style: none;
padding: 0;
margin: 0;
}
.footer-col ul li {
margin-bottom: 0.7rem;
}
.footer-col ul li a {
color: #18181b;
text-decoration: none;
font-size: 1rem;
transition: color 0.2s;
}
.footer-col ul li a:hover {
color: #6366f1;
}
.footer-social {
display: flex;
align-items: center;
gap: 1.2rem;
margin-top: 2rem;
}
.footer-social a {
color: #86868b;
font-size: 1.5rem;
transition: color 0.2s;
display: inline-flex;
align-items: center;
justify-content: center;
}
.footer-social a:hover {
color: #6366f1;
}
.footer-bottom {
text-align: center;
color: #86868b;
font-size: 0.98rem;
margin-top: 2.5rem;
letter-spacing: 0.5px;
}
@media (max-width: 800px) {
.footer-content { flex-direction: column; gap: 1.5rem; }
.footer-col { min-width: unset; }
}
@media (max-width: 600px) {
.stats, .pricing { flex-direction: column; gap: 1rem; }
.features { grid-template-columns: 1fr; }
header.hero {
height: 100vh;
min-height: 220px;
}
.hero-content h1 { font-size: 2.3rem; }
.hero-content p { font-size: 1.1rem; }
section { padding: 1rem 0.5rem; }
}
.navbar-hamburger {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
margin-left: 0.5rem;
z-index: 20;
}
.navbar-hamburger span {
display: block;
width: 26px;
height: 3px;
margin: 5px 0;
background: #18181b;
border-radius: 2px;
transition: 0.3s;
}
@media (max-width: 800px) {
.navbar-inner { flex-wrap: wrap; }
.navbar-hamburger { display: block; }
.navbar-nav, .navbar-actions {
display: none;
width: 100%;
background: #fff;
box-shadow: 0 2px 8px #0001;
border-radius: 0 0 12px 12px;
margin-top: 0.5rem;
padding-bottom: 1rem;
}
.navbar-nav.open, .navbar-actions.open { display: flex; flex-direction: column; align-items: flex-start; }
.navbar-nav.open { gap: 0.5rem; }
.navbar-actions.open { gap: 0.5rem; align-items: flex-start; }
.navbar .btn-main { width: 100%; text-align: left; margin-left: 0; }
}
</style>
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar">
<div class="navbar-inner">
<a class="logo" href="#">
<img src="assets/img/icon48.png" alt="Logo" /> RanBOT Labs
</a>
<button class="navbar-hamburger" aria-label="Open navigation" onclick="document.querySelector('.navbar-nav').classList.toggle('open');document.querySelector('.navbar-actions').classList.toggle('open');this.setAttribute('aria-expanded',this.getAttribute('aria-expanded')==='true'?'false':'true');">
<span></span>
<span></span>
<span></span>
</button>
<ul class="navbar-nav">
<li><a href="#about">About</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#faq">FAQ</a></li>
</ul>
<div class="navbar-actions">
<a href="#pricing" class="btn-main">Get Started</a>
</div>
</div>
</nav>
<!-- Hero/Header Section with Unsplash Image -->
<header class="hero" id="about">
<div class="hero-content">
<h1>Unlock Web Data. Instantly.</h1>
<p>RanBOT Labs lets you interact with any webpage as an API—extract content, metadata, screenshots, and AI-powered insights in one click.</p>
<div class="stats">
<div class="stat">
<h2>Browser as API</h2>
</div>
<div class="stat">
<h2>All Data Types</h2>
</div>
<div class="stat">
<h2>AI Summaries</h2>
</div>
<div class="stat">
<h2>No-Code</h2>
</div>
</div>
</div>
</header>
<section id="features">
<h2>Why Choose RanBOT Labs?</h2>
<div class="feature-group">
<!-- <h3 class="group-title">Webpage Interaction</h3> -->
<div class="feature"><h3>Browser as API</h3><p>Interact with any webpage programmatically—click, scroll, fill forms, and more—just like a real user, but automated.</p></div>
<div class="feature"><h3>Flexible API</h3><p>Integrate RanBOT Labs into your workflow with a simple, robust API. Works with any language or platform.</p></div>
<div class="feature"><h3>Scalable & Reliable</h3><p>Built on a global edge network for high availability, low latency, and enterprise-grade reliability.</p></div>
</div>
<div class="feature-group">
<!-- <h3 class="group-title">Data Extraction</h3> -->
<div class="feature"><h3>Comprehensive Data Capture</h3><p>Fetch everything: page content, metadata, screenshots, and structured data from any public webpage.</p></div>
<div class="feature"><h3>Visual Snapshots</h3><p>Instantly capture high-quality screenshots of any webpage for documentation, monitoring, or reporting.</p></div>
<div class="feature"><h3>Metadata Extraction</h3><p>Retrieve rich metadata (titles, descriptions, keywords, Open Graph, and more) from any page for deeper context and SEO analysis.</p></div>
</div>
<div class="feature-group">
<!-- <h3 class="group-title">AI & Insights</h3> -->
<div class="feature"><h3>AI-Powered Summaries</h3><p>Instantly turn raw web data into concise, human-readable summaries using state-of-the-art AI/ML models.</p></div>
<div class="feature"><h3>Insightful Analytics</h3><p>Go beyond summaries—RanBOT Labs analyzes trends, patterns, and key insights tailored to your needs.</p></div>
<div class="feature"><h3>Privacy & Security</h3><p>Your data is processed securely and never shared. We comply with industry-leading privacy standards.</p></div>
</div>
</section>
<section id="pricing">
<h2>Simple, Transparent Pricing</h2>
<div class="pricing">
<div class="plan">
<h3>Free</h3>
<div class="price">$0</div>
<ul>
<li>100 pages/month</li>
<li>Basic web extraction</li>
<li>AI-powered summaries</li>
<li>Email support</li>
</ul>
</div>
<div class="plan">
<h3>Pro</h3>
<div class="price">$29/mo</div>
<ul>
<li>10,000 pages/month</li>
<li>Advanced extraction & analytics</li>
<li>Custom summary models</li>
<li>Priority support</li>
</ul>
</div>
<div class="plan">
<h3>Enterprise</h3>
<div class="price">Contact Us</div>
<ul>
<li>Unlimited usage</li>
<li>Dedicated infrastructure</li>
<li>Custom integrations</li>
<li>SLAs & compliance</li>
</ul>
</div>
</div>
</section>
<section class="faq" id="faq">
<h2>Frequently Asked Questions</h2>
<div class="faq-item">
<h4>What is RanBOT Labs?</h4>
<p>RanBOT Labs is a cloud service that uses a browser-as-an-API to interact with any public webpage, fetch all available data (including metadata, screenshots, and content), and uses AI/ML to summarize and analyze it for actionable insights.</p>
</div>
<div class="faq-item">
<h4>What types of data can RanBOT Labs fetch?</h4>
<p>RanBOT Labs can extract page content, metadata, screenshots, and structured data from any public webpage, then summarize and analyze it using AI.</p>
</div>
<div class="faq-item">
<h4>How does RanBOT Labs use AI?</h4>
<p>We leverage advanced natural language processing and machine learning models to turn raw web data into concise summaries and deep analytics.</p>
</div>
<div class="faq-item">
<h4>Is coding required to use RanBOT Labs?</h4>
<p>No coding is needed! Use our intuitive dashboard or simple API to get started in minutes.</p>
</div>
<div class="faq-item">
<h4>What types of websites can RanBOT Labs extract from?</h4>
<p>RanBOT Labs works with any public webpage, including news, blogs, e-commerce, and more. (We respect robots.txt and legal restrictions.)</p>
</div>
<div class="faq-item">
<h4>How is my data secured?</h4>
<p>All data is encrypted in transit and at rest. We never share or sell your data, and comply with leading privacy standards.</p>
</div>
<div class="faq-item">
<h4>Can I try RanBOT Labs for free?</h4>
<p>Yes! Our Starter plan is free and lets you extract and summarize up to 100 pages per month.</p>
</div>
<div class="faq-item">
<h4>How do I get support?</h4>
<p>Contact us anytime via email or through your dashboard. Pro and Enterprise plans include priority support.</p>
</div>
</section>
<footer>
<div class="footer-content">
<div class="footer-col">
<h4>Product</h4>
<ul>
<li><a href="#features">Features</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#">API Docs</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Resources</h4>
<ul>
<li><a href="#">Blog</a></li>
<li><a href="#">Help Center</a></li>
<li><a href="#">Status</a></li>
<li><a href="#">Security</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Company</h4>
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Legal</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Follow Us</h4>
<div class="footer-social">
<a href="https://twitter.com/" target="_blank" aria-label="Twitter"><svg width="1.5em" height="1.5em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22.46 6c-.77.35-1.6.59-2.47.7a4.3 4.3 0 0 0 1.88-2.37 8.59 8.59 0 0 1-2.72 1.04A4.28 4.28 0 0 0 16.11 4c-2.37 0-4.29 1.92-4.29 4.29 0 .34.04.67.11.99C7.69 9.13 4.07 7.38 1.64 4.7c-.37.64-.58 1.38-.58 2.17 0 1.5.76 2.82 1.92 3.6-.7-.02-1.36-.21-1.94-.53v.05c0 2.1 1.5 3.85 3.5 4.25-.36.1-.74.16-1.13.16-.28 0-.54-.03-.8-.08.54 1.7 2.12 2.94 3.99 2.97A8.6 8.6 0 0 1 2 19.54c-.32 0-.63-.02-.94-.06A12.13 12.13 0 0 0 8.29 21.5c7.55 0 11.68-6.26 11.68-11.68 0-.18-.01-.36-.02-.54A8.18 8.18 0 0 0 24 4.59a8.36 8.36 0 0 1-2.54.7z" fill="currentColor"/></svg></a>
<a href="https://linkedin.com/" target="_blank" aria-label="LinkedIn"><svg width="1.5em" height="1.5em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19 0h-14c-2.76 0-5 2.24-5 5v14c0 2.76 2.24 5 5 5h14c2.76 0 5-2.24 5-5v-14c0-2.76-2.24-5-5-5zm-11 19h-3v-9h3v9zm-1.5-10.28c-.97 0-1.75-.79-1.75-1.75s.78-1.75 1.75-1.75 1.75.79 1.75 1.75-.78 1.75-1.75 1.75zm15.5 10.28h-3v-4.5c0-1.08-.02-2.47-1.5-2.47-1.5 0-1.73 1.17-1.73 2.39v4.58h-3v-9h2.89v1.23h.04c.4-.75 1.38-1.54 2.84-1.54 3.04 0 3.6 2 3.6 4.59v4.72z" fill="currentColor"/></svg></a>
<a href="https://github.com/" target="_blank" aria-label="GitHub"><svg width="1.5em" height="1.5em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C6.48 2 2 6.58 2 12.26c0 4.49 2.87 8.3 6.84 9.64.5.09.68-.22.68-.48 0-.24-.01-.87-.01-1.7-2.78.62-3.37-1.36-3.37-1.36-.45-1.18-1.1-1.5-1.1-1.5-.9-.63.07-.62.07-.62 1 .07 1.53 1.05 1.53 1.05.89 1.56 2.34 1.11 2.91.85.09-.66.35-1.11.63-1.37-2.22-.26-4.56-1.14-4.56-5.07 0-1.12.39-2.03 1.03-2.75-.1-.26-.45-1.3.1-2.7 0 0 .84-.28 2.75 1.05a9.18 9.18 0 0 1 2.5-.34c.85 0 1.7.11 2.5.34 1.91-1.33 2.75-1.05 2.75-1.05.55 1.4.2 2.44.1 2.7.64.72 1.03 1.63 1.03 2.75 0 3.94-2.34 4.81-4.57 5.07.36.32.68.94.68 1.9 0 1.37-.01 2.47-.01 2.81 0 .27.18.58.69.48A10.01 10.01 0 0 0 22 12.26C22 6.58 17.52 2 12 2z" fill="currentColor"/></svg></a>
</div>
</div>
</div>
<div class="footer-bottom">
© RanBOT Labs 2025. All rights reserved.
</div>
</footer>
</body>
</html>