-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
973 lines (943 loc) · 41.5 KB
/
index.html
File metadata and controls
973 lines (943 loc) · 41.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
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
<!doctype html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Checki - Check your creative assets in Slack</title>
<meta name="description" content="AIMass Tailwind based SASS Template" />
<!-- Favicon -->
<link rel="icon" href="assets/img/favicon.png" />
<!-- Icon Font -->
<link
rel="stylesheet"
href="assets/fonts/iconfonts/font-awesome/stylesheet.css"
/>
<!-- Site font -->
<link rel="stylesheet" href="assets/fonts/webfonts/inter/stylesheet.css" />
<link
rel="stylesheet"
href="assets/fonts/webfonts/plus-jakarta-sans/stylesheet.css"
/>
<!-- Vendor CSS -->
<link rel="stylesheet" href="assets/css/vendors/swiper-bundle.min.css" />
<link rel="stylesheet" href="assets/css/vendors/jos.css" />
<link rel="stylesheet" href="assets/css/vendors/menu.css" />
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/custom.css" />
<!-- Development css -->
<link href="assets/css/style.css" rel="stylesheet" />
<!-- Production css -->
<!-- <link rel="stylesheet" href="assets/css/style.min.css"> -->
</head>
<body>
<div class="page-wrapper relative z-[1] bg-white">
<!--...::: Header Start :::... -->
<header
class="site-header site-header--absolute is--white py-3"
id="sticky-menu"
>
<div class="container-default">
<div class="flex items-center justify-between gap-x-8">
<!-- Header Logo -->
<a href="index.html" class="">
<img
src="assets/img/logo.png"
alt="Masco"
width="109"
height="24"
/>
</a>
<!-- Header Logo -->
<!-- Header Navigation -->
<div class="menu-block-wrapper">
<div class="menu-overlay"></div>
<nav class="menu-block" id="append-menu-header">
<div class="mobile-menu-head">
<div class="go-back">
<i class="fa-solid fa-angle-left"></i>
</div>
<div class="current-menu-title"></div>
<div class="mobile-menu-close">×</div>
</div>
<ul class="site-menu-main">
<li class="nav-item nav-item-has-children">
<a href="index.html" class="nav-link-item drop-trigger"
>Home</a
>
</li>
<li class="nav-item nav-item-has-children">
<a
href="#section-features"
class="nav-link-item drop-trigger"
>Features</a
>
</li>
<li class="nav-item nav-item-has-children">
<a href="#section-about" class="nav-link-item drop-trigger"
>About</a
>
</li>
<li class="nav-item nav-item-has-children">
<a
href="#section-pricing"
class="nav-link-item drop-trigger"
>Pricing</a
>
</li>
</ul>
</nav>
</div>
<!-- Header Navigation -->
<!-- Header User Event -->
<div class="flex items-center gap-6">
<!-- <a href="login.html" class="btn-text hidden hover:text-ColorPurple sm:inline-block">Login</a> -->
<a
href="#"
class="btn-text hidden hover:text-ColorPurple sm:inline-block"
>Coming Soon</a
>
<!-- <a href="signup.html" class="btn is-black btn-animation group hidden rounded sm:inline-block"><span>Sign up free</span></a> -->
<!-- Responsive Offcanvas Menu Button -->
<div class="block lg:hidden">
<button id="openBtn" class="hamburger-menu mobile-menu-trigger">
<span></span>
<span></span>
<span></span>
</button>
</div>
</div>
<!-- Header User Event -->
</div>
</div>
</header>
<!--...::: Header End :::... -->
<main class="main-wrapper relative overflow-hidden">
<!--...::: Hero Section Start :::... -->
<section class="section-hero">
<!-- Section Space -->
<div
class="pb-20 pt-28 md:pt-36 lg:pb-[100px] lg:pt-[150px] xxl:pb-[120px] xxl:pt-[185px]"
>
<!-- Section Container -->
<div class="container-default">
<!-- Hero Area -->
<div
class="grid items-center gap-12 lg:grid-cols-[1fr,minmax(0,_0.8fr)] lg:gap-[50px]"
>
<!-- Hero Content Block -->
<div class="jos mx-auto max-w-[500px] lg:mx-0 lg:max-w-none">
<div
class="flex flex-col items-center justify-center text-center lg:items-start lg:justify-normal lg:text-left"
>
<h1
class="mb-6 text-4xl font-extrabold leading-[1.11] -tracking-[1px] md:text-5xl lg:text-6xl xl:text-7xl xxl:text-[90px]"
>
Get any marketing data, in seconds, right in slack
</h1>
<p class="mb-10 max-w-[624px] xl:mb-[50px]">
Checki is a slack assistant that can answer any question
about your marketing data, visualise it, and even generate
reports for you.
</p>
<div
class="mb-6 flex flex-wrap justify-center gap-5 sm:justify-normal"
>
<a
href=""
class="btn is-red btn-animation is-large inline-block rounded"
><span>Get started for free</span></a
>
</div>
<!-- <p class="flex gap-[10px] text-base font-semibold">
<img
src="assets/img/icons/icon-green-star.svg"
alt="icon-green-star"
width="25"
height="24"
/>
Rated 4.9/5 - from over 600 reviews
</p> -->
</div>
</div>
<!-- Hero Content Block -->
<!-- Hero Image Block -->
<div class="jos">
<div
class="relative mx-auto h-auto max-w-[280px] sm:max-w-[500px] lg:ml-auto lg:mr-0"
>
<!-- Hero Main Image -->
<img
src="assets/img/th-2/hero-img.png"
alt="hero-img"
width="499"
height="505"
/>
<!-- Hero Avatar Image -->
<img
src="assets/img/th-2/hero-avatar-img-1.png"
alt="hero-avatar-img-1"
width="70"
height="70"
class="absolute -left-[35px] top-[150px] h-[70px] w-[70px] rounded-[50%]"
/>
<!-- Hero Avatar Image -->
<img
src="assets/img/th-2/hero-avatar-img-2.png"
alt="hero-avatar-img-2"
width="78"
height="78"
class="absolute -right-[39px] bottom-10 h-[78px] w-[78px] rounded-[50%]"
/>
<!-- Hero Shape -->
<img
src="assets/img/elements/hero-2-shape-1.svg"
alt="hero-2-shape-1"
width="90"
height="91"
class="absolute -right-[45px] -top-[70px]"
/>
</div>
</div>
<!-- Hero Image Block -->
</div>
<!-- Hero Area -->
</div>
<!-- Section Container -->
</div>
<!-- Section Space -->
</section>
<!--...::: Hero Section End :::... -->
<!--...::: Features Section Start :::... -->
<section class="section-features" id="section-features">
<!-- Section Background -->
<div class="bg-ColorRed/5">
<!-- Section Space -->
<div class="section-space">
<!-- Section Container -->
<div class="container-default">
<!-- Section Content Wrapper -->
<div class="jos mb-[60px] xl:mb-20">
<!-- Section Content Block -->
<div class="mx-auto max-w-[636px]">
<h2 class="text-center">
Save hours of manual work a week (or day)
</h2>
</div>
<!-- Section Content Block -->
</div>
<!-- Section Content Wrapper -->
<!-- Feature List -->
<div class="grid gap-6 md:grid-cols-2 lg:grid-cols-3">
<!-- Feature Item -->
<div class="jos" data-jos_delay="0">
<div class="hover-solid-shadow h-full">
<div
class="h-full rounded-[10px] border-2 border-ColorBlack bg-white p-[30px]"
>
<img
src="assets/img/icons/lightning-fast.svg"
alt="icon-duotone-translate"
width="60"
height="60"
class="mb-[30px] h-[60px] w-auto"
/>
<div
class="mb-4 text-xl font-semibold leading-[1.33] -tracking-[0.5px] text-ColorBlack lg:text-2xl"
>
Always up to date
</div>
<p>
Checki always knows the latest data from Facebook,
Google and Shopify, with more being added every week.
</p>
</div>
</div>
</div>
<!-- Feature Item -->
<!-- Feature Item -->
<div class="jos" data-jos_delay="0.3">
<div class="hover-solid-shadow h-full">
<div
class="h-full rounded-[10px] border-2 border-ColorBlack bg-white p-[30px]"
>
<img
src="assets/img/icons/icon-duotone-user-list.svg"
alt="icon-duotone-user-list"
width="60"
height="60"
class="mb-[30px] h-[60px] w-auto"
/>
<div
class="mb-4 text-xl font-semibold leading-[1.33] -tracking-[0.5px] text-ColorBlack lg:text-2xl"
>
One of the team
</div>
<p>
Anyone in your team can get Checki's help, no matter
their technical skills.
</p>
</div>
</div>
</div>
<!-- Feature Item -->
<!-- Feature Item -->
<div class="jos" data-jos_delay="0.6">
<div class="hover-solid-shadow h-full">
<div
class="h-full rounded-[10px] border-2 border-ColorBlack bg-white p-[30px]"
>
<img
src="assets/img/icons/pay-as-you-go.svg"
alt="icon-duotone-private-message"
width="60"
height="60"
class="mb-[30px] h-[60px] w-auto"
/>
<div
class="mb-4 text-xl font-semibold leading-[1.33] -tracking-[0.5px] text-ColorBlack lg:text-2xl"
>
Visualise your data
</div>
<p>
Checki doesn't just write things down, it generates
any chart you want on the fly.
</p>
</div>
</div>
</div>
<!-- Feature Item -->
</div>
<!-- Feature List -->
</div>
<!-- Section Container -->
</div>
<!-- Section Space -->
</div>
<!-- Section Background -->
</section>
<!--...::: Features Section End :::... -->
<!--...::: Video Section Start :::... -->
<section class="section-video">
<!-- Section Space -->
<div class="section-space">
<!-- Section Container -->
<div class="container-default">
<!-- Section Content Wrapper -->
<div class="jos mb-[60px] xl:mb-20">
<!-- Section Content Block -->
<div class="mx-auto max-w-[636px]">
<h2 class="mb-5 text-center">Checki in action</h2>
<p class="text-center">
Empower your team to easily check creative assets in Slack
</p>
</div>
<!-- Section Content Block -->
</div>
<!-- Section Content Wrapper -->
<!-- Video Block -->
<div class="jos">
<div class="relative flex items-center justify-center">
<img
src="assets/img/th-2/video-img.jpg"
alt="video-img"
width="1295"
height="699"
class="h-auto w-full"
/>
<a
data-fslightbox="gallery"
href="https://www.youtube.com/watch?v=3nQNiWdeH2Q"
class="group group absolute flex h-20 w-20 items-center justify-center rounded-[50%] bg-white text-ColorPurple xl:h-[120px] xl:w-[120px]"
aria-label="video-play"
>
<span
class="text-2xl transition-all duration-300 ease-linear group-hover:scale-110"
><i class="fa-solid fa-play"></i
></span>
</a>
</div>
</div>
<!-- Video Block -->
</div>
<!-- Section Container -->
</div>
<!-- Section Space -->
</section>
<!--...::: Video Section End :::... -->
<!--...::: Content Section Start :::... -->
<section class="section-content" id="section-about">
<!-- Section Spacer -->
<div class="section-space">
<!-- Section Container -->
<div class="container-custom">
<div
class="flex flex-col gap-y-20 lg:gap-y-[100px] xl:gap-y-[120px]"
>
<!-- Content Area Single -->
<div
class="grid items-center gap-10 lg:grid-cols-2 lg:gap-24 xl:grid-cols-[1fr_minmax(0,_1.2fr)] xl:gap-[148px]"
>
<!-- Content Block Left -->
<div class="jos lg:order-2" data-jos_animation="fade-left">
<!-- Section Wrapper -->
<div>
<!-- Section Block -->
<div class="mb-5">
<h2>Privacy and security as a priority</h2>
</div>
<!-- Section Block -->
</div>
<!-- Section Wrapper -->
<p>
We take privacy and security as a priority. Checki bot
fully complies with Slack's strict privacy standards and
GDPR regulations.
</p>
<div
class="my-8 h-[1px] w-full bg-ColorBlack/10 lg:my-[50px]"
></div>
<ul
class="flex flex-col gap-5 font-semibold text-ColorBlack"
>
<li>
<span class="mr-3 inline-block text-xl"
><i class="fa-solid fa-badge-check"></i
></span>
All files are deleted from our systems after processing
</li>
<li>
<span class="mr-3 inline-block text-xl"
><i class="fa-solid fa-badge-check"></i
></span>
All data is encrypted at rest and in transit
</li>
</ul>
</div>
<!-- Content Block Left -->
<!-- Content Block Right -->
<div
class="jos relative lg:order-1"
data-jos_animation="fade-right"
>
<!-- Content Image -->
<img
src="assets/img/th-2/content-img-1.png"
alt="content-img-1"
width="512"
height="456"
class="h-auto w-full"
/>
</div>
<!-- Content Block Right -->
</div>
<!-- Content Area Single -->
<!-- Content Area Single -->
<div
class="grid items-center gap-10 lg:grid-cols-2 lg:gap-24 xl:grid-cols-[1.4fr_minmax(0,_1fr)] xl:gap-[209px]"
>
<!-- Content Block Left -->
<div class="jos" data-jos_animation="fade-right">
<!-- Section Wrapper -->
<div>
<!-- Section Block -->
<div class="mb-5">
<h2>Need to generate a report? Checki can do that</h2>
</div>
<!-- Section Block -->
</div>
<!-- Section Wrapper -->
<p>
Checki can update your existing reports, or generate new
ones, on the fly or on a schedule.
</p>
<div class="mt-[50px]">
<a
href=""
class="btn is-black btn-animation is-large inline-block rounded"
><span>Learn more</span></a
>
</div>
</div>
<!-- Content Block Left -->
<!-- Content Block Right -->
<div class="jos relative" data-jos_animation="fade-left">
<!-- Content Image -->
<img
src="assets/img/th-2/content-img-2.png"
alt="content-img-2"
width="451"
height="456"
class="h-auto w-full"
/>
</div>
<!-- Content Block Right -->
</div>
<!-- Content Area Single -->
</div>
</div>
<!-- Section Container -->
</div>
<!-- Section Spacer -->
</section>
<!--...::: Content Section End :::... -->
<!--...::: Pricing Section Start :::... -->
<section class="section-pricing" id="section-pricing">
<!-- Section Background -->
<div class="bg-ColorRed/5">
<!-- Section Space -->
<div class="section-space">
<!-- Section Container -->
<div class="container-default">
<!-- Section Content Wrapper -->
<div class="jos">
<!-- Section Content Block -->
<div class="mx-auto max-w-[600px]">
<div class="mb-5">
<h2 class="text-center">
Simple pricing, no hidden costs
</h2>
</div>
</div>
<!-- Section Content Block -->
</div>
<!-- Section Content Wrapper -->
<!-- Pricing Area -->
<div>
<!-- Pricing List -->
<div class="grid gap-6 md:grid-cols-2 lg:grid-cols-3">
<!-- Pricing Item - Basic -->
<div
class="jos"
data-jos_animation="flip-left"
data-jos_delay="0"
>
<div class="hover-solid-shadow">
<div
class="rounded-[10px] border-2 border-ColorBlack bg-white p-7 xl:p-10"
>
<!-- Pricing Content Top -->
<div class="text-center">
<span class="text-xl font-bold text-ColorBlack"
>Standard</span
>
<div
class="month text-[28px] font-normal leading-[2.85] text-ColorBlack"
>
$<span
class="text-[48px] font-bold leading-[1.3] xl:text-[58px]"
>99</span
>/month
</div>
<span class="text-sm text-ColorBlack/70"
>Perfect for solopreneurs</span
>
</div>
<!-- Pricing Content Top -->
<div class="my-10 h-px w-full bg-ColorBlack/10"></div>
<!-- Pricing Data list -->
<ul
class="flex flex-col gap-y-6 text-base font-semibold text-ColorBlack xl:px-[18px]"
>
<li class="flex gap-x-3">
<span class="text-xl"
><i class="fa-solid fa-star"></i
></span>
Access to all data sources, including Facebook,
google and Shopify.
</li>
<li class="flex gap-x-3">
<span class="text-xl"
><i class="fa-solid fa-star"></i
></span>
1 report a month
</li>
<li class="flex gap-x-3">
<span class="text-xl"
><i class="fa-solid fa-star"></i
></span>
Thread replies limited to 3 messages
</li>
</ul>
<div class="mt-10 flex justify-center">
<button
class="btn is-black is-large group w-full rounded-[3px] border-2"
>
Get Started
</button>
</div>
</div>
</div>
</div>
<!-- Pricing Item - Pro -->
<div
class="jos"
data-jos_animation="flip-left"
data-jos_delay="0.3"
>
<div class="hover-solid-shadow">
<div
class="rounded-[10px] border-2 border-ColorRed bg-white p-7 xl:p-10"
>
<!-- Pricing Content Top -->
<div class="text-center">
<span class="text-xl font-bold text-ColorBlack"
>Pro</span
>
<div
class="month text-[28px] font-normal leading-[2.85] text-ColorBlack"
>
$<span
class="text-[48px] font-bold leading-[1.3] xl:text-[58px]"
>399</span
>/month
</div>
<span class="text-sm text-ColorBlack/70"
>Most popular</span
>
</div>
<!-- Pricing Content Top -->
<div class="my-10 h-px w-full bg-ColorBlack/10"></div>
<!-- Pricing Data list -->
<ul
class="flex flex-col gap-y-6 text-base font-semibold text-ColorBlack xl:px-[18px]"
>
<li class="flex gap-x-3">
<span class="text-xl"
><i class="fa-solid fa-star"></i
></span>
Everything in Basic
</li>
<li class="flex gap-x-3">
<span class="text-xl"
><i class="fa-solid fa-star"></i
></span>
Chart generation
</li>
<li class="flex gap-x-3">
<span class="text-xl"
><i class="fa-solid fa-star"></i
></span>
Thread replies limited to 7 messages
</li>
<li class="flex gap-x-3">
<span class="text-xl"
><i class="fa-solid fa-star"></i
></span>
Up to 50 reports
</li>
</ul>
<div class="mt-10 flex justify-center">
<button
class="btn is-red is-large group w-full rounded-[3px] border-2"
>
Get Started
</button>
</div>
</div>
</div>
</div>
<!-- Pricing Item - Enterprise -->
<div
class="jos"
data-jos_animation="flip-left"
data-jos_delay="0.6"
>
<div class="hover-solid-shadow">
<div
class="rounded-[10px] border-2 border-ColorBlack bg-white p-7 xl:p-10"
>
<!-- Pricing Content Top -->
<div class="text-center">
<span class="text-xl font-bold text-ColorBlack"
>Enterprise</span
>
<div
class="month text-[28px] font-normal leading-[2.85] text-ColorBlack"
>
Custom
</div>
<span class="text-sm text-ColorBlack/70"
>For larger organizations</span
>
</div>
<!-- Pricing Content Top -->
<div class="my-10 h-px w-full bg-ColorBlack/10"></div>
<!-- Pricing Data list -->
<ul
class="flex flex-col gap-y-6 text-base font-semibold text-ColorBlack xl:px-[18px]"
>
<li class="flex gap-x-3">
<span class="text-xl"
><i class="fa-solid fa-star"></i
></span>
Everything in Pro
</li>
<li class="flex gap-x-3">
<span class="text-xl"
><i class="fa-solid fa-star"></i
></span>
Unlimited history
</li>
<li class="flex gap-x-3">
<span class="text-xl"
><i class="fa-solid fa-star"></i
></span>
24/7 dedicated support
</li>
<li class="flex gap-x-3">
<span class="text-xl"
><i class="fa-solid fa-star"></i
></span>
Custom integrations
</li>
</ul>
<div class="mt-10 flex justify-center">
<button
class="btn is-black is-large group w-full rounded-[3px] border-2"
>
Contact Sales
</button>
</div>
</div>
</div>
</div>
</div>
<!-- Pricing List -->
</div>
<!-- Pricing Area -->
</div>
<!-- Section Container -->
</div>
<!-- Section Space -->
</div>
<!-- Section Background -->
</section>
<!--...::: Pricing Section End :::... -->
<!--...::: CTA Section Start :::... -->
<section class="section-cta">
<!-- Section Background -->
<div class="relative bg-ColorRed">
<!-- Section Space -->
<div class="py-[60px] lg:py-20 xl:py-[100px]">
<!-- Section Container -->
<div class="container-default">
<!-- Section Content Wrapper -->
<div class="jos mb-[50px]">
<!-- Section Content Block -->
<div class="mx-auto max-w-[700px]">
<h2 class="text-center text-white">
Empower your team with Checki in just 5 minutes.
</h2>
</div>
<!-- Section Content Block -->
</div>
<!-- Section Content Wrapper -->
<div class="jos flex justify-center">
<a
href=""
class="btn is-black btn-animation is-large inline-block rounded"
>
<span>Add to Slack for free</span>
</a>
</div>
</div>
<!-- Section Container -->
</div>
<!-- Section Space -->
<!-- Newsletter Shape 1 -->
<img
src="assets/img/elements/flower-shape-1.svg"
alt="flower-shape-1"
width="92"
height="116"
class="absolute left-[152px] top-[44px] hidden md:block"
/>
<!-- Newsletter Shape 2 -->
<img
src="assets/img/elements/flower-shape-2.svg"
alt="flower-shape-2"
width="129"
height="164"
class="absolute bottom-0 right-[57px] hidden md:block"
/>
</div>
<!-- Section Background -->
</section>
<!--...::: CTA Section End :::... -->
</main>
<!--...::: Footer Section Start :::... -->
<footer class="section-footer">
<div class="bg-white">
<!-- Footer Area Center -->
<div class="text-ColorBlack">
<!-- Footer Center Spacing -->
<div class="py-[60px] lg:py-20">
<!-- Section Container -->
<div class="container-default">
<!-- Footer Widget List -->
<div
class="grid gap-x-4 lg:gap-x-8 gap-y-10 sm:grid-cols-2 md:grid-cols-4 lg:grid-cols-[2fr_1fr_1fr] xl:gap-x-12"
>
<!-- Footer Widget Item -->
<div
class="flex flex-col gap-y-7 md:col-span-4 lg:col-span-1"
>
<!-- Footer Logo -->
<a href="index.html">
<img
src="assets/img/logo.png"
alt="Masco"
width="109"
height="24"
/>
</a>
<!-- Footer Content -->
<div>
<!-- Footer About Text -->
<div class="lg:max-w-[320px]">
Easily, quickly check your creative assets in Slack.
Built with ❤️ by Sonder Digital PTY LTD
</div>
<!-- Footer Mail -->
<a
href="mailto:yourdemo@email.com"
class="my-6 block underline-offset-4 transition-all duration-300 hover:underline"
>checki@aronbury.com</a
>
<!-- Footer Social Link -->
<div class="flex flex-wrap gap-5">
<a
href="https://twitter.com"
target="_blank"
rel="noopener noreferrer"
class="flex h-[30px] w-[30px] items-center justify-center rounded-[50%] bg-ColorBlack/10 text-sm text-ColorBlack transition-all duration-300 hover:bg-ColorBlack hover:text-white"
aria-label="twitter"
>
<i class="fa-brands fa-x-twitter"></i>
</a>
<a
href="https://www.facebook.com/"
target="_blank"
rel="noopener noreferrer"
class="flex h-[30px] w-[30px] items-center justify-center rounded-[50%] bg-ColorBlack/10 text-sm text-ColorBlack transition-all duration-300 hover:bg-ColorBlack hover:text-white"
aria-label="facebook"
>
<i class="fa-brands fa-facebook-f"></i>
</a>
<a
href="https://www.instagram.com/"
target="_blank"
rel="noopener noreferrer"
class="flex h-[30px] w-[30px] items-center justify-center rounded-[50%] bg-ColorBlack/10 text-sm text-ColorBlack transition-all duration-300 hover:bg-ColorBlack hover:text-white"
aria-label="instagram"
>
<i class="fa-brands fa-instagram"></i>
</a>
<a
href="https://www.github.com/"
target="_blank"
rel="noopener noreferrer"
class="flex h-[30px] w-[30px] items-center justify-center rounded-[50%] bg-ColorBlack/10 text-sm text-ColorBlack transition-all duration-300 hover:bg-ColorBlack hover:text-white"
aria-label="github"
>
<i class="fa-brands fa-github"></i>
</a>
</div>
</div>
<!-- Footer Content -->
</div>
<!-- Footer Widget Item -->
<!-- Footer Widget Item -->
<div
class="flex flex-col gap-y-6 md:col-span-1 lg:col-span-1"
>
<!-- Footer Title -->
<div class="text-xl font-semibold capitalize">
Resources
</div>
<!-- Footer Title -->
<!-- Footer Navbar -->
<ul class="flex flex-col gap-y-[10px] capitalize">
<li>
<a
href="mailto:checki@aronbury.com"
target="_blank"
rel="noopener noreferrer"
class="hover:opcity-100 underline-offset-4 opacity-80 transition-all duration-300 ease-linear hover:underline"
>support</a
>
</li>
<li>
<a
href="https://www.getchecki.com/privacy"
target="_blank"
rel="noopener noreferrer"
class="hover:opcity-100 underline-offset-4 opacity-80 transition-all duration-300 ease-linear hover:underline"
>Privacy policy</a
>
</li>
<li>
<a
href="https://www.getchecki.com/terms"
target="_blank"
rel="noopener noreferrer"
class="hover:opcity-100 underline-offset-4 opacity-80 transition-all duration-300 ease-linear hover:underline"
>Terms & Conditions</a
>
</li>
<li>
<a
href="https://app.getchecki.com/signup"
class="hover:opcity-100 underline-offset-4 opacity-80 transition-all duration-300 ease-linear hover:underline"
>Signup</a
>
</li>
<li>
<a
href="https://app.getchecki.com/login"
class="hover:opcity-100 underline-offset-4 opacity-80 transition-all duration-300 ease-linear hover:underline"
>Login</a
>
</li>
</ul>
</div>
<!-- Footer Widget Item -->
</div>
<!-- Footer Widget List -->
</div>
<!-- Section Container -->
</div>
<!-- Footer Center Spacing -->
</div>
<!-- Footer Area Center -->
<div class="horizontal-line bg-ColorBlack"></div>
<!-- Footer Bottom -->
<div>
<!-- Footer Bottom Spacing -->
<div class="py-[18px]">
<!-- Section Container -->
<div class="container-default">
<div class="text-center">
© Copyright 2025, All Rights Reserved by Sonder Digital
PTY LTD
</div>
</div>
<!-- Section Container -->
</div>
<!-- Footer Bottom Spacing -->
</div>
<!-- Footer Bottom -->
</div>
</footer>
<!--...::: Footer Section End :::... -->
</div>
<!--Vendor js-->
<script src="assets/js/vendors/counterup.js" type="module"></script>
<script src="assets/js/vendors/swiper-bundle.min.js"></script>
<script src="assets/js/vendors/fslightbox.js"></script>
<script src="assets/js/vendors/jos.min.js"></script>
<script src="assets/js/vendors/menu.js"></script>
<!-- Main js -->
<script src="assets/js/main.js"></script>
</body>
</html>