-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·1021 lines (830 loc) · 34.5 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
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 lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-LRP1JC89QP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-LRP1JC89QP');
</script>
<meta charset="utf-8" >
<title>Loyae : Machine Learning For Site Optimization</title>
<meta name="description" content="Seamlessly using machine learning to optimize web pages for SEO and SEM. Loyae is an intuitive API and web application that unleashes the power of natural language processing (NLP) for modern site optimization."/>
<meta name="keywords" content="Loyae, meta data generator, machine learning website optimization, Loyae NLP meta generation"/>
<meta name="author" content="John Lins">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="assets/logos/logo.png" type="image/x-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@100;200;300;400;500;600;700;800;900&family=DM+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900" rel="stylesheet">
<!-- Bootstrap 4.5.2 CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<!-- Slick 1.8.1 jQuery plugin CSS (Sliders) -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css"/>
<!-- Fancybox 3 jQuery plugin CSS (Open images and video in popup) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css" />
<!-- AOS 2.3.4 jQuery plugin CSS (Animations) -->
<link href="https://unpkg.com/aos@2.3.4/dist/aos.css" rel="stylesheet">
<!-- FontAwesome CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
<!-- Startup CSS (Styles for all blocks) - Remove ".min" if you would edit a css code -->
<link href="landing/css/style.min.css" rel="stylesheet" />
<link href="landing/css/custom.css" type="text/css" rel="stylesheet"/>
<!-- jQuery 3.5.1 -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="scripts/index.js"></script>
<!--META-->
<meta property="og:locale" content="en_US" />
<meta property="og:title" content="Loyae: Machine Learning For Website Optimization" />
<meta property="og:description" content="Seamlessly using machine learning to optimize web pages for SEO and SEM. Loyae is an intuitive API and web application that unleashes the power of natural language processing (NLP) for modern site optimization." />
<meta property="og:site_name" content="Loyae" />
<meta property="og:image" content="assets/logos/logo.png" />
<meta property="og:image:alt" content="Loyae logo" />
<meta property="og:image:width" content="1000" />
<meta property="og:image:height" content="1000" />
<meta property="og:image:type" content="image/png" />
<meta property="og:keywords" content="Loyae, meta data generator, machine learning website optimization, Loyae NLP meta generation"/>
<meta property="og:type" content="website">
<meta property="og:url" content="http://www.loyae.com">
<meta property="og:country-name" content="United States">
<meta property="og:brand" content="Loyae">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="subject" content="Software">
<meta name="topic" content="NLP Website Optimization">
<meta name="copyright" content="Loyae">
<meta name="reply-to" content="contact@loyae.com">
<meta name="owner" content="John Lins">
<meta name="copyright" content="www.loyae.com">
<meta name="category" content="Loyae Site Optimization">
<meta name="addsearch-category" content="Loyae Site Optimization" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Loyae" />
<meta name="twitter:description" content="Seamlessly using machine learning to optimize web pages for SEO and SEM." />
<meta name="twitter:image" content="assets/logos/logo.png" />
<meta name="twitter:image:alt" content="Loyae logo" />
<meta name="twitter:url" content="https://loyae.com/" />
<meta name="theme-color" content="lightcoral" />
<meta name="revisit-after" content="10 days">
<meta name="googlebot" content="noodp">
<!--APPLE-->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Loyae" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-icon-precomposed" href=""/>
<link rel="apple-touch-icon" href="assets/logos/logo.png" />
<link rel="apple-touch-icon" sizes="72x72" href="assets/logos/logo.png" />
<link rel="apple-touch-icon" sizes="114x114" href="assets/logos/logo.png" />
<link rel="apple-touch-startup-image" href="assets/logos/logo.png">
<link rel="apple-touch-icon" type="image/png" href="assets/logos/logo.png" />
<!-- Hotjar Tracking Code for www.loyae.com -->
<!--<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:2446009,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>-->
</head>
<body>
<!-- Navigation Mobile type 1 -->
<a href="#" class="open_menu bg-light radius_full">
<i class="fas fa-bars lh-40">
</i>
</a>
<div class="navigation_mobile bg-dark type1">
<a href="#" class="close_menu color-white">
<i class="fas fa-times">
</i>
</a>
<div class="px-40 pt-60 pb-60 inner">
<div class="logo color-white mb-30">
<img src="assets/logos/logoWhite.png" height="40px" style="margin-top: -4px;" alt="loyae Logo"/> Loyae
</div>
<div>
<a href="#" class="f-heading f-22 link color-white mb-20">
Home
</a>
</div>
<div>
<a href="https://docs.loyae.com" class="f-heading f-22 link color-white mb-20">
Documentation
</a>
</div>
<div>
<a href="#features" class="f-heading f-22 link color-white mb-20">
About
</a>
</div>
<div>
<a href="https://blog.loyae.com" class="f-heading f-22 link color-white mb-20">
Blog
</a>
</div>
<!--<div>
<a href="#" class="link color-white op-3 mb-15">
Help
</a>
</div>
<div>
<a href="#" class="link color-white op-3 mb-15">
F.A.Q.
</a>
</div>
<div>
<a href="#" class="link color-white op-3 mb-15">
Support
</a>
</div>
<div>
<a href="#" class="link color-white op-3 mb-15">
About Us
</a>
</div>
<div>
<a href="#" class="link color-white op-3 mb-15">
Blog
</a>
</div>
<div>
<a href="#" class="link color-white op-3 mb-15">
Careers
</a>
</div>-->
<div class="socials mt-40">
<a href="https://twitter.com/loyaecom" target="_blank" class="link color-white f-18 mr-20">
<i class="fab fa-twitter">
</i>
</a>
<a href="https://github.com/Loyae" target="_blank" class="link color-white f-18 mr-20">
<i class="fab fa-github">
</i>
</a>
<!--<a href="#" target="_blank" class="link color-white f-18 mr-20">
<i class="fab fa-angellist">
</i>
</a>-->
<br/>
<br/>
<a href="https://www.linkedin.com/company/loyae" target="_blank" class="link color-white f-18 mr-20">
<i class="fab fa-linkedin">
</i>
</a>
<a href="https://discord.gg/rtaDgSYdQU" target="_blank" class="link color-white f-18 mr-20">
<i class="fab fa-discord">
</i>
</a>
<!--<a href="https://loyae.slack.com/" target="_blank" class="link color-white f-18 mr-20">
<i class="fab fa-slack">
</i>
</a>-->
</div>
<div class="mt-50 f-14 light color-white op-3 copy">
© <span id="year"></span> Loyae. All rights reserved.
</div>
<script>
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>
</div>
</div>
<!-- Header 1 -->
<header class="pt-195 pb-110 bg-light header_1">
<nav class="header_menu_1 pt-30 pb-30 mt-30">
<div class="container px-xl-0">
<div class="row justify-content-center align-items-center f-18 medium">
<div class="col-lg-3 logo" data-aos="fade-down" data-aos-delay="1000">
<span>
<img src="assets/logos/logo.png" height="40px" style="margin-top: -4px;" alt="Loyae logo"/> Loyae <span style="font-weight: 200; font-size: 20px;">v1.02</span>
</span>
</div>
<div class="col-lg-6 text-center" data-aos="fade-down" data-aos-delay="750">
<a href="#" class="link color-heading mx-15">
Home
</a>
<a href="#features" class="link color-heading mx-15">
Features
</a>
<a href="https://docs.loyae.com" class="link color-heading mx-15">
Documentation
</a>
<a href="mailto:contact@loyae.com" class="link color-heading mx-15">
Contact
</a>
<!--<a href="#" class="link color-heading f-16 mx-15">
<i class="fas fa-search">
</i>
</a>-->
</div>
<div class="col-lg-3 col-md-4 col-sm-6 d-flex justify-content-end align-items-center" data-aos="fade-down" data-aos-delay="1000">
<!--<a href="#" class="link mr-20 color-heading">
Sign In
</a>-->
<a class="sm action-1" id="discord-btn" href="https://discord.gg/rtaDgSYdQU">
<img src="landing/assets/discord.png" height="20px" alt="Loyae Discord"/>
Discord Server
</a>
</div>
<style>
#discord-btn {
border: 0;
border-radius: 10px;
background-color: #7289da;
color: white; padding: 7px; box-shadow: lightgray 0px 0px 15px
}
#discord-btn:hover {
border: 0;
border-radius: 10px;
background-color: #7289da;
color: white; padding: 7px; box-shadow: lightgray 0px 0px 15px
}
</style>
</div>
</div>
</nav>
<div class="container">
<div class="mb-3 logo d-block d-xl-none text-center logo_mobile" data-aos="fade-down" data-aos-delay="0">
Introducing Loyae
</div>
<h1 class="big text-center" data-aos="fade-down" data-aos-delay="0" style="color: black;">
A WordPress Plugin for SEO Meta Tags and Alt-Text in bulk with AI
</h1>
<div class="mw-600 mx-auto mt-30 f-22 color-heading text-center text-adaptive" data-aos="fade-down" data-aos-delay="250">
<p> Seamlessly optimize your web page for searchability, usability, and accessibility with batch AI-generated <b> HTML metadata & alt text</b> for every page. One-time fee per meta tag, <span style="color:lightcoral"><b>no</b> recurring fees!</span></p>
</div>
<div class="mt-80 text-center buttons" data-aos="fade-down" data-aos-delay="500">
<span id="no-url-error" style="color: red;"></span>
<!-- <span style="color: red;">Loyae is under maintenance this month!</span> -->
<form onsubmit="landingRequest()">
<div>
<input type="text" class="btn lg action-1 shadow-hover" placeholder="http://example.com/" id="landing-url-input"/>
<div id="launch-br">
<br/>
</div>
<input id="launch" value="Launch" class="btn lg action-1 shadow-hover" style="border-radius: 10px;" type="submit">
<style>
::placeholder {
color: #e3bfbf;
}
input:focus::placeholder {
color: transparent;
}
#landing-url-input{
background-color: #fdf1f1;
border-radius: 10px;
color: black;
}
</style>
</div>
</form>
</div>
</div>
</header>
<!-- Showcase 1 -->
<section class="pt-105 pb-95 bg-light showcase_1">
<center>
<h5 data-aos="fade-down" data-aos-delay="0" style="margin: 15px; color: gray">
Free Diagnostic Tool
</h5>
<video id="display-dashboard" style="background-color: #FAFAFA; width: 80%;" autoplay loop muted >
<source src="landing/assets/demo.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<br/>
</center>
</section>
<section class="pt-105 pb-95 bg-light showcase_1">
<center>
<h5 data-aos="fade-down" data-aos-delay="0" style="margin: 15px; color: gray">
WordPress Plugin Dashboard
</h5>
<img src="./assets/6.png" style="background-color: #FAFAFA; width: 80%;border-radius: 2vw;box-shadow: 0px 0px 25px lightgray;"/>
<br/>
</center>
</section>
<script>
function joinwaitlist() {
//alert(document.getElementById('waitlist_email').value)
if(document.getElementById('waitlist_email').value==""){
alert("Please enter your name and email, then try again.")
}
fetch("https://api.loyae.com/waitlist?name="+document.getElementById('waitlist_name').value+"&email="+document.getElementById('waitlist_email').value+"&url="+document.getElementById('waitlist_site').value, {"method":"GET"}).then(response=>{
//check seperatly if api returns err=true
document.getElementById("waitlist-button").style.backgroundColor="lightgray";
document.getElementById("waitlist-button").innerHTML = "Joined!"
}).catch(err=>{
window.alert(err)
window.alert("Please enter your name and email, then try again.")
})
}
</script>
<section class="pt-105 pb-45 bg-light text-center feature_2" id="features">
<div class="container px-xl-0">
<div class="row justify-content-center">
<div class="col-xl-8 col-lg-10">
<h2 class="small" data-aos="fade-down" data-aos-delay="0">
WordPress Plugin
</h2>
<br/><!--
<div id="countdown">WordPress Plugin (Early Access) Releases In <b><span class="days"></span> days : <span class="hours"></span> hours : <span class="minutes"></span> minutes : <span class="seconds"></span> seconds </b></div>-->
<br/>
<center>
<div>
<a href="https://wordpress.org/plugins/loyae/" id="download" style="height: 20px; width: 100px;"><b style="font-size: 14pt;vertical-align: middle;">Install</b></a>
</div>
</center>
<br/>
<style>
#download {
background-color: lightcoral;
padding: 20px;
border: 0;
box-shadow: 0 0 15px lightcoral;
color: white;
text-decoration: none;
border-radius: 10px;
}
#download:hover {
box-shadow: 0 0 20px lightcoral;
}
</style>
<script>
function getTimeRemaining(endtime) {
const total = Date.parse(endtime) - Date.parse(new Date());
const seconds = Math.floor((total / 1000) % 60);
const minutes = Math.floor((total / 1000 / 60) % 60);
const hours = Math.floor((total / (1000 * 60 * 60)) % 24);
const days = Math.floor(total / (1000 * 60 * 60 * 24));
return {
total,
days,
hours,
minutes,
seconds
};
}
function initializeClock(id, endtime) {
const clock = document.getElementById(id);
const daysSpan = clock.querySelector('.days');
const hoursSpan = clock.querySelector('.hours');
const minutesSpan = clock.querySelector('.minutes');
const secondsSpan = clock.querySelector('.seconds');
function updateClock() {
const t = getTimeRemaining(endtime);
daysSpan.innerHTML = t.days;
hoursSpan.innerHTML = ('0' + t.hours).slice(-2);
minutesSpan.innerHTML = ('0' + t.minutes).slice(-2);
secondsSpan.innerHTML = ('0' + t.seconds).slice(-2);
if (t.total <= 0) {
clearInterval(timeinterval);
}
}
updateClock();
const timeinterval = setInterval(updateClock, 1000);
}
const deadline = new Date(Date.parse("july 6, 2023 01:30:00"));
initializeClock('countdown', deadline);
</script>
<br/>
</div>
<br/><br/><br/>
<!--<div>
Don't use WordPress? Join the <b>waitlist</b>.<br/>
Be notified when the Loyae plugin for other CMS platforms get released.
(Wix, Webflow, Squarespace, Shopify, and more...)
<br/>
</div><br/>
<div id="waitlist">
<input type="text" id="waitlist_name" name="waitlist_name" placeholder="Name" class="waitlist-input">
<input type="text" id="waitlist_email" name="waitlist_email" placeholder="Email" class="waitlist-input">
<input type="text" id="waitlist_site" name="waitlist_site" placeholder="Site URL (optional)" class="waitlist-input">
<br/><br/>
<button id="waitlist-button" onclick="joinwaitlist()">Join</button>
<style>
.waitlist-input{
background-color: #fdf1f1;
border-radius: 10px;
padding: 7px;
}
#waitlist-button {
background-color: lightcoral;
padding: 7px;
border-radius: 10px;
box-shadow: 0px 0px 15px lightcoral;
color: white;
}
#waitlist-button:hover {
box-shadow: 0px 0px 20px lightcoral ;
}
#waitlist input{
margin: 5px;
}
</style>
</div>-->
</div>
</div>
</section>
<section class="pt-105 pb-45 bg-light text-center feature_2" id="features">
<div class="container px-xl-0">
<div class="row justify-content-center">
<div class="col-xl-8 col-lg-10">
<center>
<style>
.calculator {
background: #f08080;
border-radius: 20px;
padding: 20px;
box-shadow: 0 15px 15px lightgray;
width: 100%;
}
.calculator h2 {
margin: 0;
color: #fff;
}
.slider-container, .checkbox-container {
margin-top: 20px;
position: relative;
}
.slider-label, .checkbox-label {
font-weight: bold;
color: #fff;
}
.slider {
width: 100%;
margin-top: 10px;
-webkit-appearance: none;
appearance: none;
background: #ddd;
height: 8px;
border-radius: 10px;
outline: none;
cursor: pointer;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 30px;
height: 30px;
background: #fff;
border: 2px solid #f08080;
border-radius: 50%;
cursor: pointer;
}
.slider::-moz-range-thumb {
width: 30px;
height: 30px;
background: #fff;
border: 2px solid #f08080;
border-radius: 50%;
}
#total-price{
color: green;
}
.slider-value {
position: absolute;
top: 43px; /* Adjust this to position above the slider */
background: white;
color: #f08080;
font-weight: bold;
padding: 5px;
border-radius: 50%;
width: 40px;
height: 40px;
text-align: center;
line-height: 30px;
transform: translateX(-50%);
}
.checkbox-container label {
display: block;
margin-top: 10px;
font-weight: normal;
color: #fff;
}
.price-display {
margin-top: 20px;
font-weight: bold;
color: white;
padding: 15px;
font-size: 1.5em;
text-align: center;
}
</style>
<div class="calculator" id="calc">
<h2>Price Calculator</h2>
<div class="slider-container">
<label for="images" class="slider-label" style="float:left">Images per page ($0.03 per alt text):</label>
<br/><br/><br/><br/>
<input type="range" id="images" class="slider" min="0" max="50" value="1">
<div class="slider-value" id="images-value">0</div>
</div>
<div class="checkbox-container">
<label>
<input type="checkbox" id="description-tags" checked> Description meta tags ($0.035 × 3)
</label>
<label>
<input type="checkbox" id="open-graph-tags"> Open Graph meta tags ($0.005 × 9)
</label>
<label>
<input type="checkbox" id="twitter-tags"> Twitter (X) meta tags ($0.005 × 5)
</label>
<label>
<input type="checkbox" id="miscellaneous-tags"> Style tags ($0.005 × 4)
</label>
</div>
<div class="slider-container">
<label for="pages" class="slider-label"style="float:left">Number of pages:</label>
<br/><br/><br/><br/>
<input type="range" id="pages" class="slider" min="1" max="100" value="5">
<div class="slider-value" id="pages-value">1</div>
</div>
<div class="price-display">
<b><span style="color: green">$</span><span id="total-price">0.00</span></b> one-time fee
</div>
</div>
<script>
const imagesSlider = document.getElementById('images');
const imagesValue = document.getElementById('images-value');
const descriptionTags = document.getElementById('description-tags');
const openGraphTags = document.getElementById('open-graph-tags');
const twitterTags = document.getElementById('twitter-tags');
const miscellaneousTags = document.getElementById('miscellaneous-tags');
const pagesSlider = document.getElementById('pages');
const pagesValue = document.getElementById('pages-value');
const totalPriceDisplay = document.getElementById('total-price');
function calculatePrice() {
const imagesPerPage = parseInt(imagesSlider.value, 10);
const pages = parseInt(pagesSlider.value, 10);
let pricePerPage = imagesPerPage * 0.03;
if (descriptionTags.checked) pricePerPage += 0.035 * 3;
if (openGraphTags.checked) pricePerPage += 0.005 * 9;
if (twitterTags.checked) pricePerPage += 0.005 * 5;
if (miscellaneousTags.checked) pricePerPage += 0.005 * 4;
const totalPrice = pricePerPage * pages;
totalPriceDisplay.textContent = totalPrice.toFixed(2);
}
function updateSliderValue(slider, valueDisplay) {
const value = slider.value;
valueDisplay.textContent = value;
const percentage = ((value - slider.min) / (slider.max - slider.min)) * 100;
valueDisplay.style.left = `calc(${percentage}% + (${8 - percentage * 0.16}px))`;
}
imagesSlider.addEventListener('input', () => {
updateSliderValue(imagesSlider, imagesValue);
calculatePrice();
});
pagesSlider.addEventListener('input', () => {
updateSliderValue(pagesSlider, pagesValue);
calculatePrice();
});
descriptionTags.addEventListener('change', calculatePrice);
openGraphTags.addEventListener('change', calculatePrice);
twitterTags.addEventListener('change', calculatePrice);
miscellaneousTags.addEventListener('change', calculatePrice);
// Initialize with default values
updateSliderValue(imagesSlider, imagesValue);
updateSliderValue(pagesSlider, pagesValue);
calculatePrice();
</script>
</center>
<br/>
</div>
<br/><br/><br/>
</div>
</div>
</section>
<!-- Feature 2 -->
<section class="pt-105 pb-45 bg-light text-center feature_2" id="features">
<div class="container px-xl-0">
<div class="row justify-content-center">
<div class="col-xl-8 col-lg-10">
<h2 class="small" data-aos="fade-down" data-aos-delay="0">
Features & About
</h2>
<div class="mt-35 mb-65 f-22 color-heading text-adaptive description" data-aos="fade-down" data-aos-delay="250">
<p> Loyae is an intuitive API and web application that unleashes the power of natural language processing (NLP) for modern site optimization.
In addition to abstractly generating metadata that embodies the meaningful and relevant context of your site, Loyae comes with a plethora of additional features.
</p>
</div>
</div>
<div class="col-xl-10">
<div class="row justify-content-center">
<div class="mb-50 col-md-4 col-sm-8" data-aos="fade-down" data-aos-delay="500">
<div class="mb-20 f-18 medium title">
Free Diagnostic Tool
</div>
<div class="color-heading text-adaptive">
<p>Loyae returns insightful diagnostic information
including: missing meta tags, request speed,
file sizes, etc. </p>
</div>
</div>
<div class="mb-50 col-md-4 col-sm-8" data-aos="fade-down" data-aos-delay="750">
<div class="mb-20 f-18 medium title">
AI-Generated Meta Tags and Alt Text For Images
</div>
<div class="color-heading text-adaptive">
<p>Loyae uses advanced language and vision models
to automatically generate meta descriptions, keywords, etc.
and alt text for images.</p>
</div>
</div>
<div class="mb-50 col-md-4 col-sm-8" data-aos="fade-down" data-aos-delay="1000">
<div class="mb-20 f-18 medium title">
Integrates Directly Into Your CMS
</div>
<div class="color-heading text-adaptive">
<p>Loyae integrates directly into your CMS (WordPress) as a plugin.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="pt-105 pb-45 bg-light text-center feature_2" id="features">
<div class="container px-xl-0">
<div class="row justify-content-center">
<div class="col-xl-8 col-lg-10">
<h2 class="small" data-aos="fade-down" data-aos-delay="0">
Supported Meta Tags
</h2>
<img src="./assets/meta.png" style="width: 100%; height: auto; border-radius: 8px;box-shadow: 0px 15px 15px lightgray;"/>
</div>
</div>
</div>
<br/><br/><br/><br/>
<!--<div class="container px-xl-0">
<div class="row justify-content-center">
<div class="col-xl-8 col-lg-10">
<h2 class="small" data-aos="fade-down" data-aos-delay="0">
Open Graph Examples
</h2>
<br/>
<img src="./assets/discordbefore1.png" class="og"/> <img src="./assets/discordafter1.png" class="og"/><br/>
<img src="./assets/twitterbefore1.png" class="og"/> <img src="./assets/twitterafter1.png" class="og"/>
<style>
.og {
border-radius: 8px;
box-shadow: 0px 0px 25px lightgray;
width: 350px;
height: auto;
margin: 10px;
}
</style>
</div>
</div>
</div>-->
</section>
<section class="pt-105 pb-45 bg-light text-center feature_2" id="features">
<div class="container px-xl-0">
<div class="row justify-content-center">
<div class="col-xl-8 col-lg-10">
<h2 class="small" data-aos="fade-down" data-aos-delay="0">
Early Adopters & Partners
</h2>
<br/><br/>
</div>
<div class="col-xl-10">
<div class="row justify-content-center">
<div class="mb-50 col-md-4 col-sm-8" data-aos="fade-down" data-aos-delay="500">
<div class="mb-20 f-18 medium title">
<a href="https://vly.ai"><img src="./assets/vly.png" height="40px" alt="Loyae user"/></a>
</div>
<div class="mb-20 f-18 medium title">
<a href="https://freelanceniko.com/">
<img src="https://freelanceniko.com/wp-content/uploads/2023/10/image17-1-150x150.png" height="40px" alt="Loyae user"/>
</a>
</div>
<div class="mb-20 f-18 medium title">
<img src="https://www.easydiet.it/wp-content/uploads/2022/10/logo-blu1.png" height="30px" style="background-color: gray;" alt="Loyae user"/>
</div>
</div>
<div class="mb-50 col-md-4 col-sm-8" data-aos="fade-down" data-aos-delay="750">
<div class="mb-20 f-18 medium title">
<a href="https://www.propernoun.co">
<img src="https://www.propernoun.co/wp-content/uploads/2022/02/cropped-profile-image-magento-192x192.jpg" height="40px" alt="Loyae user"/>
</a>
</div>
<div class="mb-20 f-18 medium title">
<img src="https://neevomglobal.com/wp-content/uploads/2023/06/Neevom-Global-Logo-1-1536x565.png" height="40px" alt="Loyae user"/>
</div>
<div class="mb-20 f-18 medium title">
<img src="https://images.squarespace-cdn.com/content/v1/5c3155a689c17239373114ec/1594189315812-G2QLOC9E6R3M5T0992CM/gsn_logo.png?format=1500w" height="40px" alt="Loyae user"/>
</div>
</div>
<div class="mb-50 col-md-4 col-sm-8" data-aos="fade-down" data-aos-delay="1000">
<div class="mb-20 f-18 medium title">
<img src="https://signorellishop.com/wp-content/uploads/2019/06/NUOVO_LOGO_CUSANO_GRASETTO.png" height="40px" alt="Loyae user"/>
</div>
<div class="mb-20 f-18 medium title">
<img src="https://cadecon.com/wp-content/uploads/2023/04/site-logo.svg" height="40px" style="background-color: black; padding: 2px;" alt="Loyae user"/>
</div>
<div class="mb-20 f-18 medium title">
<img src="https://www.spicy-art.works/application/themes/hcode/images/spicy-artworks-logo.jpg" height="40px" alt="Loyae user"/>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section style="text-align: center;">
<center>
<img src="landing/assets/before.png" id="display-dashboard" style="margin: 20px; height: 30vw"/>
<span id="arrow">→</span>
<img src="landing/assets/after.png" id="display-dashboard" style="margin: 20px; height: 30vw"/>
</center>
</section> -->
<!-- Footer 2 -->
<footer class="pt-70 pb-65 bg-light text-center footer_2">
<div class="container px-xl-0">
<div class="row justify-content-center">
<div class="col-12 lh-40" data-aos="fade-down" data-aos-delay="0">
<a href="#features" class="link color-main mx-20">
About
</a>
<!--<a href="pages/dashboard.html" class="link color-main mx-20">
Launch
</a>-->
<a href="https://docs.loyae.com" class="link color-main mx-20">
Documentation
</a>
<a href="mailto:contact@loyae.com" class="link color-main mx-20">
Contacts
</a>
<a href="https://blog.loyae.com" class="link color-main mx-20">
Blog
</a>
<a href="https://loyae.com/terms.pdf" class="link color-main mx-20">
Privacy
</a>
<a href="https://loyae.com/terms.pdf" class="link color-main mx-20">
Terms
</a>
</div>
<div class="mt-20 col-12" data-aos="fade-down" data-aos-delay="250">
<a href="https://twitter.com/loyaecom" target="_blank" class="link f-18 mr-20" style="color: lightcoral;">
<i class="fab fa-twitter">
</i>
</a>
<a href="https://github.com/Loyae" target="_blank" class="link f-18 mr-20" style="color: lightcoral;">
<i class="fab fa-github">
</i>
</a>
<!-- <a href="#" target="_blank" class="link f-18 mr-20" style="color: lightcoral;">
<i class="fab fa-angellist">
</i>
</a> -->
<a href="https://www.linkedin.com/company/loyae" target="_blank" class="link f-18 mr-20" style="color: lightcoral;">
<i class="fab fa-linkedin">
</i>
</a>
<a href="https://discord.gg/rtaDgSYdQU" target="_blank" class="link f-18 mr-20" style="color: lightcoral;">
<i class="fab fa-discord">
</i>
</a>
<!-- <a href="https://loyae.slack.com/" target="_blank" class="link f-18 mr-20" style="color: lightcoral;">
<i class="fab fa-slack">
</i>
</a> -->
<br/><br/>
<div class="color-heading text-adaptive">
© <span id="year"></span> Loyae. All rights reserved.
</div>
</div>
</div>
</div>
</footer>
<!-- gReCaptcha popup (uncomment if you need a recaptcha integration) -->
<!--
<div class="bg-dark op-8 grecaptcha-overlay"></div>
<div class="bg-light radius10 w-350 h-120 px-20 pt-20 pb-20 grecaptcha-popup">
<div class="w-full h-full d-flex justify-content-center align-items-center">
<div id="g-recaptcha" data-sitekey="PUT_YOUR_SITE_KEY_HERE"></div>
</div>
</div>
<script src="https://www.google.com/recaptcha/api.js?render=explicit" async defer></script>