-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
489 lines (479 loc) · 17.4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>OpenRecall - Take Control of Your Digital Memory</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"/>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet"/>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
color: #333;
background-color: #fff;
}
.bg-custom {
background-color: #fff;
}
.feature-icon {
font-size: 2rem;
color: #333;
transition: transform 0.3s ease;
}
.feature-icon:hover {
transform: scale(1.1);
}
.navbar {
transition: background-color 0.3s ease;
background-color: #fff;
border-bottom: 1px solid #e0e0e0;
}
.navbar.sticky {
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.card {
transition: box-shadow 0.3s ease;
border: 1px solid #e0e0e0;
border-radius: 3px;
}
.card:hover {
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.terminal-card {
background-color: #f6f8fa;
color: #333;
border-radius: 3px;
overflow: hidden;
max-width: 800px;
margin: 0 auto;
border: 1px solid #e0e0e0;
}
.terminal {
background-color: #f6f8fa;
border-radius: 3px;
padding: 10px;
font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}
.terminal-header {
display: flex;
padding: 5px;
background-color: #e0e0e0;
}
.terminal-button {
width: 12px;
height: 12px;
border-radius: 50%;
margin-right: 6px;
}
.terminal-button.red { background-color: #ff5f56; }
.terminal-button.yellow { background-color: #ffbd2e; }
.terminal-button.green { background-color: #27c93f; }
.terminal-content {
padding: 10px;
}
.terminal-content p {
margin: 0;
line-height: 1.5;
text-align: left;
}
.prompt {
color: #0366d6;
}
.output {
color: #24292e;
}
.btn-primary {
background-color: #0366d6;
border-color: #0366d6;
}
.btn-primary:hover {
background-color: #0056b3;
border-color: #0056b3;
}
.btn-success {
background-color: #28a745;
border-color: #28a745;
}
.btn-success:hover {
background-color: #218838;
border-color: #218838;
}
h2, h3, h4 {
color: #24292e;
}
.accordion-button {
color: #24292e;
background-color: #f6f8fa;
}
.accordion-button:not(.collapsed) {
color: #24292e;
background-color: #e0e0e0;
}
.bg-light {
background-color: #f6f8fa !important;
}
.feature-icon i {
font-size: 2rem;
}
.animate-on-scroll {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-on-scroll.animated {
opacity: 1;
transform: translateY(0);
}
.ascii-art {
font-family: 'Courier New', monospace;
white-space: pre;
display: inline-block;
transition: transform 0.5s ease, opacity 0.5s ease, text-shadow 0.5s ease;
transform: scale(0.9);
opacity: 0;
font-weight: bold;
font-size: 1.2em;
color: #0366d6;
text-shadow: 0 0 5px rgba(3, 102, 214, 0.5);
}
.ascii-art.animated {
transform: scale(1);
opacity: 1;
text-shadow: 0 0 10px rgba(3, 102, 214, 0.8), 0 0 20px rgba(3, 102, 214, 0.5);
}
@keyframes glowing {
0% { text-shadow: 0 0 5px rgba(3, 102, 214, 0.5); }
50% { text-shadow: 0 0 20px rgba(3, 102, 214, 1), 0 0 30px rgba(3, 102, 214, 0.8); }
100% { text-shadow: 0 0 5px rgba(3, 102, 214, 0.5); }
}
.ascii-art.animated {
animation: glowing 2s infinite;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container">
<a class="navbar-brand" href="#">OpenRecall</a>
<button class="navbar-toggler" data-bs-target="#navbarNav" data-bs-toggle="collapse" type="button">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="#features">Features</a></li>
<li class="nav-item"><a class="nav-link" href="#comparison">Comparison</a></li>
<li class="nav-item"><a class="nav-link" href="#get-started">Get Started</a></li>
</ul>
</div>
</div>
</nav>
<header class="py-5">
<div class="container text-center">
<pre class="text-muted ascii-art">
____ ____ ____
/ __ \____ ___ ____ / __ \___ _________ _/ / /
/ / / / __ \/ _ \/ __ \/ /_/ / _ \/ ___/ __ `/ / /
/ /_/ / /_/ / __/ / / / _, _/ __/ /__/ /_/ / / /
\____/ .___/\___/_/ /_/_/ |_|\___/\___/\__,_/_/_/
/_/
</pre>
<div class="row justify-content-center mt-4">
<div class="col-md-8">
<div class="terminal-card shadow-lg">
<div class="terminal">
<div class="terminal-header">
<span class="terminal-button red"></span>
<span class="terminal-button yellow"></span>
<span class="terminal-button green"></span>
</div>
<div class="terminal-content">
<p><span class="prompt">$</span> python3 -m pip install --upgrade --no-cache-dir git+https://github.com/openrecall/openrecall.git</p>
<p><span class="prompt">$</span> python3 -m openrecall.app</p>
<p class="output">OpenRecall is running! Open your browser to: http://localhost:8082</p>
</div>
</div>
<p class="mt-3">Access OpenRecall through your web browser at <a href="http://localhost:8082">http://localhost:8082</a></p>
</div>
</div>
</div>
<div class="mt-4">
<a class="btn btn-primary btn-lg me-2" href="#">⭐️ Star on GitHub</a>
<a class="btn btn-success btn-lg" href="#get-started">Learn More</a>
</div>
</div>
</header>
<section class="py-5" id="about">
<div class="container">
<h2 class="text-center mb-4">About OpenRecall</h2>
<p class="text-center">OpenRecall is a fully open-source, privacy-first alternative to proprietary solutions like Microsoft's Windows Recall or Limitless' Rewind.ai. With OpenRecall, you can easily access your digital history, enhancing your memory and productivity without compromising your privacy.</p>
</div>
</section><section class="py-5 bg-custom" id="features">
<div class="container">
<h2 class="text-center mb-5">Features</h2>
<div class="row">
<div class="col-md-3 text-center mb-4">
<div class="feature-icon mb-3"><i class="bi bi-clock-history"></i></div>
<h4>Time Travel</h4>
<p>Revisit and explore your past digital activities seamlessly across Windows, macOS, or Linux.</p>
</div>
<div class="col-md-3 text-center mb-4">
<div class="feature-icon mb-3"><i class="bi bi-robot"></i></div>
<h4>Local-First AI</h4>
<p>OpenRecall harnesses the power of local AI processing to keep your data private and secure.</p>
</div>
<div class="col-md-3 text-center mb-4">
<div class="feature-icon mb-3"><i class="bi bi-search"></i></div>
<h4>Semantic Search</h4>
<p>Advanced local OCR interprets your history, providing robust semantic search capabilities.</p>
</div>
<div class="col-md-3 text-center mb-4">
<div class="feature-icon mb-3"><i class="bi bi-hdd"></i></div>
<h4>Full Control Over Storage</h4>
<p>Your data is stored locally, giving you complete control over its management and security.</p>
</div>
</div>
</div>
</section>
<section class="py-5" id="testimonials">
<div class="container">
<h2 class="text-center mb-5">What Our Users Say</h2>
<div class="row">
<div class="col-md-4 mb-4">
<div class="card">
<div class="card-body">
<p class="card-text">"OpenRecall has revolutionized the way I work. I can easily find information from weeks ago, boosting my productivity significantly."</p>
<footer class="blockquote-footer">John Doe, Software Engineer</footer>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card">
<div class="card-body">
<p class="card-text">"As a researcher, OpenRecall has been invaluable. It's like having a photographic memory for all my digital interactions."</p>
<footer class="blockquote-footer">Jane Smith, PhD Candidate</footer>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card">
<div class="card-body">
<p class="card-text">"The privacy-first approach of OpenRecall gives me peace of mind. I can enhance my productivity without compromising my data."</p>
<footer class="blockquote-footer">Mike Johnson, Data Privacy Advocate</footer>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="py-5" id="comparison">
<div class="container">
<h2 class="text-center mb-4">Comparison</h2>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>Feature</th>
<th>OpenRecall</th>
<th>Windows Recall</th>
<th>Rewind.ai</th>
</tr>
</thead>
<tbody>
<tr>
<td>Transparency</td>
<td>Open-source</td>
<td>Closed-source</td>
<td>Closed-source</td>
</tr>
<tr>
<td>Supported Hardware</td>
<td>All</td>
<td>Copilot+ certified Windows hardware</td>
<td>M1/M2 Apple Silicon</td>
</tr>
<tr>
<td>OS Support</td>
<td>Windows, macOS, Linux</td>
<td>Windows</td>
<td>macOS</td>
</tr>
<tr>
<td>Privacy</td>
<td>On-device, self-hosted</td>
<td>Microsoft's privacy policy applies</td>
<td>Connected to ChatGPT</td>
</tr>
<tr>
<td>Cost</td>
<td>Free</td>
<td>Part of Windows 11 (requires specialized hardware)</td>
<td>Monthly subscription</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<section class="py-5 bg-custom" id="get-started">
<div class="container">
<h2 class="text-center mb-4">Get Started</h2>
<div class="row justify-content-center">
<div class="col-md-8">
<h4>Prerequisites</h4>
<ul>
<li>Python 3.11</li>
<li>MacOSX/Windows/Linux</li>
<li>Git</li>
</ul>
<h4>Installation</h4>
<pre class="bg-light p-3 rounded"><code>python3 -m pip install --upgrade --no-cache-dir git+https://github.com/openrecall/openrecall.git</code></pre>
<h4>Run</h4>
<pre class="bg-light p-3 rounded"><code>python3 -m openrecall.app</code></pre>
<p>Open your browser to: <a href="http://localhost:8082">http://localhost:8082</a> to access OpenRecall.</p>
<div class="text-center mt-4">
<a class="btn btn-primary btn-lg" href="#">Download OpenRecall</a>
</div>
</div>
</div>
</div>
</section><section class="py-5" id="faq">
<div class="container">
<h2 class="text-center mb-5">Frequently Asked Questions</h2>
<div class="row">
<div class="col-lg-6">
<div class="accordion" id="faqAccordion">
<div class="accordion-item">
<h3 class="accordion-header" id="headingOne">
<button aria-controls="collapseOne" aria-expanded="true" class="accordion-button" data-bs-target="#collapseOne" data-bs-toggle="collapse" type="button">
How does OpenRecall handle my data?</button>
</h3>
<div aria-labelledby="headingOne" class="accordion-collapse collapse show" data-bs-parent="#faqAccordion" id="collapseOne">
<div class="accordion-body">
OpenRecall processes and stores all your data locally on your device. We do not have access to your information, and it never leaves your machine unless you explicitly choose to share it.</div>
</div>
</div>
<div class="accordion-item">
<h3 class="accordion-header" id="headingTwo">
<button aria-controls="collapseTwo" aria-expanded="false" class="accordion-button collapsed" data-bs-target="#collapseTwo" data-bs-toggle="collapse" type="button">
Is OpenRecall really free?</button>
</h3>
<div aria-labelledby="headingTwo" class="accordion-collapse collapse" data-bs-parent="#faqAccordion" id="collapseTwo">
<div class="accordion-body">
Yes, OpenRecall is completely free and open-source. It's released under the AGPLv3 license, which ensures it remains free and accessible to everyone.</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="accordion" id="faqAccordion2">
<div class="accordion-item">
<h3 class="accordion-header" id="headingThree">
<button aria-controls="collapseThree" aria-expanded="false" class="accordion-button collapsed" data-bs-target="#collapseThree" data-bs-toggle="collapse" type="button">
Can I use OpenRecall offline?</button>
</h3>
<div aria-labelledby="headingThree" class="accordion-collapse collapse" data-bs-parent="#faqAccordion2" id="collapseThree">
<div class="accordion-body">
Yes, OpenRecall is designed to work entirely offline. Once installed, you don't need an internet connection to use its features.</div>
</div>
</div>
<div class="accordion-item">
<h3 class="accordion-header" id="headingFour">
<button aria-controls="collapseFour" aria-expanded="false" class="accordion-button collapsed" data-bs-target="#collapseFour" data-bs-toggle="collapse" type="button">
How does OpenRecall compare to other similar tools?</button>
</h3>
<div aria-labelledby="headingFour" class="accordion-collapse collapse" data-bs-parent="#faqAccordion2" id="collapseFour">
<div class="accordion-body">
Unlike many proprietary solutions, OpenRecall prioritizes privacy and user control. It offers similar functionality to other tools but with the added benefits of being open-source, free, and running entirely on your local machine.</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><footer class="bg-light py-4">
<div class="container text-center">
<p>OpenRecall is released under the AGPLv3, ensuring that it remains open and accessible to everyone.</p>
<p>Contact: <a href="mailto:[email protected]">[email protected]</a></p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script>
// Add 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'
});
});
});
// Implement sticky navigation
window.addEventListener('scroll', function() {
const navbar = document.querySelector('.navbar');
const sticky = navbar.offsetTop;
if (window.pageYOffset > sticky) {
navbar.classList.add('sticky');
} else {
navbar.classList.remove('sticky');
}
});
// Initialize tooltips
var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'))
var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
return new bootstrap.Tooltip(tooltipTriggerEl)
});
// Copy to clipboard functionality
document.querySelectorAll('.btn-outline-secondary').forEach(button => {
button.addEventListener('click', function() {
const input = this.previousElementSibling;
input.select();
document.execCommand('copy');
const tooltip = bootstrap.Tooltip.getInstance(this);
tooltip.setContent({ '.tooltip-inner': 'Copied!' });
setTimeout(() => {
tooltip.setContent({ '.tooltip-inner': 'Copy to clipboard' });
}, 1000);
});
});
// Animate sections on scroll
function isElementInViewport(el) {
const rect = el.getBoundingClientRect();
return (
rect.top >= 0 &&
rect.left >= 0 &&
rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) &&
rect.right <= (window.innerWidth || document.documentElement.clientWidth)
);
}
function animateOnScroll() {
const elements = document.querySelectorAll('.animate-on-scroll');
elements.forEach(element => {
if (isElementInViewport(element)) {
element.classList.add('animated');
}
});
// Animate ASCII art
const asciiArt = document.querySelector('.ascii-art');
if (isElementInViewport(asciiArt) && !asciiArt.classList.contains('animated')) {
asciiArt.classList.add('animated');
setTimeout(() => {
asciiArt.style.transform = 'scale(1.1)';
}, 500);
setTimeout(() => {
asciiArt.style.transform = 'scale(1)';
}, 1000);
}
}
window.addEventListener('scroll', animateOnScroll);
window.addEventListener('load', animateOnScroll);
// Add 'animate-on-scroll' class to sections
document.querySelectorAll('section').forEach(section => {
section.classList.add('animate-on-scroll');
});
</script>
</body>
</html>