-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
525 lines (454 loc) · 25.4 KB
/
Copy pathterms.html
File metadata and controls
525 lines (454 loc) · 25.4 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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Terms and Conditions | Ventarys AI</title>
<!-- AdSense Configuration -->
<meta name="google-adsense-account" content="ca-pub-9019277340139989">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9019277340139989"
crossorigin="anonymous"></script>
<!-- SEO and Metadata -->
<link rel="icon" href="logo.png">
<meta name="description"
content="Ventarys AI Terms and Conditions. Clear rules for a safe and open Artificial Intelligence environment." />
<!-- Material Web Components -->
<script type="module" src="https://esm.run/@material/web/all.js"></script>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Fonts & Icons -->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link
href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap"
rel="stylesheet">
<script>
tailwind.config = {
darkMode: 'media',
theme: {
extend: {
fontFamily: {
sans: ['"Outfit"', 'sans-serif'],
body: ['"Inter"', 'sans-serif'],
mono: ['"JetBrains Mono"', 'monospace'],
},
colors: {
ventarys: {
black: '#000000',
white: '#ffffff',
gray: { 50: '#fafafa', 100: '#f5f5f5', 200: '#e5e5e5', 300: '#d4d4d4', 800: '#262626', 900: '#171717', 950: '#0a0a0a' },
accent: '#888888'
}
},
animation: {
'fade-in': 'fadeIn 1s ease-out forwards',
'fade-in-up': 'fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards',
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
keyframes: {
fadeIn: { '0%': { opacity: '0' }, '100%': { opacity: '1' } },
fadeInUp: { '0%': { opacity: '0', transform: 'translateY(20px)' }, '100%': { opacity: '1', transform: 'translateY(0)' } },
}
}
}
}
</script>
<style>
/* Monochromatic Material 3 Overrides - Ultra Minimalist */
:root {
--md-sys-color-primary: #000000;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-outline: #e5e5e5;
--md-sys-color-surface: #ffffff;
--md-sys-color-on-surface: #000000;
--md-sys-typescale-label-large-font: 'Outfit', sans-serif;
--md-sys-shape-corner-full: 4px;
color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
:root {
--md-sys-color-primary: #ffffff;
--md-sys-color-on-primary: #000000;
--md-sys-color-outline: #262626;
--md-sys-color-surface: #0a0a0a;
--md-sys-color-on-surface: #ffffff;
}
}
body {
background-color: theme('colors.white');
color: theme('colors.black');
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@media (prefers-color-scheme: dark) {
body {
background-color: theme('colors.ventarys.950');
color: theme('colors.white');
}
}
/* Ultra-subtle Glass Nav */
.glass-nav {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
@media (prefers-color-scheme: dark) {
.glass-nav {
background: rgba(10, 10, 10, 0.8);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
}
/* Minimalist Cards - Elegant Redesign */
.minimal-card {
background-color: transparent;
border: 1px solid theme('colors.ventarys.gray.200');
border-radius: 8px;
position: relative;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.minimal-card:hover {
border-color: theme('colors.black');
box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
transform: translateY(-2px);
}
@media (prefers-color-scheme: dark) {
.minimal-card {
border-color: theme('colors.ventarys.gray.800');
}
.minimal-card:hover {
border-color: theme('colors.white');
box-shadow: 0 10px 40px -10px rgba(255, 255, 255, 0.05);
}
}
.logo-mono {
filter: brightness(0);
transition: filter 0.3s ease;
}
@media (prefers-color-scheme: dark) {
.logo-mono {
filter: brightness(0) invert(1);
}
}
.reveal {
opacity: 0;
transform: translateY(30px);
transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
opacity: 1;
transform: translateY(0);
}
md-icon {
font-family: 'Material Symbols Rounded', sans-serif;
font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
/* Ultra subtle Grid Background */
.bg-grid {
background-size: 60px 60px;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}
@media (prefers-color-scheme: dark) {
.bg-grid {
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
}
}
</style>
</head>
<body
class="transition-colors duration-500 relative font-body selection:bg-black selection:text-white dark:selection:bg-white dark:selection:text-black">
<div class="fixed inset-0 z-0 pointer-events-none bg-grid opacity-50"></div>
<!-- Elegant Navigation -->
<nav id="main-nav" class="fixed w-full z-50 glass-nav top-0 transition-all duration-300">
<div class="max-w-7xl mx-auto px-6 h-20 flex items-center justify-between">
<a href="index.html" class="flex items-center gap-4 group">
<img src="logo.png" alt="Ventarys Logo"
class="w-6 h-6 object-contain logo-mono opacity-80 group-hover:opacity-100 transition-opacity">
<span class="text-xl font-sans font-medium tracking-wide">Ventarys</span>
</a>
<div class="hidden md:flex items-center gap-10 translate-yes">
<a href="index.html#ecosystem"
class="text-sm font-medium text-gray-500 dark:text-gray-400 hover:text-black dark:hover:text-white transition-colors">Ecosystem</a>
<a href="index.html#ventarys-idx"
class="text-sm font-medium text-gray-500 dark:text-gray-400 hover:text-black dark:hover:text-white transition-colors">IDX
Editor</a>
<a href="index.html#api"
class="text-sm font-medium text-gray-500 dark:text-gray-400 hover:text-black dark:hover:text-white transition-colors">API</a>
</div>
<div class="flex items-center gap-4 translate-yes">
<div class="hidden md:block ml-4">
<md-outlined-button href="https://github.com/Juanoto2012/Ventarys-AI" target="_blank">
GitHub
</md-outlined-button>
</div>
<md-icon-button id="mobile-menu-btn" class="md:hidden">
<md-icon class="notranslate" translate="no">menu</md-icon>
</md-icon-button>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu"
class="hidden md:hidden absolute top-[80px] left-0 w-full bg-white/95 dark:bg-ventarys-950/95 backdrop-blur-xl border-b border-gray-200 dark:border-gray-800 shadow-2xl transition-all translate-yes">
<div class="flex flex-col p-6 gap-6 font-sans text-lg">
<a href="index.html#ecosystem" class="font-medium text-gray-800 dark:text-gray-200"
onclick="document.getElementById('mobile-menu').classList.add('hidden')">Ecosystem</a>
<a href="index.html#ventarys-idx" class="font-medium text-gray-800 dark:text-gray-200"
onclick="document.getElementById('mobile-menu').classList.add('hidden')">Ventarys IDX</a>
<a href="index.html#api" class="font-medium text-gray-800 dark:text-gray-200"
onclick="document.getElementById('mobile-menu').classList.add('hidden')">API Developers</a>
<md-filled-button href="https://github.com/Juanoto2012/Ventarys-AI" target="_blank" class="w-full">View
on GitHub</md-filled-button>
</div>
</div>
</nav>
<!-- [ULTRA MINIMALIST HERO SECTION] -->
<header class="relative pt-48 pb-32 lg:pt-64 lg:pb-40 z-10 flex flex-col items-center text-center translate-yes">
<div class="max-w-5xl mx-auto px-6">
<div class="animate-fade-in-up">
<div
class="inline-flex items-center gap-3 px-4 py-1.5 rounded-full border border-gray-200 dark:border-gray-800 bg-white/50 dark:bg-black/50 backdrop-blur-sm text-xs font-semibold tracking-widest uppercase mb-10 text-gray-500 dark:text-gray-400">
<span class="w-2 h-2 rounded-full bg-black dark:bg-white animate-pulse"></span>
Terms of Service
</div>
<h1
class="text-5xl md:text-7xl lg:text-8xl font-sans font-light tracking-tight mb-8 leading-[1.1] text-gray-900 dark:text-white">
Terms & <br>
<span class="font-semibold">Conditions.</span>
</h1>
<p
class="text-gray-500 dark:text-gray-400 max-w-2xl mx-auto text-lg md:text-xl leading-relaxed mb-6 font-light">
Clear rules for an open environment. By using Ventarys AI, you commit to ethical, responsible, and
safe use of the technology.
</p>
<p class="text-gray-400 dark:text-gray-500 text-xs font-mono uppercase tracking-widest">
Last updated: March 2026
</p>
</div>
</div>
</header>
<!-- [LEGAL CONTENT] -->
<section class="py-32 relative z-10 translate-yes">
<div class="max-w-4xl mx-auto px-6">
<div class="minimal-card p-10 md:p-14 reveal">
<p>Welcome to <strong>Ventarys AI</strong>. These Terms and Conditions govern your access to and use of
our web platform, mobile application, and the artificial intelligence assistance services we
provide.</p>
<div
class="my-10 p-6 rounded-2xl bg-gray-50/50 dark:bg-ventarys-900/20 border border-gray-200 dark:border-gray-800 flex items-start gap-4">
<md-icon class="text-black dark:text-white mt-1 notranslate" translate="no">handshake</md-icon>
<div>
<strong class="text-lg block mb-1 text-gray-900 dark:text-white">Acceptance of Terms</strong>
<p class="mb-0 text-sm text-gray-500 dark:text-gray-400">By accessing or using Ventarys AI in
any way, you confirm that you have read, understood, and agreed to be bound by these Terms
and Conditions. If you do not agree with any part, you must not use our service.</p>
</div>
</div>
<h2 class="text-2xl md:text-3xl font-sans font-semibold tracking-tight mb-6 mt-12">1. Service
Description</h2>
<p>Ventarys AI works as a secure technological intermediary ("Blind Middleman"). We provide an optimized
user interface and a secure tunnel to interact with Open Source artificial intelligence language
models hosted by third parties (such as Pollinations.ai).</p>
<ul class="list-disc pl-6 mb-6 space-y-2">
<li>We are not creators or owners of the underlying AI models.</li>
<li>We offer the service "As-is", seeking the highest possible availability, but without
guaranteeing uninterrupted response times.</li>
</ul>
<h2 class="text-2xl md:text-3xl font-sans font-semibold tracking-tight mb-6 mt-12">2. Acceptable and
Safe Use Rules</h2>
<p>Ventarys is designed to be an educational, creative, and productivity tool. You commit to using the
platform ethically. <strong>It is strictly prohibited to use Ventarys AI to generate, promote, or
spread:</strong></p>
<ul class="list-disc pl-6 mb-6 space-y-2">
<li>Content that promotes violence, hate, discrimination, or harm to oneself or others.</li>
<li>Illegal, misleading content, or content that facilitates the commission of crimes.</li>
<li>Suggestive, inappropriate, or harmful material, including requesting information about drugs,
illegal gambling, or topics not suitable for a safe and family-friendly environment.</li>
<li>Spam, massive disinformation campaigns, or cyber attacks (like malware generation).</li>
</ul>
<p>We reserve the right to block access to the platform (via IP blocking or other network-level means)
if we detect usage that violates these fundamental rules.</p>
<h2 class="text-2xl md:text-3xl font-sans font-semibold tracking-tight mb-6 mt-12">3. Disclaimer (AI
"Hallucinations")</h2>
<p>Generative artificial intelligence is an experimental technology. The models used by Ventarys AI may
sometimes generate information that sounds plausible but is incorrect, inaccurate, or invented
(commonly called "hallucinations").</p>
<ul class="list-disc pl-6 mb-6 space-y-2">
<li><strong>Independent verification:</strong> You are solely responsible for verifying any claim,
code snippet, medical, legal, or financial advice generated by the AI before using it.</li>
<li><strong>No warranties:</strong> Ventarys (and JJDev Studio) assumes no liability for direct,
indirect, or consequential damages arising from the use of or reliance on the information
generated by the platform.</li>
</ul>
<h2 class="text-2xl md:text-3xl font-sans font-semibold tracking-tight mb-6 mt-12">4. Privacy and User
Data</h2>
<p>Your privacy is our technical priority. As detailed in our <a href="privacy.html"
class="text-black dark:text-white underline decoration-2 underline-offset-4">Privacy Policy</a>,
we do not require account creation and we do not store your chat history on remote servers. All
conversation retention processing is done locally on your device.</p>
<h2 class="text-2xl md:text-3xl font-sans font-semibold tracking-tight mb-6 mt-12">5. Intellectual
Property</h2>
<p><strong>Of the interface:</strong> The design, user interface code, logo, and the "Ventarys" brand
are the property of JJDev Studio.</p>
<p><strong>Of the generated content:</strong> We do not claim copyright over the text or code generated
through your interactions with the AI. Commercial or public use of the AI outputs depends on the
specific licenses of the underlying Open Source models used for inference.</p>
<h2 class="text-2xl md:text-3xl font-sans font-semibold tracking-tight mb-6 mt-12">6. Modifications to
the Terms</h2>
<p>We may modify these Terms and Conditions at any time to reflect changes in our platform, third-party
policies, or legal requirements. Continued use of Ventarys AI after any modification constitutes
your acceptance of the new terms.</p>
<h2 class="text-2xl md:text-3xl font-sans font-semibold tracking-tight mb-6 mt-12">7. Contact and
Support</h2>
<p>If you have questions about these Terms, you can contact the developers by writing to:
<strong>ventarys@proton.me</strong></p>
<div class="mt-12 pt-8 border-t border-gray-200 dark:border-gray-800 text-center">
<md-filled-button href="index.html" class="mt-4">
<md-icon slot="icon" class="notranslate" translate="no">arrow_back</md-icon>
Understood, return to Ventarys
</md-filled-button>
</div>
</div>
</div>
</section>
<!-- Elegant Footer -->
<footer
class="bg-white dark:bg-ventarys-950 pt-24 pb-12 relative z-10 border-t border-gray-100 dark:border-gray-900 translate-yes">
<div class="max-w-7xl mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-12 mb-20">
<div class="md:col-span-2 max-w-sm">
<div class="flex items-center gap-3 mb-6">
<img src="logo.png" alt="Logo" class="w-5 h-5 object-contain logo-mono translate-no">
<span class="text-lg font-sans font-medium tracking-wide translate-no">Ventarys</span>
</div>
<p class="text-gray-400 text-sm font-light leading-relaxed">
Building the standard for private interaction with Artificial Intelligence. Open source by
conviction.
</p>
</div>
<div class="flex flex-col gap-4">
<span class="font-mono tracking-widest uppercase text-[10px] text-gray-400 mb-2">Platform</span>
<a href="https://perchance.org/ventarys-ai/.html"
class="text-sm text-gray-600 dark:text-gray-300 hover:text-black dark:hover:text-white transition-colors">Ventarys
AI</a>
<a href="index.html#ventarys-idx"
class="text-sm text-gray-600 dark:text-gray-300 hover:text-black dark:hover:text-white transition-colors">Ventarys
IDX</a>
<a href="index.html#api"
class="text-sm text-gray-600 dark:text-gray-300 hover:text-black dark:hover:text-white transition-colors">API</a>
</div>
<div class="flex flex-col gap-4">
<span class="font-mono tracking-widest uppercase text-[10px] text-gray-400 mb-2">Community</span>
<a href="https://github.com/Juanoto2012" target="_blank"
class="text-sm text-gray-600 dark:text-gray-300 hover:text-black dark:hover:text-white transition-colors">GitHub</a>
<a href="forum.html"
class="text-sm text-gray-600 dark:text-gray-300 hover:text-black dark:hover:text-white transition-colors">Forum</a>
<a href="privacy.html"
class="text-sm text-gray-600 dark:text-gray-300 hover:text-black dark:hover:text-white transition-colors">Privacy</a>
<a href="terms.html"
class="text-sm text-gray-600 dark:text-gray-300 hover:text-black dark:hover:text-white transition-colors">Terms</a>
</div>
</div>
<div
class="border-t border-gray-100 dark:border-gray-900 pt-8 flex flex-col md:flex-row justify-between items-center gap-4 text-xs text-gray-400 font-light">
<p>© 2026 Ventarys. All rights reserved.</p>
<div class="flex items-center gap-2">
<span>Designed and developed by</span>
<a href="https://github.com/Juanoto2012" target="_blank"
class="font-medium text-gray-600 dark:text-gray-300 hover:text-black dark:hover:text-white transition-colors translate-no">JJDev Studio
Studio</a>
</div>
</div>
</div>
</footer>
<!-- Minimalist Cookie Banner -->
<div id="cookie-consent"
class="translate-yes fixed bottom-6 left-1/2 transform -translate-x-1/2 w-[90%] max-w-xl bg-white dark:bg-ventarys-950 border border-gray-200 dark:border-gray-800 p-4 rounded z-[60] hidden flex-col sm:flex-row items-center justify-between gap-6 shadow-2xl transition-all duration-700 translate-y-10 opacity-0">
<p class="text-xs text-gray-500 text-center sm:text-left font-light leading-relaxed">
We maintain the service with minimal advertising. <b>No abusive trackers.</b>
</p>
<button onclick="acceptCookies()"
class="flex-shrink-0 text-xs font-medium uppercase tracking-widest border border-black dark:border-white px-6 py-2 rounded hover:bg-black hover:text-white dark:hover:bg-white dark:hover:text-black transition-colors">
Got it
</button>
</div>
<!-- CORE SCRIPTS -->
<script>
// Smooth Scroll Animations
document.addEventListener("DOMContentLoaded", () => {
const reveals = document.querySelectorAll('.reveal');
const revealOptions = {
threshold: 0.1,
rootMargin: "0px 0px -40px 0px"
};
const revealOnScroll = new IntersectionObserver(function (entries, observer) {
entries.forEach(entry => {
if (!entry.isIntersecting) return;
entry.target.classList.add('active');
observer.unobserve(entry.target);
});
}, revealOptions);
reveals.forEach(reveal => {
revealOnScroll.observe(reveal);
});
});
// Cookie Management
const cookieBanner = document.getElementById('cookie-consent');
function checkCookies() {
if (!localStorage.getItem('ventarys_consent')) {
cookieBanner.classList.remove('hidden');
cookieBanner.style.display = 'flex';
setTimeout(() => {
cookieBanner.classList.remove('translate-y-20', 'opacity-0');
}, 100);
}
}
function acceptCookies() {
localStorage.setItem('ventarys_consent', 'true');
cookieBanner.classList.add('translate-y-20', 'opacity-0');
setTimeout(() => {
cookieBanner.style.display = 'none';
}, 500);
}
// Mobile Menu
const mobileMenuBtn = document.getElementById('mobile-menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
if (mobileMenuBtn && mobileMenu) {
mobileMenuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
}
// Dynamic Favicon
const initDynamicFavicon = () => {
const favicon = document.querySelector("link[rel='icon']");
if (!favicon) return;
const img = new Image();
img.crossOrigin = "anonymous";
img.src = favicon.href;
const renderFavicon = () => {
if (!img.width) return;
const canvas = document.createElement('canvas');
canvas.width = img.width;
canvas.height = img.height;
const ctx = canvas.getContext('2d');
const isDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
ctx.filter = isDark ? 'brightness(0) invert(1)' : 'brightness(0)';
ctx.drawImage(img, 0, 0);
try {
favicon.href = canvas.toDataURL('image/png');
} catch (e) {
console.warn("CORS policies prevented modifying the favicon dynamically.");
}
};
img.onload = () => {
renderFavicon();
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', renderFavicon);
};
};
window.addEventListener('load', () => {
initDynamicFavicon();
setTimeout(checkCookies, 1500);
});
</script>
</body>
</html>