-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
792 lines (742 loc) · 30.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="https://glitch.com/favicon.ico" />
<title>Lasles vpn</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Tailwind css -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- The website JavaScript file -->
<script src="./script.js"></script>
<style type="text/tailwindcss">
@layer utilities {
html, body {
@apply text-gray-600 text-base overflow-x-hidden transition-all;
font-family: 'Rubik', sans-serif;
}
.layout {
@apply mx-auto w-full lg:w-[1140px] px-4 lg:px-0;
}
.nav-item {
@apply relative py-2 px-3 lg:py-3 lg:px-4 capitalize hover:text-primary;
}
footer .nav-item {
@apply py-2 lg:py-2 px-0;
}
header .nav-link {
@apply font-medium text-gray-900 capitalize hover:text-primary py-2 px-3 lg:py-3 lg:px-4;
}
.btn-primary {
@apply py-3 px-10 text-center inline-block capitalize rounded font-medium text-primary border border-primary transition-all hover:bg-primary hover:text-gray-50;
}
.btn-primary.pill {
@apply rounded-full;
}
.btn-primary.filled {
@apply bg-primary inline-block text-white px-16 hover:shadow-none transition-all;
box-shadow: 0 25px 32px -12px rgb(245, 56, 56, 0.5);
}
.nav-item::after {
@apply absolute left-0 bottom-0 w-0 h-[2px] bg-primary text-primary rounded transition-all;
content: "";
}
.nav-item:hover:after {
@apply w-full;
}
.row {
@apply flex justify-between items-center flex-col md:flex-row;
}
.row.reverse {
@apply flex-col-reverse md:flex-row;
}
.heading {
@apply mb-5 text-xl lg:text-3xl font-medium text-gray-900 leading-snug;
}
h1.heading {
@apply text-2xl lg:text-5xl 2xl:text-4xl;
}
p {
@apply mb-2 leading-tight;
}
.container-shadow {
box-shadow: 0 25px 32px -12px rgba(13, 16, 37, .06),0 35px 32px -12px rgba(13, 16, 37, .06);
}
.light-bg {
@apply bg-[#fefefe];
}
.icon-circle {
@apply w-12 h-12 rounded-full bg-primary_light flex items-center justify-center;
}
.font-double {
@apply text-gray-900 font-bold;
}
.pricing-container {
background: linear-gradient(180deg, #F8F8F8 0%, rgba(248, 248, 248, 0.00) 100%);
}
.default-card {
@apply border border-gray-400 hover:border-primary rounded-lg;
}
.default-card.active {
@apply border-primary;
}
.card {
@apply w-3/4 mb-12 md:mb-0 md:w-1/4 lg:h-[711px] flex flex-col justify-between items-center px-3 md:px-4 lg:px-6 xl:px-8 py-6;
}
.card-img {
@apply md:w-36 lg:w-36 2xl:w-40 mx-auto mb-8;
}
.card-title {
@apply font-double md:text-lg xl:text-xl mb-6 text-center;
}
.card-body {
@apply mb-6;
}
.card-lists li {
@apply relative ml-[35px] mb-4;
}
.card-lists li:before {
content: "";
left: -35px;
width: 20px;
height: 20px;
background-image: url('https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/jam_check.svg?v=1692594519095');
background-position: center;
position:absolute;
}
.card-footer .btn-primary {
@apply md:px-16;
}
.card:hover .card-footer .btn-primary,
.card.active .card-footer .btn-primary{
@apply bg-primary inline-block text-white px-16 hover:shadow-none transition-all;
box-shadow: 0 25px 32px -12px rgb(245, 56, 56, 0.5);
}
.t-card {
@apply w-full p-2 md:p-0 md:min-w-[400px] h-auto md:h-[200px] flex justify-center items-center mr-8 md:mr-12;
}
.t-card-body {
@apply w-[340px];
}
.t-card-nav-item {
@apply w-4 h-4 bg-gray-400 rounded-full mr-3 transition-all;
}
.t-card-nav-container {
@apply relative;
}
.t-card-nav-container::before {
@apply absolute w-4 h-4 rounded-full bg-primary left-0 transition-all;
content: "";
}
.t-card-arrow {
@apply w-14 h-14 rounded-full border border-primary text-primary flex justify-center items-center cursor-pointer hover:bg-primary hover:text-gray-100 transition-all;
}
.social-icon {
@apply w-[34px] h-[34px] rounded-full bg-primary;
}
.social-icon img {
@apply w-full h-full;
}
}
</style>
</head>
<body>
<header>
<nav>
<div class="layout">
<div class="flex justify-between md:items-center flex-row flex-wrap py-3">
<div>
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/Logo.svg?v=1692517362246" />
</div>
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/menu.svg?v=1692729037890"
class="block md:hidden cursor-pointer w-6 menu-icon">
<div class="flex justify-evenly items-center w-full md:w-auto flex-col md:flex-row menu-item">
<a href="#about" class="nav-item">about</a>
<a href="#features" class="nav-item">features</a>
<a href="#pricing" class="nav-item">pricing</a>
<a href="#testimonials" class="nav-item">testimonial</a>
<a href="#help" class="nav-item">help</a>
</div>
<div class="w-full md:w-auto flex items-center flex-row flex-wrap menu-item">
<a href="#" class="nav-link w-full md:w-auto text-center">sign in</a>
<a href="#" class="nav-btn btn-primary pill w-full md:w-auto">
sign up
</a>
</div>
</div>
</div>
</nav>
</header>
<main class="pt-12 md:pt-16 2xl:pt-20">
<div class="row layout mt-5 reverse" id="about">
<div class="md:w-2/4 text-center md:text-left">
<h1 class="heading">
Want anything to be <br class="none md:block" /> easy with <span class="font-bold">LaslesVPN</span>.
</h1>
<p class="mb-12">
Provide a network for all your needs with ease and fun using LaslesVPN discover interesting features from us.
</p>
<a href="#" class="btn btn-primary filled">Get Started</a>
</div>
<div class="pl-6 mb-12 md:mb-0">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/Illustration.svg?v=1692525019549"
class="w-full md:w-96 lg:w-[400px] 2xl:w-[550px]">
</div>
</div>
<div class="row mt-20 light-bg py-2 flex-wrap" id="features">
<div class="layout">
<div class="p-0 md:p-3 lg:px-4 lg:py-6 container-shadow rounded-lg w-3/4 mx-auto md:w-full row">
<div class="flex w-3/4 md:w-1/3 justify-center items-center px-4 py-6">
<div class="flex items-center">
<div class="icon-circle mr-5">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/users.svg?v=1692517405229"
class="w-4">
</div>
<div>
<p class="font-double text-lg">
90+
</p>
<p>
Users
</p>
</div>
</div>
</div>
<div
class="flex w-3/4 md:w-1/3 justify-center items-center px-4 py-6 border-y md:border-x md:border-y-0 mx-0 md:mx-4 my-5 md:my-0 border-gray-400">
<div class="flex items-center">
<div class="icon-circle mr-5">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/users.svg?v=1692517405229"
class="w-4">
</div>
<div>
<p class="font-double text-lg">
30+
</p>
<p>
Locations
</p>
</div>
</div>
</div>
<div class="flex w-3/4 md:w-1/3 justify-center items-center px-4 py-6">
<div class="flex items-center">
<div class="icon-circle mr-5">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/users.svg?v=1692517405229"
class="w-4">
</div>
<div>
<p class="font-double text-lg">
50+
</p>
<p>
Servers
</p>
</div>
</div>
</div>
</div>
</div>
<div class="layout mt-20 row">
<div class="w-full md:w-2/5 mb-12 md:mb-0">
<img
src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/Illustration-features.svg?v=1692541883796">
</div>
<div class="md:w-2/5 text-center md:text-left">
<h2 class="heading">
We Provide Many Features<br> You Can Use
</h2>
<p class="mb-6">
You can explore the features that we provide with fun and have their own functions each feature.
</p>
<div class="flex items-center mb-4">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/check.svg?v=1692517413616">
<span class="ml-2">Powerfull online protection.</span>
</div>
<div class="flex items-center mb-4">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/check.svg?v=1692517413616">
<span class="ml-2">Internet without borders.</span>
</div>
<div class="flex items-center mb-4">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/check.svg?v=1692517413616">
<span class="ml-2">Supercharged VPN</span>
</div>
<div class="flex items-center">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/check.svg?v=1692517413616">
<span class="ml-2">No specific time limits.</span>
</div>
</div>
</div>
</div>
<div class="mt-20 pricing-container" id="pricing">
<div class="layout">
<div class="md:w-2/5 text-center mx-auto py-12">
<h2 class="heading ">
Choose Your Plan
</h2>
<p>
Let's choose the package that is best for you and explore it happily and cheerfully.
</p>
</div>
</div>
<div class="layout flex justify-center items-center flex-col md:flex-row">
<div class="card default-card">
<div>
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/Free.svg?v=1692594299174"
class="card-img">
<h5 class="card-title">
Free Plan
</h5>
<div class="card-body">
<ul class="card-lists">
<li>
Unlimited Bandwitch
</li>
<li>Encrypted Connection</li>
<li>No Traffic Logs</li>
<li>Works on All Devices</li>
</ul>
</div>
</div>
<div class="card-footer">
<h5 class="card-title text-center">
Free
</h5>
<a href="#" class="btn-primary pill">select</a>
</div>
</div>
<div class="card default-card md:mx-12">
<div>
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/Free.svg?v=1692594299174"
class="card-img">
<h5 class="card-title">
Standard Plan
</h5>
<div class="card-body">
<ul class="card-lists">
<li>Unlimited Bandwitch</li>
<li>Encrypted Connection</li>
<li>Yes Traffic Logs</li>
<li>Works on All Devices</li>
<li>Connect Anyware</li>
</ul>
</div>
</div>
<div class="card-footer">
<h5 class="card-title text-center">
Free
</h5>
<a href="#" class="btn-primary pill">select</a>
</div>
</div>
<div class="card default-card active">
<div>
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/Free.svg?v=1692594299174"
class="card-img">
<h5 class="card-title">
Premium Plan
</h5>
<div class="card-body">
<ul class="card-lists">
<li>Unlimited Bandwitch</li>
<li>Encrypted Connection</li>
<li>Yes Traffic Logs</li>
<li>Works on All Devices</li>
<li>Connect Anyware</li>
<li>Get New Features</li>
</ul>
</div>
</div>
<div class="card-footer">
<h5 class="card-title text-center">
Free
</h5>
<a href="#" class="btn-primary pill">select</a>
</div>
</div>
</div>
<div class="layout">
<div class="md:w-2/5 text-center mx-auto pt-32 pb-20">
<h2 class="heading text-center">
Huge Global Network<br class="none md:block"> of Fast VPN
</h2>
<p>
See LaslesVPN everywhere to make it easier for you when you move locations.
</p>
</div>
<img clss="layout"
src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/HugeGlobal.svg?v=1692628682082"
alt="global map">
</div>
</div>
<div class="my-20" id="supports">
<div class="layout row justify-evenly">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/netflix.png?v=1692644542226"
alt="netflix logo">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/redit.png?v=1692644542849"
alt="redit logo">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/amazon.png?v=1692644544623"
alt="amazon logo">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/discord.png?v=1692644543452"
alt="discord logo">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/spotify.png?v=1692644544033"
alt="spotify logo">
</div>
</div>
<div class="py-10" id="testimonials">
<div class="layout">
<div class="md:w-2/5 text-center mx-auto py-14">
<h2 class="heading ">
Trusted by Thousands of <br class="none md:block">Happy Customer
</h2>
<p>
These are the stories of our customers who have joined us with great pleasure when using this crazy feature.
</p>
</div>
<div class="flex flex-row flex-nowrap overflow-visible max-w-full mb-14 t-trailers">
<div class="default-card t-card transition-all">
<div class="t-card-body">
<div class="flex justify-between items-center w-full">
<div class="flex justify-between items-center">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/pic-1.png?v=1692646220002"
alt="user pic">
<div class="ml-4">
<p class="text-gray-900 mb-0 font-medium">
Viezh Robert
</p>
<p class="text-gray-600 text-sm mb-0">Warsaw, Poland</p>
</div>
</div>
<div class="flex items-center">
<span>
4.5
</span>
<img class="ml-2"
src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/ant-design_star-filled.svg?v=1692646221361"
alt="rating star">
</div>
</div>
<p class="mt-3">
“Wow... I am very happy to use this VPN, it turned out to be more than my expectations and so far there
have been no problems. LaslesVPN always the best”.
</p>
</div>
</div>
<div class="default-card t-card">
<div class="t-card-body">
<div class="flex justify-between items-center w-full">
<div class="flex justify-between items-center">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/pic-2.png?v=1692646219342"
alt="user pic">
<div class="ml-4">
<p class="text-gray-900 mb-0 font-medium">
Yessica Christy
</p>
<p class="text-gray-600 text-sm mb-0">Shanxi, China</p>
</div>
</div>
<div class="flex items-center">
<span>
4.5
</span>
<img class="ml-2"
src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/ant-design_star-filled.svg?v=1692646221361"
alt="rating star">
</div>
</div>
<p class="mt-3">
“I like it because I like to travel far and still can connect with high speed.”.
</p>
</div>
</div>
<div class="default-card t-card">
<div class="t-card-body">
<div class="flex justify-between items-center w-full">
<div class="flex justify-between items-center">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/pic-3.png?v=1692646221966"
alt="user pic">
<div class="ml-4">
<p class="text-gray-900 mb-0 font-medium">
Kim Young Jou
</p>
<p class="text-gray-600 text-sm mb-0">Seoul, South Korea</p>
</div>
</div>
<div class="flex items-center">
<span>
4.5
</span>
<img class="ml-2"
src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/ant-design_star-filled.svg?v=1692646221361"
alt="rating star">
</div>
</div>
<p class="mt-3">
“This is very unusual for my business that currently requires a virtual private network that has high
security.”.
</p>
</div>
</div>
<div class="default-card t-card">
<div class="t-card-body">
<div class="flex justify-between items-center w-full">
<div class="flex justify-between items-center">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/pic-2.png?v=1692646219342"
alt="user pic">
<div class="ml-4">
<p class="text-gray-900 mb-0 font-medium">
Yessica Christy
</p>
<p class="text-gray-600 text-sm mb-0">Shanxi, China</p>
</div>
</div>
<div class="flex items-center">
<span>
4.5
</span>
<img class="ml-2"
src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/ant-design_star-filled.svg?v=1692646221361"
alt="rating star">
</div>
</div>
<p class="mt-3">
“I like it because I like to travel far and still can connect with high speed.”.
</p>
</div>
</div>
<div class="default-card t-card">
<div class="t-card-body">
<div class="flex justify-between items-center w-full">
<div class="flex justify-between items-center">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/pic-3.png?v=1692646221966"
alt="user pic">
<div class="ml-4">
<p class="text-gray-900 mb-0 font-medium">
Kim Young Jou
</p>
<p class="text-gray-600 text-sm mb-0">Seoul, South Korea</p>
</div>
</div>
<div class="flex items-center">
<span>
4.5
</span>
<img class="ml-2"
src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/ant-design_star-filled.svg?v=1692646221361"
alt="rating star">
</div>
</div>
<p class="mt-3">
“This is very unusual for my business that currently requires a virtual private network that has high
security.”.
</p>
</div>
</div>
<div class="default-card t-card">
<div class="t-card-body">
<div class="flex justify-between items-center w-full">
<div class="flex justify-between items-center">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/pic-1.png?v=1692646220002"
alt="user pic">
<div class="ml-4">
<p class="text-gray-900 mb-0 font-medium">
Viezh Robert
</p>
<p class="text-gray-600 text-sm mb-0">Warsaw, Poland</p>
</div>
</div>
<div class="flex items-center">
<span>
4.5
</span>
<img class="ml-2"
src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/ant-design_star-filled.svg?v=1692646221361"
alt="rating star">
</div>
</div>
<p class="mt-3">
“Wow... I am very happy to use this VPN, it turned out to be more than my expectations and so far there
have been no problems. LaslesVPN always the best”.
</p>
</div>
</div>
<div class="default-card t-card">
<div class="t-card-body">
<div class="flex justify-between items-center w-full">
<div class="flex justify-between items-center">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/pic-1.png?v=1692646220002"
alt="user pic">
<div class="ml-4">
<p class="text-gray-900 mb-0 font-medium">
Viezh Robert
</p>
<p class="text-gray-600 text-sm mb-0">Warsaw, Poland</p>
</div>
</div>
<div class="flex items-center">
<span>
4.5
</span>
<img class="ml-2"
src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/ant-design_star-filled.svg?v=1692646221361"
alt="rating star">
</div>
</div>
<p class="mt-3">
“Wow... I am very happy to use this VPN, it turned out to be more than my expectations and so far there
have been no problems. LaslesVPN always the best”.
</p>
</div>
</div>
<div class="default-card t-card">
<div class="t-card-body">
<div class="flex justify-between items-center w-full">
<div class="flex justify-between items-center">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/pic-2.png?v=1692646219342"
alt="user pic">
<div class="ml-4">
<p class="text-gray-900 mb-0 font-medium">
Yessica Christy
</p>
<p class="text-gray-600 text-sm mb-0">Shanxi, China</p>
</div>
</div>
<div class="flex items-center">
<span>
4.5
</span>
<img class="ml-2"
src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/ant-design_star-filled.svg?v=1692646221361"
alt="rating star">
</div>
</div>
<p class="mt-3">
“I like it because I like to travel far and still can connect with high speed.”.
</p>
</div>
</div>
<div class="default-card t-card">
<div class="t-card-body">
<div class="flex justify-between items-center w-full">
<div class="flex justify-between items-center">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/pic-3.png?v=1692646221966"
alt="user pic">
<div class="ml-4">
<p class="text-gray-900 mb-0 font-medium">
Kim Young Jou
</p>
<p class="text-gray-600 text-sm mb-0">Seoul, South Korea</p>
</div>
</div>
<div class="flex items-center">
<span>
4.5
</span>
<img class="ml-2"
src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/ant-design_star-filled.svg?v=1692646221361"
alt="rating star">
</div>
</div>
<p class="mt-3">
“This is very unusual for my business that currently requires a virtual private network that has high
security.”.
</p>
</div>
</div>
</div>
<div class="t-card-navigation flex justify-between items-center">
<div class="flex items-center t-card-nav-container">
<div class="t-card-nav-item active"></div>
<div class="t-card-nav-item"></div>
<div class="t-card-nav-item"></div>
</div>
<div class="flex items-center">
<div class="t-card-arrow left">
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="w-8 rotate-180" viewbox="0 0 16 16">
<path fill-rule="evenodd"
d="M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z" />
</svg>
</div>
<div class="t-card-arrow right ml-4">
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="w-8" viewbox="0 0 16 16">
<path fill-rule="evenodd"
d="M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z" />
</svg>
</div>
</div>
</div>
</div>
</div>
<div class="layout bg-white relative z-50 container-shadow row py-6 md:py-12 px-3 md:px-16 mt-20 -mb-20 rounded-lg">
<div class="1/4">
<h2 class="heading text-center md:text-left">
Subscribe Now for <br class="none md:block">Get Special Features!
</h2>
<p>
Let's subscribe with us and find the fun.
</p>
</div>
<a href="#" class="btn btn-primary filled mt-8 mb-4 md:mb-0 md:mt-0">Subscribe Now</a>
</div>
</main>
<footer class="bg-gray-700 pt-32 pb-16">
<div class="layout row mt-8">
<div class="md:w-1/3 text-center md:text-left">
<img class="mx-auto md:ml-0"
src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/Logo.png?v=1692649586733" alt="logo">
<p class="mt-6">
<b>LaslesVPN</b> is a private virtual network that has unique features and has high security.
</p>
<div class="mt-6 flex items-center justify-center md:justify-start">
<div class="social-icon shadow-lg cursor-pointer">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/fb.svg?v=1692649412742">
</div>
<div class="social-icon mx-4 shadow-lg cursor-pointer">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/twitter.svg?v=1692649412135">
</div>
<div class="social-icon shadow-lg cursor-pointer">
<img src="https://cdn.glitch.global/68a8c99d-34ba-4333-95e7-a3703e621611/insta.svg?v=1692649413353">
</div>
</div>
<p class="text-[#AFB5C0] mt-6">
©2020LaslesVPN
</p>
</div>
<div class="md:w-1/2 flex flex-row flex-wrap justify-between items-center md:items-start">
<div class="flex w-1/2 md:w-auto flex-col">
<p class="font-double mb-8">
Product
</p>
<a href="#" class="nav-item">Download</a>
<a href="#" class="nav-item">Pricing</a>
<a href="#" class="nav-item">Locations</a>
<a href="#" class="nav-item">Server</a>
<a href="#" class="nav-item">Countries</a>
<a href="#" class="nav-item">Blog</a>
</div>
<div class="flex w-1/2 md:w-auto my-12 md:my-0 flex-col">
<p class="font-double mb-8">
Engage
</p>
<a href="#" class="nav-item">LaslesVPN ? </a>
<a href="#" class="nav-item">FAQ</a>
<a href="#" class="nav-item">Tutorials</a>
<a href="#" class="nav-item">About Us</a>
<a href="#" class="nav-item">Privacy Policy</a>
<a href="#" class="nav-item">Terms of Service</a>
</div>
<div class="flex w-1/2 md:w-auto flex-col">
<p class="font-double mb-8">
Earn Money
</p>
<a href="#" class="nav-item">Affiliate</a>
<a href="#" class="nav-item">Become Partner</a>
</div>
</div>
</div>
</footer>
</body>
</html>