forked from PaulleDemon/awesome-landing-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
722 lines (707 loc) · 33.9 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chat Origin</title>
<meta name="description" content="" />
<link
rel="shortcut icon"
href="./assets/logo.png"
type="image/x-icon"
/>
<!-- Open Graph / Facebook -->
<meta property="og:title" content="Title of the project" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://github.com/PaulleDemon" />
<!--Replace with the current website url-->
<meta property="og:image" content="" />
<!-- <link rel="stylesheet" href="../../tailwind-css/tailwind-runtime.css"> -->
<link rel="stylesheet" href="./css/tailwind-build.css" />
<link rel="stylesheet" href="css/index.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.11.3/font/bootstrap-icons.min.css"
integrity="sha512-dPXYcDub/aeb08c63jRq/k6GaKccl256JQy/AnOq7CAnEZ9FzSL9wSbcZkMp4R26vBsMLFYH4kQ67/bbV8XaCQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body class="tw-flex tw-min-h-[100vh] tw-flex-col tw-bg-[#fff]">
<header
class="tw-absolute tw-top-0 tw-z-20 tw-flex tw-h-[60px] tw-w-full tw-bg-opacity-0 tw-px-[5%] max-lg:tw-mr-auto max-lg:tw-px-4 lg:tw-justify-around"
>
<a class="tw-h-[50px] tw-w-[50px] tw-p-[4px]" href="">
<img
src="./assets/logo.png"
alt="logo"
class="tw-object tw-h-full tw-w-full"
/>
</a>
<div
class="collapsible-header animated-collapse max-lg:tw-shadow-md"
id="collapsed-header-items"
>
<div
class="tw-flex tw-h-full tw-w-max tw-gap-5 tw-text-base tw-text-black max-lg:tw-mt-[30px] max-lg:tw-flex-col max-lg:tw-place-items-end max-lg:tw-gap-5 lg:tw-mx-auto lg:tw-place-items-center"
>
<a class="header-links" href=""> About us </a>
<a class="header-links" href="#pricing"> Pricing </a>
<a class="header-links" href=""> Features </a>
<a class="header-links" href=""> Blog </a>
<a class="header-links" href=""> Contact us </a>
</div>
<div
class="tw-mx-4 tw-flex tw-place-items-center tw-gap-[20px] tw-text-base max-md:tw-w-full max-md:tw-flex-col max-md:tw-place-content-center"
>
<a
href=""
aria-label="signup"
class="tw-rounded-md tw-bg-primary tw-px-3 tw-py-2 tw-text-white tw-transition-transform tw-duration-[0.3s] hover:tw-translate-x-2"
>
<span>Download</span>
<i class="bi bi-apple"></i>
</a>
</div>
</div>
<button
class="bi bi-list tw-absolute tw-right-3 tw-top-3 tw-z-50 tw-text-3xl tw-text-black lg:tw-hidden"
onclick="toggleHeader()"
aria-label="menu"
id="collapse-btn"
></button>
</header>
<section
class="tw-relative tw-flex tw-min-h-[100vh] tw-w-full tw-max-w-[100vw] tw-flex-col tw-overflow-hidden max-lg:tw-p-4 max-md:tw-mt-[50px]"
>
<div
class="tw-flex tw-h-full tw-min-h-[100vh] tw-w-full tw-place-content-center tw-gap-6 tw-p-[5%] max-xl:tw-place-items-center max-lg:tw-flex-col"
>
<div class="tw-flex tw-flex-col tw-place-content-center">
<div
class="tw-text-6xl tw-font-semibold tw-uppercase tw-leading-[80px] max-lg:tw-text-4xl max-md:tw-leading-snug"
>
<span> Connect instantly </span>
<br />
<span class="tw-text-primary"> with customers </span>
</div>
<div
class="tw-mt-10 tw-max-w-[450px] tw-p-2 tw-text-justify max-lg:tw-max-w-full"
>
Lorem ipsum dolor sit amet consectetur, adipisicing
elit. Error adipisci corrupti accusamus reiciendis
similique assumenda nostrum fuga dicta vitae ipsum.
</div>
<div
class="tw-mt-4 tw-flex tw-place-items-center tw-gap-4 tw-overflow-hidden tw-p-2"
>
<a
class="btn tw-transition-transform tw-duration-[0.3s] hover:tw-scale-x-[1.03]"
href=""
>
Get started
</a>
<a
class="btn !tw-bg-[#c8cbf984] !tw-text-primary tw-transition-transform tw-duration-[0.3s] hover:tw-scale-x-[1.03]"
href=""
>
<span>Learn more</span>
</a>
</div>
</div>
<div
class="tw-flex tw-w-full tw-max-w-[50%] tw-place-content-center tw-place-items-center tw-overflow-hidden max-lg:tw-max-w-[unset]"
>
<div
class="tw-flex tw-max-h-[580px] tw-min-h-[450px] tw-min-w-[350px] tw-max-w-[650px] tw-overflow-hidden max-lg:tw-h-fit max-lg:tw-max-h-[320px] max-lg:tw-min-h-[180px] max-lg:tw-w-[320px] max-lg:tw-min-w-[320px]"
>
<img
src="./assets/images/home/iphone.png"
alt="app"
class="tw-h-full tw-w-full tw-object-contain"
/>
</div>
</div>
</div>
</section>
<section
class="tw-relative tw-flex tw-w-full tw-max-w-[100vw] tw-flex-col tw-place-content-center tw-place-items-center tw-overflow-hidden tw-p-6"
id="numbers"
>
<div class="tw-flex tw-flex-col tw-place-items-center tw-gap-8">
<h3 class="tw-text-3xl">In numbers</h3>
<div
class="tw-flex tw-w-full tw-place-content-center tw-gap-10 max-md:tw-flex-col"
id="numbers-container"
>
<div>
<span class="tw-text-6xl max-lg:tw-text-4xl">
<span id="installs">250</span><span>k +</span>
</span>
<span
class="tw-text-xl tw-font-medium tw-text-gray-800"
>
/Installs
</span>
</div>
<div class="tw-text-6xl">
<span class="tw-text-6xl max-lg:tw-text-4xl">
<span id="hours">400</span>
<span>+</span>
</span>
<span
class="tw-text-xl tw-font-medium tw-text-gray-800"
>
/hrs saved
</span>
</div>
</div>
</div>
</section>
<section
class="tw-relative tw-flex tw-w-full tw-max-w-[100vw] tw-flex-col tw-place-content-center tw-place-items-center tw-overflow-hidden tw-p-6"
id=""
>
<div
class="tw-mt-8 tw-flex tw-flex-col tw-place-items-center tw-gap-5"
>
<div
class="tw-mt-5 tw-flex tw-flex-col tw-gap-3 tw-text-center"
>
<h3 class="tw-text-xl tw-text-primary">
Features loved by our clients
</h3>
<h2 class="tw-text-4xl tw-font-semibold">Features</h2>
</div>
<div
class="tw-mt-6 tw-flex tw-max-w-[60%] tw-flex-wrap tw-place-content-center tw-gap-2 max-lg:tw-flex-col"
>
<div
class="tw-flex tw-h-[250px] tw-w-[350px] tw-flex-col tw-gap-2 tw-p-4 tw-text-center"
>
<!-- <img src="./assets/images/home/sample.jpg"
alt="feature1"> -->
<i
class="bi bi-boombox-fill tw-text-5xl tw-text-primary"
></i>
<h3 class="tw-text-2xl tw-font-semibold">Feature 1</h3>
<div class="tw-text-[#595959]">
Lorem ipsum dolor sit amet consectetur, adipisicing
elit. Quos, voluptates numquam quam expedita
mollitia possimus. Quos tempora placeat pariatur
est!
</div>
</div>
<div
class="tw-flex tw-h-[250px] tw-w-[350px] tw-flex-col tw-gap-2 tw-p-4 tw-text-center"
>
<!-- <img src="./assets/images/home/sample.jpg"
alt="feature1"> -->
<i
class="bi bi-award-fill tw-text-5xl tw-text-primary"
></i>
<h3 class="tw-text-2xl tw-font-semibold">Feature 2</h3>
<div class="tw-text-[#595959]">
Lorem ipsum dolor sit amet consectetur, adipisicing
elit. Quos, voluptates numquam quam expedita
mollitia possimus. Quos tempora placeat pariatur
est!
</div>
</div>
<div
class="tw-flex tw-h-[250px] tw-w-[350px] tw-flex-col tw-gap-2 tw-p-4 tw-text-center"
>
<!-- <img src="./assets/images/home/sample.jpg"
alt="feature1"> -->
<i
class="bi bi-book-fill tw-text-5xl tw-text-primary"
></i>
<h3 class="tw-text-2xl tw-font-semibold">Feature 3</h3>
<div class="tw-text-[#595959]">
Lorem ipsum dolor sit amet consectetur, adipisicing
elit. Quos, voluptates numquam quam expedita
mollitia possimus. Quos tempora placeat pariatur
est!
</div>
</div>
<div
class="tw-flex tw-h-[250px] tw-w-[350px] tw-flex-col tw-gap-2 tw-p-4 tw-text-center"
>
<!-- <img src="./assets/images/home/sample.jpg"
alt="feature1"> -->
<i
class="bi bi-briefcase-fill tw-text-5xl tw-text-primary"
></i>
<h3 class="tw-text-2xl tw-font-semibold">Feature 4</h3>
<div class="tw-text-[#595959]">
Lorem ipsum dolor sit amet consectetur, adipisicing
elit. Quos, voluptates numquam quam expedita
mollitia possimus. Quos tempora placeat pariatur
est!
</div>
</div>
<div
class="tw-flex tw-h-[250px] tw-w-[350px] tw-flex-col tw-gap-2 tw-p-4 tw-text-center"
>
<!-- <img src="./assets/images/home/sample.jpg"
alt="feature1"> -->
<i
class="bi bi-credit-card-2-front-fill tw-text-5xl tw-text-primary"
></i>
<h3 class="tw-text-2xl tw-font-semibold">Feature 5</h3>
<div class="tw-text-[#595959]">
Lorem ipsum dolor sit amet consectetur, adipisicing
elit. Quos, voluptates numquam quam expedita
mollitia possimus. Quos tempora placeat pariatur
est!
</div>
</div>
<div
class="tw-flex tw-h-[250px] tw-w-[350px] tw-flex-col tw-gap-2 tw-p-4 tw-text-center"
>
<!-- <img src="./assets/images/home/sample.jpg"
alt="feature1"> -->
<i class="bi bi-fire tw-text-5xl tw-text-primary"></i>
<h3 class="tw-text-2xl tw-font-semibold">Feature 6</h3>
<div class="tw-text-[#595959]">
Lorem ipsum dolor sit amet consectetur, adipisicing
elit. Quos, voluptates numquam quam expedita
mollitia possimus. Quos tempora placeat pariatur
est!
</div>
</div>
</div>
</div>
</section>
<section
class="tw-mt-5 tw-flex tw-w-full tw-flex-col tw-place-items-center tw-p-[2%]"
>
<h3
class="tw-text-3xl tw-font-medium tw-text-primary max-md:tw-text-2xl"
>
What our clients say
</h3>
<!-- Testimonials -->
<div
class="tw-mt-8 tw-gap-10 tw-space-y-8 max-md:tw-columns-1 lg:tw-columns-2 xl:tw-columns-3"
>
<div
class="tw-flex tw-h-fit tw-w-[350px] tw-break-inside-avoid tw-flex-col tw-rounded-lg tw-p-4 tw-shadow-lg max-lg:tw-w-[320px]"
>
<div class="tw-flex tw-place-items-center tw-gap-3">
<div
class="tw-h-[50px] tw-w-[50px] tw-overflow-hidden tw-rounded-full tw-border-[2px] tw-border-solid tw-border-primary"
>
<img
src="./assets/images/people/women.jpg"
class="tw-h-full tw-w-full tw-object-cover"
alt="women"
/>
</div>
<div class="tw-flex tw-flex-col tw-gap-1">
<div class="tw-font-semibold">Trich B</div>
<div class="tw-text-[#4b4b4b]">AMI, ceo</div>
</div>
</div>
<p class="tw-mt-4 tw-italic tw-text-gray-600">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Voluptate, sequi sunt velit aut omnis nulla ut, autem
corrupti nemo optio ipsam amet ducimus illum?
Repellendus itaque autem alias eos quis.
</p>
</div>
<div
class="tw-flex tw-h-fit tw-w-[350px] tw-break-inside-avoid tw-flex-col tw-rounded-lg tw-p-4 tw-shadow-lg max-lg:tw-w-[320px]"
>
<div class="tw-flex tw-place-items-center tw-gap-3">
<div
class="tw-h-[50px] tw-w-[50px] tw-overflow-hidden tw-rounded-full tw-border-[2px] tw-border-solid tw-border-primary"
>
<img
src="./assets/images/people/man.jpg"
class="tw-h-full tw-w-full tw-object-cover"
alt="man"
/>
</div>
<div class="tw-flex tw-flex-col tw-gap-1">
<div class="tw-font-semibold">John B</div>
<div class="tw-text-[#4b4b4b]">ABC, cto</div>
</div>
</div>
<p class="tw-mt-4 tw-italic tw-text-gray-600">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Inventore deserunt delectus consectetur enim cupiditate
ab nemo voluptas repellendus qui quas..
</p>
</div>
<div
class="tw-flex tw-h-fit tw-w-[350px] tw-break-inside-avoid tw-flex-col tw-rounded-lg tw-p-4 tw-shadow-lg max-lg:tw-w-[320px]"
>
<div class="tw-flex tw-place-items-center tw-gap-3">
<div
class="tw-h-[50px] tw-w-[50px] tw-overflow-hidden tw-rounded-full tw-border-[2px] tw-border-solid tw-border-primary"
>
<img
src="./assets/images/people/man2.jpg"
class="tw-h-full tw-w-full tw-object-cover"
alt="man"
/>
</div>
<div class="tw-flex tw-flex-col tw-gap-1">
<div class="tw-font-semibold">Mante</div>
<div class="tw-text-[#4b4b4b]">xyz, cto</div>
</div>
</div>
<p class="tw-mt-4 tw-italic tw-text-gray-600">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Quidem, numquam.
</p>
</div>
<div
class="tw-flex tw-h-fit tw-w-[350px] tw-break-inside-avoid tw-flex-col tw-rounded-lg tw-p-4 tw-shadow-lg max-lg:tw-w-[320px]"
>
<div class="tw-flex tw-place-items-center tw-gap-3">
<div
class="tw-h-[50px] tw-w-[50px] tw-overflow-hidden tw-rounded-full tw-border-[2px] tw-border-solid tw-border-primary"
>
<img
src="./assets/images/people/women.jpg"
class="tw-h-full tw-w-full tw-object-cover"
alt="man"
/>
</div>
<div class="tw-flex tw-flex-col tw-gap-1">
<div class="tw-font-semibold">Lara</div>
<div class="tw-text-[#4b4b4b]">xz, cto</div>
</div>
</div>
<p class="tw-mt-4 tw-italic tw-text-gray-600">
Lorem ipsum dolor, sit amet consectetur adipisicing
elit. Soluta, saepe illum. Dicta quisquam praesentium
quod!
</p>
</div>
<div
class="tw-flex tw-h-fit tw-w-[350px] tw-break-inside-avoid tw-flex-col tw-rounded-lg tw-p-4 tw-shadow-lg max-lg:tw-w-[320px]"
>
<div class="tw-flex tw-place-items-center tw-gap-3">
<div
class="tw-h-[50px] tw-w-[50px] tw-overflow-hidden tw-rounded-full tw-border-[2px] tw-border-solid tw-border-primary"
>
<img
src="./assets/images/people/man.jpg"
class="tw-h-full tw-w-full tw-object-cover"
alt="man"
/>
</div>
<div class="tw-flex tw-flex-col tw-gap-1">
<div class="tw-font-semibold">James</div>
<div class="tw-text-[#4b4b4b]">app, cto</div>
</div>
</div>
<p class="tw-mt-4 tw-italic tw-text-gray-600">
Lorem ipsum dolor sit amet, consectetur adipisicing
elit. Fuga accusamus non enim debitis rem neque beatae
explicabo corrupti porro ullam?
</p>
</div>
<div
class="tw-flex tw-h-fit tw-w-[350px] tw-break-inside-avoid tw-flex-col tw-rounded-lg tw-p-4 tw-shadow-lg max-lg:tw-w-[320px]"
>
<div class="tw-flex tw-place-items-center tw-gap-3">
<div
class="tw-h-[50px] tw-w-[50px] tw-overflow-hidden tw-rounded-full tw-border-[2px] tw-border-solid tw-border-primary"
>
<img
src="./assets/images/people/man2.jpg"
class="tw-h-full tw-w-full tw-object-cover"
alt="man"
/>
</div>
<div class="tw-flex tw-flex-col tw-gap-1">
<div class="tw-font-semibold">Ron</div>
<div class="tw-text-[#4b4b4b]">
marketplace, cto
</div>
</div>
</div>
<p class="tw-mt-4 tw-italic tw-text-gray-600">
Lorem ipsum dolor sit amet, consectetur adipisicing
elit. Fuga accusamus non enim debitis rem neque beatae
explicabo corrupti porro ullam?
</p>
</div>
</div>
</section>
<section
class="tw-mt-5 tw-flex tw-w-full tw-flex-col tw-place-items-center tw-p-[2%]"
id="pricing"
>
<h3
class="tw-text-3xl tw-font-medium tw-text-primary max-md:tw-text-2xl"
>
Simple pricing
</h3>
<!-- pricing -->
<div
class="tw-mt-10 tw-flex tw-flex-wrap tw-place-content-center tw-gap-8 max-lg:tw-flex-col"
>
<div
class="tw-flex tw-w-[380px] tw-flex-col tw-place-items-center tw-gap-2 tw-rounded-lg tw-p-8 tw-shadow-xl max-lg:tw-w-[320px]"
>
<h3 class="">
<span class="tw-text-5xl tw-font-semibold">$9</span>
<span class="tw-text-2xl tw-text-gray-600">/mo</span>
</h3>
<p class="tw-mt-3 tw-text-center tw-text-gray-600">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Ab, explicabo!
</p>
<hr />
<ul
class="tw-mt-4 tw-flex tw-flex-col tw-gap-2 tw-text-center tw-text-lg tw-text-gray-600"
>
<li>Lorem ipsum dolor sit amet.</li>
<li>Lorem, ipsum.</li>
<li>Lorem, ipsum dolor.</li>
<li>Lorem ipsum dolor sit.</li>
</ul>
<a
href="http://"
class="btn tw-mt-8 !tw-w-full tw-transition-transform tw-duration-[0.3s] hover:tw-scale-x-[1.02]"
>
Get now
</a>
</div>
<div
class="tw-flex tw-w-[380px] tw-flex-col tw-place-items-center tw-gap-2 tw-rounded-lg tw-border-2 tw-border-primary tw-p-8 tw-shadow-xl max-lg:tw-w-[320px]"
>
<h3 class="">
<span class="tw-text-5xl tw-font-semibold">$19</span>
<span class="tw-text-2xl tw-text-gray-600">/mo</span>
</h3>
<p class="tw-mt-3 tw-text-center tw-text-gray-600">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Ab, explicabo!
</p>
<hr />
<ul
class="tw-mt-4 tw-flex tw-flex-col tw-gap-2 tw-text-center tw-text-lg tw-text-gray-600"
>
<li>Lorem ipsum dolor sit amet.</li>
<li>Lorem, ipsum.</li>
<li>Lorem, ipsum dolor.</li>
<li>Lorem ipsum dolor sit.</li>
</ul>
<a
href="http://"
class="btn tw-mt-8 !tw-w-full tw-transition-transform tw-duration-[0.3s] hover:tw-scale-x-[1.02]"
>
Get now
</a>
</div>
<div
class="tw-flex tw-w-[380px] tw-flex-col tw-place-items-center tw-gap-2 tw-rounded-lg tw-p-8 tw-shadow-xl max-lg:tw-w-[320px]"
>
<h3 class="">
<span class="tw-text-5xl tw-font-semibold">$49</span>
<span class="tw-text-2xl tw-text-gray-600">/mo</span>
</h3>
<p class="tw-mt-3 tw-text-center tw-text-gray-600">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Ab, explicabo!
</p>
<hr />
<ul
class="tw-mt-4 tw-flex tw-flex-col tw-gap-2 tw-text-center tw-text-lg tw-text-gray-600"
>
<li>Lorem ipsum dolor sit amet.</li>
<li>Lorem, ipsum.</li>
<li>Lorem, ipsum dolor.</li>
<li>Lorem ipsum dolor sit.</li>
</ul>
<a
href="http://"
class="btn tw-mt-8 !tw-w-full tw-transition-transform tw-duration-[0.3s] hover:tw-scale-x-[1.02]"
>
Get now
</a>
</div>
</div>
</section>
<section
class="tw-mt-5 tw-flex tw-w-full tw-flex-col tw-place-items-center tw-p-[2%]"
id="pricing"
>
<h3
class="tw-text-3xl tw-font-medium tw-text-primary max-md:tw-text-2xl"
>
Read more
</h3>
<!-- pricing -->
<div
class="tw-mt-10 tw-flex tw-flex-wrap tw-place-content-center tw-gap-8 max-lg:tw-flex-col"
>
<a
href=""
class="tw-flex tw-h-[300px] tw-w-[350px] tw-flex-col tw-place-items-center tw-gap-2 tw-overflow-clip tw-rounded-lg tw-p-2 tw-shadow-xl max-lg:tw-w-[300px]"
>
<div
class="tw-h-[200px] tw-w-full tw-overflow-hidden tw-rounded-md"
>
<img
src="./assets/images/home/sample.jpg"
alt="article image"
class="tw-h-full tw-w-full tw-object-cover"
srcset=""
/>
</div>
<h3 class="tw-text-3xl tw-font-semibold max-md:tw-text-2xl">
Article 1
</h3>
<p class="tw-mt-2 tw-text-center tw-text-gray-600">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Ab, explicabo!
</p>
</a>
<a
href=""
class="tw-flex tw-h-[300px] tw-w-[350px] tw-flex-col tw-place-items-center tw-gap-2 tw-overflow-clip tw-rounded-lg tw-p-2 tw-shadow-xl max-lg:tw-w-[300px]"
>
<div
class="tw-h-[200px] tw-w-full tw-overflow-hidden tw-rounded-md"
>
<img
src="./assets/images/home/sample.jpg"
alt="article image"
class="tw-h-full tw-w-full tw-object-cover"
srcset=""
/>
</div>
<h3 class="tw-text-3xl tw-font-semibold max-md:tw-text-2xl">
Article 2
</h3>
<p class="tw-mt-2 tw-text-center tw-text-gray-600">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Ab, explicabo!
</p>
</a>
<a
href=""
class="tw-flex tw-h-[300px] tw-w-[350px] tw-flex-col tw-place-items-center tw-gap-2 tw-overflow-clip tw-rounded-lg tw-p-2 tw-shadow-xl max-lg:tw-w-[300px]"
>
<div
class="tw-h-[200px] tw-w-full tw-overflow-hidden tw-rounded-md"
>
<img
src="./assets/images/home/sample.jpg"
alt="article image"
class="tw-h-full tw-w-full tw-object-cover"
srcset=""
/>
</div>
<h3 class="tw-text-3xl tw-font-semibold max-md:tw-text-2xl">
Article 3
</h3>
<p class="tw-mt-2 tw-text-center tw-text-gray-600">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Ab, explicabo!
</p>
</a>
</div>
</section>
<section
class="tw-flex tw-w-full tw-flex-col tw-place-content-center tw-place-items-center tw-gap-[10%] tw-p-[5%] tw-px-[10%]"
>
<div
class="tw-flex tw-w-full tw-flex-col tw-place-content-center tw-place-items-center tw-gap-3"
>
<h2 class="tw-text-2xl tw-text-primary max-md:tw-text-xl">
Special Newsletter signup
</h2>
<h2 class="tw-text-xl max-md:tw-text-lg">
Keep yourself updated
</h2>
<div
class="tw-flex tw-h-[60px] tw-place-items-center tw-gap-2 tw-overflow-hidden tw-p-2"
>
<input
type="email"
class="input tw-h-full tw-w-full tw-p-2 tw-outline-none"
placeholder="email"
/>
<a
class="btn tw-transition-colors tw-duration-[0.3s]"
href=""
>
Signup
</a>
</div>
</div>
</section>
<footer
class="tw-mt-auto tw-flex tw-w-full tw-place-content-around tw-gap-3 tw-p-[5%] tw-px-[10%] tw-text-black max-md:tw-flex-col"
>
<div
class="tw-flex tw-h-full tw-w-[250px] tw-flex-col tw-place-items-center tw-gap-6 max-md:tw-w-full"
>
<img
src="./assets/logo.png"
alt="logo"
srcset=""
class="tw-max-w-[120px]"
/>
<div>
2 Lord Edward St,
<br />
D02 P634,
<br />
United Kingdom
</div>
<div class="tw-mt-3 tw-text-lg tw-font-semibold">Follow us</div>
<div class="tw-flex tw-gap-4 tw-text-2xl">
<a href="" aria-label="Facebook">
<i class="bi bi-facebook"></i>
</a>
<a
href="https://twitter.com/@pauls_freeman"
aria-label="Twitter"
>
<i class="bi bi-twitter"></i>
</a>
<a
href="https://instagram.com/"
class="tw-h-[40px] tw-w-[40px]"
aria-label="Instagram"
>
<i class="bi bi-instagram"></i>
</a>
</div>
</div>
<div class="tw-flex tw-h-full tw-w-[250px] tw-flex-col tw-gap-4">
<h2 class="tw-text-3xl max-md:tw-text-xl">Resources</h2>
<div class="tw-flex tw-flex-col tw-gap-3 max-md:tw-text-sm">
<a href="" class="footer-link">About us</a>
<a href="" class="footer-link">FAQ</a>
<a href="" class="footer-link">Contact Us</a>
<a href="" class="footer-link">Blogs</a>
<a href="" class="footer-link">Privacy policy</a>
</div>
</div>
</footer>
</body>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.0/gsap.min.js"
integrity="sha512-B1lby8cGcAUU3GR+Fd809/ZxgHbfwJMp0jLTVfHiArTuUt++VqSlJpaJvhNtRf3NERaxDNmmxkdx2o+aHd4bvw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.0/ScrollTrigger.min.js"
integrity="sha512-AY2+JxnBETJ0wcXnLPCcZJIJx0eimyhz3OJ55k2Jx4RtYC+XdIi2VtJQ+tP3BaTst4otlGG1TtPJ9fKrAUnRdQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script src="./index.js"></script>
</html>