-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1495 lines (1418 loc) · 58.3 KB
/
Copy pathindex.html
File metadata and controls
1495 lines (1418 loc) · 58.3 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
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="description"
content="Snap into Heritage with Hereditas - AI-powered image recognition for landmarks and museum pieces."
/>
<meta
name="keywords"
content="AI heritage recognition, landmark identification, museum pieces, cultural heritage, image recognition, art history, cultural exploration, heritage app, AI technology, landmarks, museums, art recognition"
/>
<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>Hereditas - Snap into Heritage</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">
<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 smooth-anchor" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link smooth-anchor" href="#features">Features</a>
</li>
<li class="nav-item">
<a class="nav-link smooth-anchor" href="#screenshots"
>Screenshots</a
>
</li>
<li class="nav-item">
<a class="nav-link smooth-anchor" href="#pricing">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link smooth-anchor" href="#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 ***** -->
<!-- ***** Hero Section Start ***** -->
<section
id="home"
class="hero-section layout-1 has-overlay overlay-gradient"
>
<div class="container">
<div class="row justify-content-center align-items-center">
<div class="col-12 col-md-7 col-lg-6">
<!-- Hero Content -->
<div class="hero-content">
<h1 class="text-white">Snap into Heritage</h1>
<p class="sub-heading text-white my-4">
Discover the living stories of art and monuments through
AI-powered image recognition
</p>
<!-- Download Button -->
<div class="button-group download-button">
<a href="coming-soon.html">
<img src="assets/img/buttons/google-play.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.png" alt="" />
</a>
</div>
<span class="d-block fst-italic fw-light text-white mt-3"
>* Download Hereditas and start your cultural journey</span
>
</div>
</div>
<div class="col-12 col-md-5 col-lg-6">
<!-- Hero Thumb -->
<div
class="hero-thumb mx-auto d-none d-md-block"
data-aos="fade-left"
data-aos-delay="500"
data-aos-duration="1000"
>
<img
src="assets/img/screens/1.webp"
alt=""
style="width: 350px"
/>
</div>
</div>
</div>
</div>
<!-- Shape Bottom -->
<div class="shape-bottom">
<svg
viewBox="0 0 1920 310"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
class="svg replaced-svg"
>
<defs></defs>
<g
id="sApp-Landing-Page"
stroke="none"
stroke-width="1"
fill="none"
fill-rule="evenodd"
>
<g
id="sApp-v1.0"
transform="translate(0.000000, -554.000000)"
fill="#FFFFFF"
>
<path
d="M-3,551 C186.257589,757.321118 319.044414,856.322454 395.360475,848.004007 C509.834566,835.526337 561.525143,796.329212 637.731734,765.961549 C713.938325,735.593886 816.980646,681.910577 1035.72208,733.065469 C1254.46351,784.220361 1511.54925,678.92359 1539.40808,662.398665 C1567.2669,645.87374 1660.9143,591.478574 1773.19378,597.641868 C1848.04677,601.75073 1901.75645,588.357675 1934.32284,557.462704 L1934.32284,863.183395 L-3,863.183395"
id="sApp-v1.0"
></path>
</g>
</g>
</svg>
</div>
</section>
<!-- ***** Hero Section End ***** -->
<!-- ***** Counter Area Start ***** -->
<section class="counter-area">
<div class="container">
<div class="row items justify-content-center">
<div class="col-6 col-md-3 item">
<div class="counter-item text-center">
<span class="counter">98</span><span>%</span>
<h5 class="mt-1 mb-0">Accuracy</h5>
</div>
</div>
<div class="col-6 col-md-3 item">
<div class="counter-item text-center">
<span class="counter">100</span><span>%</span>
<h5 class="mt-1 mb-0">Satisfaction</h5>
</div>
</div>
<div class="col-6 col-md-3 item">
<div class="counter-item text-center">
<span class="counter">195</span>
<h5 class="mt-1 mb-0">Countries</h5>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Counter Area End ***** -->
<!-- ***** Features Area Start ***** -->
<section id="features" class="features-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-7">
<!-- Intro -->
<div class="intro text-center mb-4">
<span class="badge rounded-pill text-bg-light">
<i class="fa-regular fa-lightbulb"></i>
<span>Innovative</span>
<span>Features</span>
</span>
<h2 class="title">What Makes Hereditas Revolutionary?</h2>
<p>
Discover the hidden stories of art and monuments through
cutting-edge AI technology that transforms every visit into an
educational adventure. Build your personal digital heritage
collection while connecting with a community of heritage
lovers. Follow other users to learn from their discoveries and
visit the places your friends have explored.
</p>
</div>
</div>
</div>
<div class="row items">
<div class="col-12 col-md-6 col-lg-4 item">
<!-- Image Box -->
<div
class="image-box text-center wow fadeInLeft"
data-wow-delay="0.4s"
>
<i class="fa-solid fa-brain fa-3x icon-primary"></i>
<!-- Content -->
<div class="content">
<h4 class="mb-3">AI Recognition</h4>
<p class="mt-3">
Advanced computer vision technology identifies landmarks and
museum pieces, providing detailed historical context and
cultural significance.
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 item">
<!-- Image Box -->
<div
class="image-box text-center wow fadeInUp"
data-wow-delay="0.2s"
>
<i class="fa-solid fa-museum fa-3x icon-primary"></i>
<!-- Content -->
<div class="content">
<h4 class="mb-3">Digital Collection</h4>
<p class="mt-3">
Build and organize your personal heritage collection with
photos, detailed explanations, and visit history, creating a
digital museum of your cultural journey.
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 item">
<!-- Image Box -->
<div
class="image-box text-center wow fadeInRight"
data-wow-delay="0.4s"
>
<i class="fa-solid fa-users fa-3x icon-primary"></i>
<!-- Content -->
<div class="content">
<h4 class="mb-3">Social Discovery</h4>
<p class="mt-3">
Follow other heritage lovers to learn from their
discoveries. Visit the places your friends have explored and
build a community of cultural enthusiasts.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Features Area End ***** -->
<!-- ***** Content Section Start ***** -->
<section class="content-section primary-bg">
<div class="container">
<div class="row justify-content-between align-items-center">
<div class="col-12 col-lg-6">
<div class="content">
<h2 class="mt-0">
Transform Every Visit Into A Learning Adventure
</h2>
<ul class="list-group list-group-flush">
<li
class="list-group-item d-flex align-items-center border-0"
>
<!-- Icon Box -->
<div class="icon-box me-3">
<div class="icon shadow-sm">
<span class="material-symbols-outlined"
>camera_alt</span
>
</div>
</div>
<span
>Simply point your camera at any landmark or museum piece
to instantly receive detailed historical context.</span
>
</li>
<li
class="list-group-item d-flex align-items-center border-0"
>
<!-- Icon Box -->
<div class="icon-box me-3">
<div class="icon shadow-sm">
<span class="material-symbols-outlined"
>collections_bookmark</span
>
</div>
</div>
<span
>Automatically save your discoveries to build a
comprehensive digital collection.</span
>
</li>
<li
class="list-group-item d-flex align-items-center border-0"
>
<!-- Icon Box -->
<div class="icon-box me-3">
<div class="icon shadow-sm">
<span class="material-symbols-outlined">people</span>
</div>
</div>
<span
>Follow other users to learn from their discoveries and
visit the places your friends have explored.</span
>
</li>
<li
class="list-group-item d-flex align-items-center border-0"
>
<!-- Icon Box -->
<div class="icon-box me-3">
<div class="icon shadow-sm">
<span class="material-symbols-outlined">volume_up</span>
</div>
</div>
<span
>Listen to immersive audio guides with professional
narration that brings the stories of landmarks and
artifacts to life.</span
>
</li>
</ul>
</div>
</div>
<div
class="col-12 col-lg-4 d-none d-lg-flex align-items-center justify-content-center"
>
<img
src="assets/img/screens/2.webp"
alt=""
style="width: 350px"
/>
</div>
</div>
</div>
</section>
<!-- ***** Content Section End ***** -->
<!-- ***** Content Section Start ***** -->
<section class="content-section">
<div class="container">
<div class="row justify-content-between align-items-center">
<div
class="col-12 col-lg-6 d-none d-lg-flex align-items-center justify-content-center"
>
<img
src="assets/img/screens/0.webp"
alt=""
style="width: 350px"
/>
</div>
<div class="col-12 col-lg-6">
<div class="content">
<h2 class="mt-0">Learn and Connect with Hereditas</h2>
<ul class="list-group list-group-flush">
<li class="list-group-item d-flex border-0 p-0">
<div class="icon layout-2 align-items-start mt-1 me-2">
<span class="material-symbols-outlined"
>calendar_today</span
>
</div>
<span
>Discover a new heritage item every day with Daily
Heritage, featuring immersive stories and audio
guides.</span
>
</li>
<li class="list-group-item d-flex border-0 p-0">
<div class="icon layout-2 align-items-start mt-1 me-2">
<span class="material-symbols-outlined">menu_book</span>
</div>
<span
>Access comprehensive courses and articles covering
various topics in art history, cultural heritage, and
world landmarks.</span
>
</li>
<li class="list-group-item d-flex border-0 p-0">
<div class="icon layout-2 align-items-start mt-1 me-2">
<span class="material-symbols-outlined">people</span>
</div>
<span
>Follow other heritage lovers to learn from their
discoveries and visit the places your friends have
explored.</span
>
</li>
<li class="list-group-item d-flex border-0 p-0">
<div class="icon layout-2 align-items-start mt-1 me-2">
<span class="material-symbols-outlined">explore</span>
</div>
<span
>Build a community of cultural enthusiasts and discover
new landmarks and museum pieces through your friends'
experiences.</span
>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Content Section End ***** -->
<!-- ***** Work Area Start ***** -->
<section class="work-section has-overlay overlay-gradient">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-7">
<!-- Intro -->
<div class="intro text-center">
<h2 class="title text-white layout-2 mt-0">
How Hereditas Works?
</h2>
<p class="text-white">
Discover the simple yet powerful process of using Hereditas to
transform your cultural visits into educational adventures.
</p>
</div>
</div>
</div>
<div class="row items">
<div class="col-12 col-md-4 item">
<div class="icon-box text-center px-3">
<i class="fa-solid fa-camera fa-3x text-white"></i>
<h4 class="text-white">Point & Capture</h4>
<p class="text-white">
Simply point your camera at any landmark or museum piece and
capture a photo. Our AI instantly recognizes what you're
looking at.
</p>
</div>
</div>
<div class="col-12 col-md-4 item">
<div class="icon-box text-center px-3">
<i class="fa-solid fa-book-open fa-3x text-white"></i>
<h4 class="text-white">Learn & Discover</h4>
<p class="text-white">
Receive detailed explanations about the landmark or piece's
history, cultural significance, artistic style, and
fascinating stories behind it.
</p>
</div>
</div>
<div class="col-12 col-md-4 item">
<div class="icon-box text-center px-3">
<i class="fa-solid fa-users fa-3x text-white"></i>
<h4 class="text-white">Share & Connect</h4>
<p class="text-white">
Follow other heritage lovers to learn from their discoveries
and visit the places your friends have explored.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Work Area End ***** -->
<!-- ***** Screenshots Area Start ***** -->
<section id="screenshots" class="screenshots-area">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-7">
<!-- Intro -->
<div class="intro text-center">
<span class="badge rounded-pill text-bg-light">
<i class="fa-solid fa-wand-magic-sparkles"></i>
<span>Awesome</span>
<span>Interface</span>
</span>
<h2 class="title">Simple & Beautiful Interface</h2>
<p>
Clean and elegant interface with Hereditas that combines
simplicity with beauty, ensuring a smooth and enjoyable user
journey.
</p>
</div>
</div>
</div>
<div class="app-screenshots-slides">
<div class="swiper-container slider-mid">
<div class="swiper-wrapper">
<!-- Single Slide -->
<div class="swiper-slide item">
<img src="assets/img/screens/3.webp" alt="" />
</div>
<!-- Single Slide -->
<div class="swiper-slide item">
<img src="assets/img/screens/4.webp" alt="" />
</div>
<!-- Single Slide -->
<div class="swiper-slide item">
<img src="assets/img/screens/5.webp" alt="" />
</div>
<!-- Single Slide -->
<div class="swiper-slide item">
<img src="assets/img/screens/6.webp" alt="" />
</div>
<!-- Single Slide -->
<div class="swiper-slide item">
<img src="assets/img/screens/7.webp" alt="" />
</div>
<!-- Single Slide -->
<div class="swiper-slide item">
<img src="assets/img/screens/8.webp" alt="" />
</div>
<div class="swiper-slide item">
<img src="assets/img/screens/9.webp" alt="" />
</div>
<div class="swiper-slide item">
<img src="assets/img/screens/10.webp" alt="" />
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</div>
</section>
<!-- ***** Screenshots Area End ***** -->
<!-- ***** Review Section Start ***** -->
<section id="review" class="review-section pt-0">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-7">
<!-- Intro -->
<div class="intro text-center mb-4">
<span class="badge rounded-pill text-bg-light">
<i class="fa-regular fa-heart"></i>
<span>User</span>
<span>Reviews</span>
</span>
<h2 class="title">What our users are saying</h2>
<p>
Hear from our community of heritage lovers who have
transformed their cultural visits with Hereditas. Discover why
they love exploring art and monuments, learning from friends,
and building their collections with our AI-powered social
platform.
</p>
</div>
</div>
</div>
<div class="row items align-items-center">
<div class="col-12 col-md-6 col-lg-4 item">
<!-- Reviews -->
<div class="reviews card">
<div class="content p-4">
<!-- Review Icon -->
<div class="review-icon">
<i class="fas fa-star text-warning"></i>
<i class="fas fa-star text-warning"></i>
<i class="fas fa-star text-warning"></i>
<i class="fas fa-star text-warning"></i>
<i class="fas fa-star text-warning"></i>
</div>
<h4 class="clip-text text-effect">
Amazing Cultural Discovery Tool!
</h4>
<p>
"Perfect for exploring European cities! The AI instantly
recognizes landmarks and gives great historical context. My
travel photos now tell stories."
</p>
</div>
<!-- Review Meta -->
<div class="review-meta primary-bg d-flex p-3">
<div class="reviewer ms-3">
<h5 class="reviewer-name mt-0 mb-2">Juan Rodriguez</h5>
<span>Travel & History Enthusiast</span>
</div>
</div>
<!-- Quotation Icon -->
<div class="quot-icon">
<img
class="avatar-md"
src="assets/img/images/quote.png"
alt=""
/>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 item">
<!-- Reviews -->
<div class="reviews card">
<div class="content p-4">
<!-- Review Icon -->
<div class="review-icon">
<i class="fas fa-star text-warning"></i>
<i class="fas fa-star text-warning"></i>
<i class="fas fa-star text-warning"></i>
<i class="fas fa-star text-warning"></i>
<i class="fas fa-star text-warning"></i>
</div>
<h4 class="clip-text text-effect">
Great for Studying Abroad!
</h4>
<p>
"Studying in Rome and this app is incredible! I can learn
about every landmark I pass. Makes my Erasmus experience so
much richer."
</p>
</div>
<!-- Review Meta -->
<div class="review-meta primary-bg d-flex p-3">
<div class="reviewer ms-3">
<h5 class="reviewer-name mt-0 mb-2">Miguel Santos</h5>
<span>Erasmus Student</span>
</div>
</div>
<!-- Quotation Icon -->
<div class="quot-icon">
<img
class="avatar-md"
src="assets/img/images/quote.png"
alt=""
/>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 item">
<!-- Reviews -->
<div class="reviews card">
<div class="content p-4">
<!-- Review Icon -->
<div class="review-icon">
<i class="fas fa-star text-warning"></i>
<i class="fas fa-star text-warning"></i>
<i class="fas fa-star text-warning"></i>
<i class="fas fa-star text-warning"></i>
<i class="fas fa-star text-warning"></i>
</div>
<h4 class="clip-text text-effect">
Love the Social Features!
</h4>
<p>
"Following other heritage lovers has opened up so many new
places to explore! I discover amazing landmarks through my
friends' discoveries."
</p>
</div>
<!-- Review Meta -->
<div class="review-meta primary-bg d-flex p-3">
<div class="reviewer ms-3">
<h5 class="reviewer-name mt-0 mb-2">Tom Wilson</h5>
<span>Frequent Traveller</span>
</div>
</div>
<!-- Quotation Icon -->
<div class="quot-icon">
<img
class="avatar-md"
src="assets/img/images/quote.png"
alt=""
/>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Review Section End ***** -->
<!-- ***** Price Plan Area Start ***** -->
<section id="pricing" class="price-plan-area primary-bg">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-7">
<!-- Intro -->
<div class="intro text-center mb-4">
<h2 class="title mt-0">Choose Your Heritage Journey</h2>
<p>
Select the perfect plan for your cultural exploration needs,
from casual museum visits to comprehensive heritage research
and collection building.
</p>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 col-sm-10 col-lg-8">
<div class="row items">
<div class="col-12 col-lg-6 item">
<!-- Pricing Table -->
<div
class="pricing-table text-center wow fadeInLeft"
data-aos-duration="2s"
data-wow-delay="0.4s"
>
<!-- Plan Icon -->
<span class="package-type d-block">Basic</span>
<h2 class="package-price clip-text text-effect my-3">
Free
</h2>
<!-- Package List -->
<ul class="package-list list-group list-group-flush">
<li class="list-group-item">Basic AI Recognition</li>
<li class="list-group-item">Up to 3 scans per day</li>
<li class="list-group-item">Basic Explanations</li>
<li class="list-group-item">Limited Learn Content</li>
</ul>
</div>
</div>
<div class="col-12 col-lg-6 item">
<!-- Pricing Table -->
<div
class="pricing-table text-center wow fadeInRight"
data-aos-duration="2s"
data-wow-delay="0.4s"
>
<!-- Plan Icon -->
<span class="package-type d-block">Pro</span>
<h2 class="package-price clip-text text-effect my-3">
<small>€38.99/Year</small>
</h2>
<!-- Package List -->
<ul class="package-list list-group list-group-flush">
<li class="list-group-item">Immersive Explanations</li>
<li class="list-group-item">Unlimited Scans</li>
<li class="list-group-item">Audio Guides</li>
<li class="list-group-item">Full Learn Section Access</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Price Plan Area End ***** -->
<!-- ***** FAQ Area Start ***** -->
<section id="faq" class="faq">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-7">
<!-- Intro -->
<div class="intro text-center">
<h2 class="title mt-0">Frequently Asked Questions</h2>
<p>
Find answers to the most common questions about Hereditas,
covering everything from AI recognition to social features and
collection management, to help you get the most out of your
cultural exploration.
</p>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-10">
<!-- Hereditas Accordion -->
<div class="accordion accordion-flush" id="hereditas-accordion">
<!-- Accordion Item -->
<div class="accordion-item">
<h4 class="accordion-header">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseOne"
>
How accurate is the AI recognition?
</button>
</h4>
<div
id="collapseOne"
class="accordion-collapse collapse show"
data-bs-parent="#hereditas-accordion"
>
<div class="accordion-body">
Hereditas uses AI-powered image recognition to identify
landmarks and museum pieces. The accuracy varies depending
on the clarity of the photo, the angle, and how well-known
the landmark or piece is. Well-known landmarks and famous
museum pieces are typically recognized with good accuracy,
while less common or obscure items may require clearer
photos or additional context.
</div>
</div>
</div>
<!-- Accordion Item -->
<div class="accordion-item">
<h4 class="accordion-header">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseTwo"
>
How does the AI recognition work?
</button>
</h4>
<div
id="collapseTwo"
class="accordion-collapse collapse"
data-bs-parent="#hereditas-accordion"
>
<div class="accordion-body">
Hereditas uses AI technology to analyze the photos you
take. The system processes your image and uses its
knowledge of cultural heritage, art history, and
historical sites to identify what you're looking at and
provide relevant information and context about the
landmark or museum piece.
</div>
</div>
</div>
<!-- Accordion Item -->
<div class="accordion-item">
<h4 class="accordion-header">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseThree"
>
What types of landmarks and pieces can Hereditas
recognize?
</button>
</h4>
<div
id="collapseThree"
class="accordion-collapse collapse"
data-bs-parent="#hereditas-accordion"
>
<div class="accordion-body">
Hereditas can help identify various types of cultural
artifacts including historical landmarks, sculptures,
paintings, archaeological objects, architectural
landmarks, and museum pieces. The recognition works best
with well-known landmarks and famous artworks, though it
may also identify less common items depending on photo
quality and available context.
</div>
</div>
</div>
<!-- Accordion Item -->
<div class="accordion-item">
<h4 class="accordion-header">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseFour"
>
How do I organize my heritage collection?
</button>
</h4>
<div
id="collapseFour"
class="accordion-collapse collapse"
data-bs-parent="#hereditas-accordion"
>
<div class="accordion-body">
Your heritage collection is automatically organized by
type (landmarks and museum pieces) and by country. You can
easily browse your discoveries filtered by landmarks,
museums, or grouped by country.
</div>
</div>
</div>
<!-- Accordion Item -->
<div class="accordion-item">
<h4 class="accordion-header">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseFive"
>
Is Hereditas suitable for educational use?
</button>
</h4>
<div
id="collapseFive"
class="accordion-collapse collapse"
data-bs-parent="#hereditas-accordion"
>
<div class="accordion-body">
Absolutely! Hereditas is perfect for educational use.
Teachers can use it for field trips, students can build
research collections, and families can make museum visits
more engaging. The app provides age-appropriate
explanations and helps develop cultural awareness and
historical knowledge.
</div>
</div>
</div>
<!-- Accordion Item -->
<div class="accordion-item">
<h4 class="accordion-header">
<button