-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
464 lines (411 loc) · 15.2 KB
/
terms.html
File metadata and controls
464 lines (411 loc) · 15.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Service — Librarius</title>
<meta name="description" content="Terms of Service for Librarius.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg: #ffffff;
--bg-subtle: #f8fafc;
--text: #0f172a;
--text-muted: #64748b;
--accent: #6366f1;
--border: #e5e7eb;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
color: var(--text);
background: var(--bg);
line-height: 1.7;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 60px 24px;
}
h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 8px; }
.subtitle { color: var(--text-muted); margin-bottom: 48px; }
h2 { font-size: 1.25rem; font-weight: 600; margin-top: 32px; margin-bottom: 16px; }
p { margin-bottom: 16px; color: var(--text-muted); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 32px; font-weight: 500; }
.last-updated { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.875rem; }
pre.license-text {
margin-top: 24px;
padding: 20px;
background: var(--bg-subtle);
border: 1px solid var(--border);
border-radius: 12px;
color: var(--text);
white-space: pre-wrap;
font-size: 0.95rem;
line-height: 1.6;
}
</style>
<style>
/* Theme Toggle */
.theme-toggle-group {
display: flex;
align-items: center;
gap: 4px;
padding: 4px;
background: var(--bg-subtle, #f8fafc);
border-radius: 999px;
border: 1px solid var(--border, #e5e7eb);
}
.theme-toggle-float {
position: fixed;
top: 16px;
right: 16px;
z-index: 1000;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.theme-btn {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border: none;
border-radius: 999px;
background: transparent;
color: var(--text-dim, #64748b);
cursor: pointer;
transition: all 0.2s;
}
.theme-btn:hover {
color: var(--text, #0f172a);
}
.theme-btn.active {
background: var(--accent, #2563eb);
color: #ffffff;
}
[data-theme="dark"] .theme-toggle-group {
background: var(--bg-subtle, #1e293b);
border-color: var(--border, #334155);
}
[data-theme="dark"] .theme-btn.active {
color: var(--bg, #0f172a);
}
[data-theme="dark"] {
color-scheme: dark;
--bg: #0f172a;
--bg-subtle: #1e293b;
--border: #334155;
--border-hover: #475569;
--text: #f1f5f9;
--text-muted: #94a3b8;
--text-dim: #64748b;
--accent: #7aa2f7;
--accent-dark: #7aa2f7;
}
/* Dark Theme Base */
[data-theme="dark"] body {
background: var(--bg, #0f172a);
color: var(--text, #f1f5f9);
}
[data-theme="dark"] a {
color: var(--accent, #7aa2f7);
}
</style>
<style>
/* Modern Footer */
.modern-footer {
background: var(--footer-bg, #f7f2ec);
border-top: 1px solid var(--footer-border, #e5ded5);
padding: 48px 0 24px;
}
.modern-footer .footer-wrap {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}
.modern-footer .footer-grid {
display: grid;
grid-template-columns: minmax(220px, 2.2fr) repeat(3, minmax(140px, 1fr));
gap: 32px;
}
.modern-footer .footer-brand {
display: flex;
flex-direction: column;
gap: 12px;
}
.modern-footer .footer-logo {
display: flex;
align-items: center;
gap: 12px;
font-size: 1.1rem;
font-weight: 600;
}
.modern-footer .footer-mark {
width: 34px;
height: 34px;
border-radius: 10px;
background: linear-gradient(135deg, #9bd0c6, #a5b9f6);
color: #1f2937;
display: inline-flex;
align-items: center;
justify-content: center;
font-weight: 700;
letter-spacing: 0.02em;
}
.modern-footer .footer-desc {
color: var(--text-muted, #6b6b6b);
line-height: 1.6;
max-width: 320px;
}
.modern-footer .footer-email {
display: inline-flex;
align-items: center;
justify-content: center;
width: 56px;
height: 56px;
border-radius: 50%;
border: 1px solid var(--footer-border, #e5ded5);
background: var(--footer-pill, #ffffff);
color: var(--text, #2b2b2b);
text-decoration: none;
transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}
.modern-footer .footer-email svg {
width: 26px;
height: 26px;
stroke: currentColor;
}
.modern-footer .footer-email:hover {
color: var(--accent, #2563eb);
border-color: var(--accent, #2563eb);
transform: translateY(-1px);
box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}
.modern-footer .footer-col h4 {
font-size: 0.78rem;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--text-muted, #7b7b7b);
margin-bottom: 12px;
}
.modern-footer .footer-links {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 10px;
}
.modern-footer .footer-links a {
color: var(--text, #2b2b2b);
text-decoration: none;
}
.modern-footer .footer-links a:hover {
color: var(--accent, #2563eb);
}
.modern-footer .footer-bottom {
margin-top: 32px;
padding-top: 16px;
border-top: 1px solid var(--footer-border, #e5ded5);
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
flex-wrap: wrap;
color: var(--text-muted, #6b6b6b);
font-size: 0.9rem;
}
.modern-footer .footer-bottom a {
color: var(--accent, #2563eb);
text-decoration: none;
}
.modern-footer .footer-badges {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.modern-footer .footer-badge {
padding: 4px 10px;
border-radius: 999px;
border: 1px solid var(--footer-border, #e5ded5);
background: var(--footer-pill, #ffffff);
font-size: 0.78rem;
color: var(--text-muted, #6b6b6b);
}
[data-theme="dark"] .modern-footer {
background: #0b1220;
border-color: #1f2a3a;
}
[data-theme="dark"] .modern-footer .footer-mark {
color: #0f172a;
}
[data-theme="dark"] .modern-footer .footer-email,
[data-theme="dark"] .modern-footer .footer-links a {
color: #e2e8f0;
}
[data-theme="dark"] .modern-footer .footer-email {
background: #0f172a;
border-color: #1f2a3a;
}
[data-theme="dark"] .modern-footer .footer-email:hover {
border-color: #334155;
color: #f8fafc;
}
[data-theme="dark"] .modern-footer .footer-desc,
[data-theme="dark"] .modern-footer .footer-bottom,
[data-theme="dark"] .modern-footer .footer-col h4 {
color: #94a3b8;
}
[data-theme="dark"] .modern-footer .footer-badge {
background: #0f172a;
border-color: #1f2a3a;
color: #94a3b8;
}
@media (max-width: 900px) {
.modern-footer .footer-grid {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 640px) {
.modern-footer .footer-grid {
grid-template-columns: 1fr;
}
.modern-footer .footer-bottom {
flex-direction: column;
align-items: flex-start;
}
}
</style>
</head>
<body>
<div class="theme-toggle-group theme-toggle-float">
<button class="theme-btn" data-theme-value="light" aria-label="Light mode">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="5"/>
<line x1="12" y1="1" x2="12" y2="3"/>
<line x1="12" y1="21" x2="12" y2="23"/>
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"/>
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"/>
<line x1="1" y1="12" x2="3" y2="12"/>
<line x1="21" y1="12" x2="23" y2="12"/>
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"/>
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"/>
</svg>
</button>
<button class="theme-btn" data-theme-value="dark" aria-label="Dark mode">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/>
</svg>
</button>
</div>
<div class="container">
<a href="index.html" class="back-link">← Back to Librarius</a>
<h1>Terms of Service</h1>
<p class="subtitle">Please read these terms carefully</p>
<h2>1. Acceptance of Terms</h2>
<p>By accessing or using Librarius (the "Service"), you agree to be bound by these Terms of Service. If you do not agree to these terms, do not use the Service. Additional guidelines or rules may apply to specific features and are incorporated by reference.</p>
<h2>2. Description of Service</h2>
<p>Librarius is a AI-powered investigation platform for released court documents. The Service allows users to search and analyze document collections, extract entities, and generate evidence-grounded summaries. Some features may rely on on-device models and optional plugins.</p>
<h2>3. User Conduct</h2>
<p>You agree to use the Service only for lawful purposes and in compliance with applicable laws and regulations. You are prohibited from using the Service to impersonate others without consent, to create deceptive or harmful content, or to violate intellectual property rights.</p>
<h2>4. Intellectual Property</h2>
<p>The Service and its original content (excluding user-provided content) are the exclusive property of QNeura.ai and its licensors. You retain ownership of your content. Nothing in these terms grants you the right to use QNeura.ai trademarks or branding without permission.</p>
<h2>5. AI Features Disclaimer</h2>
<p>AI-generated outputs may be inaccurate, imperfect, or unsuitable for critical use cases. You should verify important information using original sources.</p>
<h2>6. Disclaimer of Warranties</h2>
<p>The Service is provided on an "AS IS" and "AS AVAILABLE" basis. QNeura.ai makes no warranties of any kind, express or implied, including but not limited to warranties of merchantability, fitness for a particular purpose, and noninfringement.</p>
<h2>7. Limitation of Liability</h2>
<p>In no event shall QNeura.ai be liable for any damages (including, without limitation, damages for loss of data or profit, or due to business interruption) arising out of the use or inability to use the Service.</p>
<h2>8. Changes to Terms</h2>
<p>QNeura.ai reserves the right, at its sole discretion, to modify or replace these Terms at any time. Continued use of the Service after changes constitutes acceptance of the updated terms.</p>
<h2>9. Contact Us</h2>
<p>If you have questions about these Terms, contact us at <a href="mailto:solomon@qneura.ai">solomon@qneura.ai</a>.</p>
<h2>10. External Content Sources</h2>
<p>The Service may provide access to or include third-party models, datasets, or libraries. These contents are provided by their respective sources and are subject to their own licenses. You are responsible for ensuring your use complies with applicable laws and third-party terms.</p>
<h2>11. Apple Standard EULA</h2>
<p>If the app is distributed through the Apple App Store, the Apple Standard EULA applies: <a href="https://www.apple.com/legal/internet-services/itunes/dev/stdeula/">https://www.apple.com/legal/internet-services/itunes/dev/stdeula/</a>.</p>
<h2>12. Paid Features</h2>
<p>If paid features are offered, purchases are processed by the storefront or payment provider and are governed by their terms. Subscription management and cancellations are handled through your account with that provider.</p>
<p class="last-updated">Last updated: February 2026</p>
</div>
<script>
(function() {
const themeButtons = document.querySelectorAll('.theme-btn');
if (!themeButtons.length) {
return;
}
const storedTheme = localStorage.getItem('theme');
const prefersDark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;
const initialTheme = storedTheme || (prefersDark ? 'dark' : 'light');
document.documentElement.setAttribute('data-theme', initialTheme);
themeButtons.forEach(btn => {
btn.classList.toggle('active', btn.dataset.themeValue === initialTheme);
btn.addEventListener('click', () => {
const theme = btn.dataset.themeValue;
document.documentElement.setAttribute('data-theme', theme);
localStorage.setItem('theme', theme);
themeButtons.forEach(b => b.classList.toggle('active', b === btn));
});
});
})();
</script>
<script src="privacy-consent.js"></script>
<footer class="modern-footer">
<div class="footer-wrap">
<div class="footer-grid">
<div class="footer-brand">
<div class="footer-logo">
<span class="footer-mark">L</span>
<span class="footer-name">Librarius</span>
</div>
<p class="footer-desc">Investigation workspace for the Epstein files with search and timeline analysis.</p>
<a class="footer-email" href="mailto:solomon@qneura.ai" aria-label="Email solomon@qneura.ai">
<svg viewBox="0 0 24 24" aria-hidden="true">
<path d="M4 7h16v10H4z" fill="none" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="m4 8 8 6 8-6" fill="none" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</a>
</div>
<div class="footer-col">
<h4>Product</h4>
<ul class="footer-links">
<li><a href="index.html#features">Features</a></li>
<li><a href="index.html#search">Search</a></li>
<li><a href="index.html#specs">Specs</a></li>
<li><a href="index.html#download">Download</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Support</h4>
<ul class="footer-links">
<li><a href="https://github.com/BoltzmannEntropy/Librarius" target="_blank" rel="noopener">GitHub</a></li>
<li><a href="mailto:solomon@qneura.ai">Contact</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Legal</h4>
<ul class="footer-links">
<li><a href="privacy.html">Privacy</a></li>
<li><a href="terms.html">Terms</a></li>
<li><a href="license.html">License</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<div>© 2026 Librarius. All rights reserved.</div>
<div>Made with ♥ for investigators everywhere. <a href="https://qneura.ai/apps.html" target="_blank" rel="noopener">QNeura.ai</a> · Solomon Kashani</div>
<div class="footer-badges">
<span class="footer-badge">macOS</span>
<span class="footer-badge">Investigation</span>
<span class="footer-badge">Local-first</span>
</div>
</div>
</div>
</footer>
</body>
</html>