-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
688 lines (643 loc) · 28.5 KB
/
Copy pathterms.html
File metadata and controls
688 lines (643 loc) · 28.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
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="description"
content="Terms and Conditions for Hereditas - Learn about our service terms, user agreements, and legal conditions."
/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Title -->
<title>Terms and Conditions - Hereditas</title>
<!-- Favicon -->
<link rel="icon" href="assets/img/favicon.png" />
<!-- ***** All CSS Files ***** -->
<!-- Style css -->
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<div class="main">
<!-- ***** Preloader Start ***** -->
<div class="preloader-main">
<div class="preloader-wapper">
<svg
class="preloader"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="600"
height="200"
>
<defs>
<filter id="goo" x="-40%" y="-40%" height="200%" width="400%">
<feGaussianBlur
in="SourceGraphic"
stdDeviation="10"
result="blur"
/>
<feColorMatrix
in="blur"
mode="matrix"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 19 -8"
result="goo"
/>
</filter>
</defs>
<g filter="url(#goo)">
<circle class="dot" cx="50" cy="50" r="25" fill="#203d52" />
<circle class="dot" cx="50" cy="50" r="25" fill="#203d52" />
</g>
</svg>
<div>
<div class="loader-section section-left"></div>
<div class="loader-section section-right"></div>
</div>
</div>
</div>
<!-- ***** Preloader End ***** -->
<!-- ***** Header Start ***** -->
<header id="header">
<!-- Navbar -->
<nav
data-aos="zoom-out"
data-aos-delay="800"
class="navbar gameon-navbar navbar-expand"
>
<div class="container header">
<!-- Logo -->
<a class="navbar-brand" href="index.html#home">
<img
src="assets/img/logo/logo.png"
alt="Brand Logo"
style="height: 35px"
/>
</a>
<div class="ms-auto"></div>
<!-- Navbar Nav -->
<ul class="navbar-nav items mx-auto">
<li class="nav-item">
<a class="nav-link" href="index.html#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#features">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#screenshots"
>Screenshots</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#pricing">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#contact">Contact</a>
</li>
</ul>
<!-- Navbar Icons -->
<ul class="navbar-nav icons"></ul>
<!-- Navbar Toggler -->
<ul class="navbar-nav toggle">
<li class="nav-item">
<a
href="#"
class="nav-link"
data-bs-toggle="modal"
data-bs-target="#menu"
>
<i class="icon-menu m-0"></i>
</a>
</li>
</ul>
</div>
</nav>
</header>
<!-- ***** Header End ***** -->
<!-- ***** Terms and Conditions Section Start ***** -->
<section class="privacy-policy-section py-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-lg-10">
<div class="privacy-content">
<div class="privacy-header">
<h1 class="privacy-title">Terms of Service</h1>
<div class="privacy-divider"></div>
<p class="privacy-date">
<strong>Last Updated:</strong> 21/10/2025
</p>
</div>
<div class="privacy-section">
<p>
Welcome to Hereditas! These Terms of Service ("Terms")
constitute a legally binding End User License Agreement
(EULA) between you and Hereditas ("we," "us," or "our"),
governing your access to and use of the Hereditas mobile
application ("App") and all associated services. By
accessing or using the App, you agree to be bound by these
Terms. If you do not agree, do not use the App.
</p>
</div>
<div class="privacy-section">
<h2>1. Eligibility and Acceptance</h2>
<p>
You must be at least 13 years old to use Hereditas. By using
the App, you confirm that you are eligible and that you
agree to comply with these Terms and all applicable laws.
</p>
</div>
<div class="privacy-section">
<h2>2. Description of the Service</h2>
<p>
Hereditas is an educational mobile app that uses AI to
recognize and explain artworks, monuments, and cultural
sites based on user-uploaded photos. Users can explore
historical facts and curiosities, listen to audio guides,
and store their discoveries within a personal profile.
Features vary by tier:
</p>
<ul>
<li>
<strong>Free Tier:</strong> Limited number of scans per
day; limited Learn section content; identification with
limited information (quick summary, key takeaways, and
curiosities only); no access to audio guides; limited
organizational features.
</li>
<li>
<strong
>Pro Tier (€38.99 or $44.99/year, price varies slightly
by country):</strong
>
Unlimited scans; full, detailed historical explanations;
full access to audio guides; full Learn section access.
</li>
<li>
<strong>7-Day Pass:</strong> One-time purchase granting
Premium access for 7 consecutive days; non-renewing.
</li>
</ul>
<p>
Pricing depends on your country and may vary slightly due to
currency or regional adjustments.
</p>
<p>
No guarantees are made regarding the accuracy of
identification or information provided. The App is for
personal, non-commercial use only.
</p>
<p>
The App may also include optional social features, such as public user profiles, following other users, and viewing shared discoveries. These features are provided for informational and community purposes only, and we do not guarantee the accuracy, appropriateness, or availability of user-generated content shared by others.
</p>
</div>
<div class="privacy-section">
<h2>3. User Accounts</h2>
<p>
Users may create accounts using email/password or
Google/Apple login. You are responsible for maintaining the
security of your login credentials and account activity.
</p>
</div>
<div class="privacy-section">
<h2>4. User Content</h2>
<p>
You retain ownership of photos you upload. By uploading, you
grant us a worldwide, non-exclusive license to use the
content solely to provide and improve the App. Photos are
stored with your profile, along with the location
where they were taken.
</p>
<p>
You agree not to upload photos you do not have rights to or
that are illegal, offensive, or infringe on others' rights.
We may remove any content that violates these Terms.
</p>
<p>
Users may be able to share their discoveries publicly within or outside the App, depending on their account settings. Any content you choose to make public may be viewed, shared, saved, or redistributed by other users or third parties, including outside the App (for example, via screenshots or external sharing). Such sharing is done at your own discretion and risk, and we are not responsible for how others use content you make publicly available.
</p>
</div>
<div class="privacy-section">
<h2>5. Payments and Subscriptions</h2>
<p>Hereditas is free to use with limited features.</p>
<p>
The Pro version is a paid subscription with region-dependent
pricing (e.g., €38.99 or $44.99 annually, with slight
variations in other currencies). Payments are processed via
the App Store.
</p>
<p>
Subscriptions auto-renew unless cancelled at least 24 hours
before renewal. You can manage or cancel subscriptions via
your App Store account. Fees are non-refundable except where
required by law.
</p>
<p>
If a free trial is offered, it lasts 3 days and may convert
into a paid subscription unless cancelled at least 24 hours
before the trial ends.
</p>
<p>
We may adjust pricing, subscription benefits, or free-tier
limits at any time with prior notice.
</p>
</div>
<div class="privacy-section">
<h2>6. Acceptable Use and Prohibited Conduct</h2>
<p>You agree not to:</p>
<ul>
<li>
Use the App for unlawful, harmful, or commercial purposes.
</li>
<li>
Upload illegal, infringing, offensive, or harmful content.
</li>
<li>
Use scripts, bots, scraping tools, or automated systems.
</li>
<li>
Attempt to bypass usage limits (e.g., any scan limits
applied to the free tier).
</li>
<li>Impersonate others or misrepresent your identity.</li>
<li>Distribute malware, spyware, or malicious code.</li>
<li>
Engage in excessive or abnormal scanning activity,
including generating an unusually high number of scans
that suggests misuse, automated behavior, or intentional
actions that could harm, overload, or disrupt the App.
</li>
<li>
Harass, threaten, stalk, or abuse other users, or misuse social features in a way that interferes with others' use of the App.
</li>
</ul>
<p>
Violations may result in suspension or permanent banning of
your account at our sole discretion.
</p>
<p>
We do not control or endorse user-generated content or social interactions between users. Interactions with other users are at your own risk. We are not responsible for disputes, claims, or damages arising from user interactions, including content shared through social features.
</p>
</div>
<div class="privacy-section">
<h2>7. Intellectual Property and License</h2>
<p>
All rights in the App, including its design, software, text,
illustrations, logos, layout, sounds, and source code, are
owned by us or our licensors. All elements of the
App—including but not limited to the interface, layout,
text, images, illustrations, logos, sounds, and source
code—are protected by copyright and trademark laws. You may
not copy, reproduce, retransmit, distribute, or publish any
part of the App without our express written consent.
</p>
<p>
You are granted a limited, revocable, non-exclusive,
non-transferable license to use Hereditas for personal use
only. You may not reverse engineer, decompile, copy, modify,
rent, sell, sublicense, or distribute any portion of the App
or its content.
</p>
</div>
<div class="privacy-section">
<h2>8. Disclaimers</h2>
<p>
Hereditas is provided "as is" and "as available." We do not
guarantee that:
</p>
<ul>
<li>The information is accurate, complete, or reliable.</li>
<li>
The App will be uninterrupted, error-free, or secure.
</li>
<li>Your data will not be lost or damaged.</li>
<li>
The App will meet your legal, regulatory, or compatibility
requirements.
</li>
</ul>
<p>
You use the App at your own risk. We are not liable for
decisions made based on App content.
</p>
</div>
<div class="privacy-section">
<h2>9. Indemnification</h2>
<p>
You agree to indemnify, defend, and hold harmless Hereditas,
its affiliates, and employees from any claims, liabilities,
damages, or expenses arising out of your use of the App,
violation of these Terms, or infringement of any rights of a
third party.
</p>
</div>
<div class="privacy-section">
<h2>10. Limitation of Liability</h2>
<p>
To the extent permitted by law, we are not liable for any
indirect, incidental, special, or consequential damages
arising out of your use of the App.
</p>
<p>
Our total liability will not exceed the amount you paid (if
any) for use of the App in the 12 months preceding the
claim.
</p>
</div>
<div class="privacy-section">
<h2>11. Termination</h2>
<p>
We may suspend or terminate your access at any time, with or
without notice, if you breach these Terms or misuse the App.
You may terminate your account via in-app settings or by
contacting us.
</p>
<p>
Upon termination, your license to use the App ends
immediately. We may retain data as required by law.
</p>
</div>
<div class="privacy-section">
<h2>12. DMCA and Copyright Complaints</h2>
<p>
If you believe content on Hereditas infringes your
intellectual property rights, please contact us at
<strong>info@hereditas.dev</strong> with a detailed description and supporting evidence. We respond to valid claims in accordance with applicable copyright laws (e.g., DMCA).
</p>
</div>
<div class="privacy-section">
<h2>13. Privacy and Data Use</h2>
<p>
By using Hereditas, you agree to our Privacy Policy which
governs how we collect and process personal data, including:
</p>
<ul>
<li>Your uploaded photos</li>
<li>Location where the photo was taken</li>
<li>Basic account information (e.g., email)</li>
</ul>
<p>
We do not store follow-up chatbot conversations. We use
Supabase for secure hosting and may transfer data
internationally. You have rights under laws like GDPR and
CCPA. See our Privacy Policy for details.
</p>
<p>
We may use third-party advertising and analytics services, including Meta and TikTok, as described in our Privacy Policy.
</p>
</div>
<div class="privacy-section">
<h2>14. Third-Party Links and Services</h2>
<p>
This App may reference or use services from third parties
(e.g. OpenAI, Eleven Labs). We are not responsible for their
content or practices. Use of such services is subject to
their own terms and policies.
</p>
</div>
<div class="privacy-section">
<h2>15. Newsletter and Notifications</h2>
<p>
By creating an account, you agree that we may send you
occasional newsletters, product updates, offers, and
App-related communications.
</p>
<p>
You may unsubscribe at any time via the link in the email or
device settings.
</p>
<p>
The App may also send push notifications, which you can
disable at any time through your device settings.
</p>
</div>
<div class="privacy-section">
<h2>16. Changes to Terms and Services</h2>
<p>
We may update these Terms at any time. If changes are
material, we will notify you via the App or email. Continued
use of the App after updates means you accept the new Terms.
</p>
<p>
We may change or discontinue features of the App at any
time.
</p>
</div>
<div class="privacy-section">
<h2>17. Governing Law and Disputes</h2>
<p>
These Terms are governed by the laws of Spain, without
regard to conflicts of law. Any disputes shall be resolved
exclusively in the courts of Spain.
</p>
<p>
You agree to resolve disputes individually and not as part
of a class action.
</p>
</div>
<div class="privacy-section">
<h2>18. Severability</h2>
<p>
If any part of these Terms is held to be invalid or
unenforceable, the remaining provisions will remain in full
force and effect.
</p>
</div>
<div class="privacy-section">
<h2>19. Contact</h2>
<p>
If you have questions or concerns, contact us at:<br />
<strong>Email:</strong> info@hereditas.dev
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Terms and Conditions Section End ***** -->
<!--====== Height Emulator Area Start ======-->
<div class="height-emulator d-none d-lg-block"></div>
<!--====== Height Emulator Area End ======-->
<!--====== Footer Area Start ======-->
<footer class="footer-area footer-fixed p-0">
<!-- Footer Top -->
<div class="footer-top">
<div class="container">
<div class="row items">
<div class="col-12 col-sm-6 col-lg-3 item">
<!-- Footer Items -->
<div class="footer-items">
<!-- Logo -->
<a class="navbar-brand" href="index.html#home">
<img
class="logo"
src="assets/img/logo/logo.png"
alt=""
style="height: 30px"
/>
</a>
<p class="slug mt-3">
Discover the living stories of art and monuments through
AI-powered image recognition.
</p>
<hr />
<!-- Social Icons -->
<div class="social-icons d-flex mt-3">
<a
class="icon has-overlay overlay-gradient"
href="https://instagram.com/hereditas_app"
target="_blank"
>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-instagram"></i>
</a>
<a
class="icon has-overlay overlay-gradient"
href="https://tiktok.com/@hereditas_app"
target="_blank"
>
<i class="fa-brands fa-tiktok"></i>
<i class="fa-brands fa-tiktok"></i>
</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3 item">
<!-- Footer Items -->
<div class="footer-items">
<h4 class="footer-title mt-0">Explore</h4>
<!-- Navigation -->
<ul class="nav flex-column">
<li class="nav-item">
<a class="nav-link" href="index.html#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#features"
>Features</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#screenshots"
>Screenshots</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#pricing">Pricing</a>
</li>
</ul>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3 item">
<!-- Footer Items -->
<div class="footer-items">
<h4 class="footer-title mt-0">Support</h4>
<!-- Navigation -->
<ul class="nav flex-column">
<li class="nav-item">
<a class="nav-link" href="index.html#faq">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="privacy.html">Privacy Policy</a>
</li>
<li class="nav-item">
<a class="nav-link" href="terms.html"
>Terms & Conditions</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#contact">Contact</a>
</li>
</ul>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3 item">
<!-- Footer Items -->
<div class="footer-items">
<h4 class="footer-title mt-0">Get the App</h4>
<!-- Download Button -->
<div class="button-group download-button">
<a href="coming-soon.html">
<img
src="assets/img/buttons/google-play-black.png"
alt=""
/>
</a>
<a href="https://apps.apple.com/it/app/hereditas-scan-art-sites/id6755953218?l=en-GB" target="_blank">
<img
src="assets/img/buttons/app-store-black.png"
alt=""
/>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer Bottom -->
<div class="footer-bottom">
<div class="container">
<div class="row">
<div class="col-12">
<!-- Copyright Area -->
<div
class="copyright-area d-flex flex-wrap justify-content-center justify-content-sm-between align-items-center text-center py-4"
>
<span>© 2025 Hereditas | All rights reserved.</span>
<span
>Made with <i class="fa-solid fa-heart"></i> by the
Hereditas team</span
>
</div>
</div>
</div>
</div>
</div>
</footer>
<!--====== Footer Area End ======-->
<!--====== Modal Responsive Menu Area Start ======-->
<div id="menu" class="modal fade p-0">
<div class="modal-dialog modal-dialog-slideout">
<div class="modal-content full">
<div class="modal-header" data-bs-dismiss="modal">
Menu <i class="icon-close"></i>
</div>
<div class="menu modal-body">
<div class="row w-100">
<div class="items p-0 col-12 text-center">
<!-- Append [navbar] -->
</div>
</div>
</div>
</div>
</div>
</div>
<!--====== Modal Responsive Menu Area End ======-->
<!--====== Scroll To Top Area Start ======-->
<div id="scroll-to-top" class="scroll-to-top">
<a href="index.html#home">
<i class="fa-solid fa-arrow-up"></i>
</a>
</div>
<!--====== Scroll To Top Area End ======-->
</div>
<!-- ***** All jQuery Plugins ***** -->
<!-- jQuery(necessary for all JavaScript plugins) -->
<script src="assets/js/vendor/jquery.min.js"></script>
<!-- Bootstrap js -->
<script src="assets/js/vendor/popper.min.js"></script>
<script src="assets/js/vendor/bootstrap.min.js"></script>
<!-- Plugins js -->
<script src="assets/js/vendor/slider.min.js"></script>
<script src="assets/js/vendor/owl.carousel.min.js"></script>
<script src="assets/js/vendor/counterup.js"></script>
<script src="assets/js/vendor/waypoint.js"></script>
<script src="assets/js/vendor/aos.js"></script>
<script src="assets/js/vendor/wow.min.js"></script>
<script src="assets/js/vendor/gallery.min.js"></script>
<!-- Main js -->
<script src="assets/js/main.js"></script>
</body>
</html>