-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1229 lines (1052 loc) · 69 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <!-- <script src="https://cdn.tailwindcss.com"></script> -->
<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=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet">
<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=Bona+Nova+SC:ital,wght@0,400;0,700;1,400&display=swap"
rel="stylesheet">
<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=Preahvihear&display=swap" rel="stylesheet">
<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=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap"
rel="stylesheet">
<script src="https://kit.fontawesome.com/db8c81d236.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="src/output.css">
<link rel="stylesheet" href="img.css">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<link rel="icon" href="logo. png">
<title>Pigeon</title>
</head>
<body class=" text-white ">
<!-- navbar -->
<header class="bg-back1 ">
<nav class="flex justify-between items-center ">
<a href="g" id='brand' class="flex items-center">
<img src='./logo. png' class="w-20">
<span class="font-bold font-display">Pigeon</span>
</a>
<div id="nav-menu " class="hidden md:flex gap-12 ">
<a href="g" class="font-medium hover:text-add">Pricing</a>
<a href="g" class="font-medium hover:text-add">Docs</a>
<a href="g" class="font-medium hover:text-add">About us</a>
<a href="g" class="font-medium hover:text-add">Blog</a>
<a href="g" class="font-medium hover:text-add">Contact</a>
</div>
<!-- login button -->
<button
class=" p-2 hidden md:block gap-2 border border-black bg-primary mx-5 text-black rounded-xl items-center ">
<i class="fa-solid fa-right-to-bracket px-1"></i> Login
</button>
<!-- menu icon -->
<button class=" p-2 md:hidden" onclick="handlemenu()">
<i class="fa-solid fa-bars"></i>
</button>
<!-- for hamburger -->
<div class="hidden md:hidden fixed inset-0 backdrop-blur-md " id="nav-dialog">
<div id="navbar" class="flex justify-between">
<a href="g" id='brand' class="flex items-center">
<img src='./logo. png' class="w-20">
<span class="font-bold font-display">ToDesktop</span>
</a>
<button class=" p-2 md:hidden" onclick="handlemenu()">
<i class="fa-solid fa-xmark"></i </button>
</div>
<div class=" mt-6 text-center ">
<a href="g" class="font-medium block p-3 m-3 rounded-xl hover:bg-slate-800">Pricing</a>
<a href="g" class="font-medium rounded-xl block p-3 m-3 hover:bg-slate-800">Docs</a>
<a href="g" class="font-medium rounded-xl block p-3 m-3 hover:bg-slate-800">About us</a>
<a href="g" class="font-medium rounded-xl block p-3 m-3 hover:bg-slate-800">Blog</a>
<a href="g" class="font-medium rounded-xl block p-3 m-3 hover:bg-slate-800">Contact</a>
<div class="h-[1px] m-5 bg-yellow-50"></div>
<!-- login button -->
</div>
<div class="flex justify-center text-center">
<button class=" items-center p-3 gap-2 border border-black bg-primary text-black rounded-xl ">
<i class="fa-solid fa-right-to-bracket px-1"></i> Login
</button>
</div>
</div>
</nav>
</header>
<main class="bg-gradient-to-l from-gr1 to-gr2">
<!-- main body -->
<div id="hero" class="min-h-screen ">
<div id="hero-container"
class="max-w-5xl mx-auto px-8 pt-4 pb-14 flex flex-col sm:items-center sm:justify-center sm:text-center sm:pt-12 ">
<!-- Version text -->
<div id="version-text"
class="flex items-center my-6 gap-2 border bg-blue-50 border-violet-800 rounded-lg px-3 py-1 w-fit text-gr2 shadow-lg shadow-cyan-500/40 hover:-translate-y-1 transition-all hover:shadow-cyan-500/80 group">
<!-- dot -->
<div class="w-2 h-2 bg-white border rounded-full border-violet-500"> </div>
<p class="text-add">v0.22.0: <span class="text-add font-medium">Find-in-Page bug
fixes
</span> </p>
<i class="fa-solid fa-arrow-right group-hover:translate-x-1 transition-all"></i>
</div>
<div id="feat" class="flex flex-row gap-5 m-3 p-3 text-gray-300/80">
<div class="flex gap-2 items-center">
<i class="fa-solid fa-file-code"></i>
Code Optional
</div>
<div class="flex gap-2 items-center">
<i class="fa-solid fa-hand-back-fist"></i>
Drag & Drop builder
</div>
<div class="flex gap-2 items-center">
<i class="fa-solid fa-laptop-code"></i>
Windows, Mac, Linux
</div>
</div>
<!-- text area -->
<h1 class="text-6xl leading-snug sm:text-7xl">Web app to desktop app in minutes</h1>
<!-- typewriter effect -->
<div class="mt-3 p-3 ">
<h1 class="text-2xl sm:text-3xl sm:mt-4 text-white font-mono"> Hey This is your PIGEON Coder <br />
Features like
<span id='typewriter' class="text-p"></span><span id="cursor"
class=" text-p font-bold animate-pulse-fast">|</span>
</h1>
</div>
<p class=" text-xl font-display mt-3 mb-3 sm:text-2xl sm:text-center sm:m-7 ">Take your web app
codebase and transform it into a cross platform desktop app with native functionaltiy</p>
<!-- 2 buttons -->
<div id="button-container" class="flex flex-col sm:flex-row ">
<button
class="border m-3 p-3 rounded-xl hover:-translate-y-1 transition-all shadow-lg hover:shadow-cyan-500/30 font-bold bg-blue-100 text-teal-800 hover:bg-opacity-70">Download
now</button>
<button
class="border m-3 p-3 rounded-xl hover:-translate-y-1 shadow-lg hover:shadow-cyan-500/30 transition-all font-semibold ">Read
Docs</button>
</div>
</div>
<!-- companies related -->
<div id="companies-container" class="flex flex-col overflow-hidden gap-10">
<div id="companies" class="group text-center space-x-3">
<i class="fa-solid fa-turn-down scale-x-[-1] translate-y-1"></i>
<span class="font-semibold">APPS POWERED BY DESKTOP</span>
<i class="fa-solid fa-turn-down translate-y-1"></i>
</div>
<div id="lines-group" class=" flex flex-col gap-4">
<!-- logo line 1 -->
<div id="line1" class="flex gap-4 w-screen -translate-x-48 transition-transform ease-linear">
<div
class="flex flex-col gap-2 min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl">
<img src="./pngs/pg1.png" class="w-14 h-14 md:w-16 md:h-16 rounded-full ">
<span class="text-[12px] md:text-[16px] font-semibold">GE capitals</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg18.png" class=" w-14 h-14 md:w-16 md:h-16 object-scale-down">
<span class="text-[12px] md:text-[16px] font-semibold"></span>Marlboro
</div>
<div
class="flex flex-col gap-2 min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg9.png" class=" w-14 h-14 md:w-16 md:h-16 object-scale-down">
<span class="text-[12px] md:text-[16px] font-semibold">Toblerone</span>
</div>
<div
class="flex flex-col gap-2 min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg10.png" class=" w-14 h-14 md:w-16 md:h-16 object-scale-down">
<span class="text-[12px] md:text-[16px] font-semibold">In the Box</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg16.png" class=" w-14 h-14 md:w-16 md:h-16 object-fill ">
<span class="text-[12px] md:text-[16px] font-semibold">Bic</span>
</div>
<div
class="flex flex-col gap-2 p-2 min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg12.png" class=" w-14 h-14 md:w-16 md:h-16 object-contain">
<span class="text-[12px] md:text-[16px] font-semibold">Steelcase</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg17.png" class=" w-14 h-14 md:w-16 md:h-16 object-scale-down">
<span class="text-[12px] md:text-[16px] font-semibold"></span>Eire
</div>
<div
class="flex flex-col gap-2 p-2 min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg14.png" class=" w-14 h-14 md:w-16 md:h-16 object-contain">
<span class="text-[12px] md:text-[16px] font-semibold">Chanel</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl">
<img src="./pngs/pg15.jpeg" class="w-14 h-14 md:w-16 md:h-16 ">
<span class="text-[12px] md:text-[16px] font-semibold">Vans</span>
</div>
<div
class="flex flex-col gap-2 p-2 min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg11.png" class=" w-14 h-14 md:w-16 md:h-16 object-contain">
<span class="text-[12px] md:text-[16px] text-center font-semibold">Kampgrounds Of
America</span>
</div>
<div
class="flex flex-col gap-2 p-2 min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg13.jpeg" class=" w-14 h-14 md:w-16 md:h-16 object-contain">
<span class="text-[12px] md:text-[16px] font-semibold">New Balance</span>
</div>
<div
class="flex flex-col gap-2 min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg8.png" class=" w-14 h-14 md:w-16 md:h-16 object-cover">
<span class="text-[12px] md:text-[16px] font-semibold">Petro China</span>
</div>
</div>
<!-- logo line 2 -->
<div id="line2" class="flex gap-4 w-screen -translate-x-36 transition-transform ease-linear">
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl">
<img src="./pngs/pg1.png" class="w-14 h-14 md:w-16 md:h-16 rounded-full ">
<span class="text-[12px] md:text-[16px] font-semibold">GE capitals</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg8.png" class=" w-14 h-14 md:w-16 md:h-16 object-cover">
<span class="text-[12px] md:text-[16px] font-semibold">Petro China</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg16.png" class=" w-14 h-14 md:w-16 md:h-16 object-scale-down">
<span class="text-[12px] md:text-[16px] font-semibold">Bic</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg17.png" class=" w-14 h-14 md:w-16 md:h-16 object-scale-down">
<span class="text-[12px] md:text-[16px] font-semibold">EIRE</span>
</div>
<div
class="flex flex-col p-2 min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg11.png" class=" w-14 h-14 md:w-16 md:h-16 object-contain">
<span class="text-[12px] md:text-[16px] text-center font-semibold">Kampgrounds Of
America</span>
</div>
<div
class="flex flex-col p-2 min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg12.png" class=" w-14 h-14 md:w-16 md:h-16 object-contain">
<span class="text-[12px] md:text-[16px] font-semibold">Steelcase</span>
</div>
<div
class="flex flex-col p-2 min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg13.jpeg" class=" w-14 h-14 md:w-16 md:h-16 object-contain">
<span class="text-[12px] md:text-[16px] font-semibold">New Balance</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg20.png" class=" w-14 h-14 md:w-16 md:h-16 object-cover">
<span class="text-[12px] md:text-[16px] font-semibold">Budweiser</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center p-2 justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg19.png" class=" w-14 h-14 md:w-16 md:h-16 object-scale-down">
<span class="text-[12px] text-center md:text-[16px] font-semibold">System Applications &
Products</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg8.png" class=" w-14 h-14 md:w-16 md:h-16 object-cover">
<span class="text-[12px] md:text-[16px] font-semibold">Petro China</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg9.png" class=" w-14 h-14 md:w-16 md:h-16 object-scale-down">
<span class="text-[12px] md:text-[16px] font-semibold">Toblerone</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg10.png" class=" w-14 h-14 md:w-16 md:h-16 object-scale-down">
<span class="text-[12px] md:text-[16px] font-semibold">In the Box</span>
</div>
</div>
<!-- logo line 3 -->
<div id="line3"
class="flex gap-4 w-screen -translate-x-48 transition-transform ease-linear md:hidden ">
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl">
<img src="./pngs/pg1.jpeg" class="w-14 h-14 md:w-16 md:h-16 rounded-full ">
<span class="text-[12px] md:text-[16px] font-semibold">GE capitals</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg20.png" class=" w-14 h-14 md:w-16 md:h-16 object-cover">
<span class="text-[12px] md:text-[16px] font-semibold">Budweiser</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center p-2 justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg19.png" class=" w-14 h-14 md:w-16 md:h-16 object-scale-down">
<span class="text-[12px] text-center md:text-[16px] font-semibold">System Applications &
Products</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg8.png" class=" w-14 h-14 md:w-16 md:h-16 object-cover">
<span class="text-[12px] md:text-[16px] font-semibold">Petro China</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg9.png" class=" w-14 h-14 md:w-16 md:h-16 object-scale-down">
<span class="text-[12px] md:text-[16px] font-semibold">Toblerone</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg10.png" class=" w-14 h-14 md:w-16 md:h-16 object-scale-down">
<span class="text-[12px] md:text-[16px] font-semibold">In the Box</span>
</div>
<div
class="flex flex-col p-2 min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg18.png" class=" w-14 h-14 md:w-16 md:h-16 object-contain">
<span class="text-[12px] md:text-[16px] font-semibold">Marlboro</span>
</div>
<div
class="flex flex-col p-2 min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg14.png" class=" w-14 h-14 md:w-16 md:h-16 object-contain">
<span class="text-[12px] md:text-[16px] font-semibold">Chanel</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl">
<img src="./pngs/pg1.png" class="w-14 h-14 md:w-16 md:h-16 rounded-full ">
<span class="text-[12px] md:text-[16px] font-semibold">GE capitals</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 ">
<img src="./pngs/pg15.jpeg" class=" w-14 h-14 md:w-16 md:h-16 object-fill">
<span class="text-[12px] md:text-[16px] font-semibold">VANS</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg16.png" class=" w-14 h-14 md:w-16 md:h-16 object-scale-down">
<span class="text-[12px] md:text-[16px] font-semibold">Bic</span>
</div>
<div
class="flex flex-col min-w-24 min-h-24 items-center justify-center md:min-h-32 md:min-w-32 border border-gray-400 rounded-2xl ">
<img src="./pngs/pg17.png" class=" w-14 h-14 md:w-16 md:h-16 object-scale-down">
<span class="text-[12px] md:text-[16px] font-semibold">EIRE</span>
</div>
</div>
</div>
</div>
</div>
<!-- step by step - how it works -->
<div id="Steps" class=" mx-auto px-6 py-12 max-w-7xl mt-16 lg:px-5 lg:m-18 lg:flex-row">
<h2 class="font-Heading mb-14 text-5xl md:font-semibold"> How it Works</h2>
<!-- 1st box -->
<div id="step1"
class="rounded-xl mb-9 backdrop-blur-md border px-8 py-10 flex flex-col bg-gr1/40 shadow-md shadow-white/30 lg:flex-row hover:shadow-lg ">
<div class="flex flex-col gap-6 lg:w-1/2 ">
<span
class="border border-violet-800 bg-blue-100 text-teal-800 font-medium w-fit font-headR px-3 py-1 rounded-lg">Step
1</span>
<h3 class="font-headR text-3xl md:text-4xl ">Bootstrap straight from your web app</h3>
<p class=" font-display font-light ">Copy and Paste your web app url into Pigeon.<br />Customize
your app design, app icon
and window frame and UI with no Code </p>
<!-- links -->
<ul class="grid font-display grid-cols-2 gap-3">
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 "
href="">Multiple Windows</a>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 " href="">Offline
Support</a>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 " href="">Launch
on Startup</a>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 "
href="">Menubar/tray menus</a>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 "
href="">Customisable menus</a>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 " href="">Tabs
(Mac only)</a>
</li>
</ul>
</div>
<span class=" mx-auto pt-12 m-3 animate-bounce">
<img src="./pngs/asset.png.png" class="object-contain" alt="img">
</span>
</div>
<!-- 2nd box -->
<div id="step2"
class="rounded-xl mb-9 backdrop-blur-md border px-8 py-10 flex flex-col bg-gr1/40 shadow-md shadow-white/30 lg:flex-row hover:shadow-lg ">
<div class="flex flex-col gap-6 ">
<span
class="border border-violet-800 bg-blue-100 text-teal-800 font-medium w-fit font-headR px-3 py-1 rounded-lg">Step
2</span>
<h3 class="font-headR text-3xl md:text-4xl ">Add desktop code to customise your web app</h3>
<p class=" font-display font-light ">No need to create a new repository, just add code from our
desktop APIs to your codebase and get access to system level functionality </p>
<!-- links -->
<ul class="grid font-display grid-cols-2 gap-2">
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 " href="">Native
notifications</a>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 "
href="">Application
menu</a>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 "
href="">Dock/Icon</a>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 " href="">File
system access</a>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 " href="">Global
keyboard shortcuts</a>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 " href="">
Context menu</a>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 " href="">
Isolated browser views</a>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 " href="">
More APIs in our docs</a>
</li>
</ul>
</div>
<!-- code editior area -->
<div id="code-studio-back"
class="border mt-10 mb-10 rounded-xl w-full h-[340px] border-codebg bg-codebg p-3 lg:mx-5">
<!-- heading -->
<div id="options" class=" flex flex-row gap-1 mb-5 items-center">
<div class="w-3 h-3 justify-center bg-red-400 border rounded-full border-red-500"> </div>
<div class="w-3 h-3 bg-yellow-400 border rounded-full border-yellow-500"> </div>
<div class="w-3 h-3 bg-lime-400 border rounded-full border-lime-500"> </div>
<div class="justify-center mx-auto ">App.js</div>
</div>
<!-- code -->
<div id="code " data-aos-offset="300" class="code-block font-code animate-typing p-2 ">
<div data-aos="fade-right" data-aos-duration="500" class=" code"> <span
class="text-purple-400">import</span> <span class="text-yellow-300">{</span> </div>
<div data-aos="fade-right" data-aos-duration="1000" class="code ml-10 "> <span
class="text-blue-300 ">
dock,</span>
</div>
<div data-aos="fade-right" data-aos-duration="1300" class="code ml-10 "> <span
class="text-blue-300 ">isDesktopApp</span></div>
<div data-aos="fade-right" data-aos-duration="1500" class="code ml-2"><span
class="text-yellow-300">}</span> <span class="text-purple-400">
from
</span><span class="text-yellow-600"> '@Pigeon/core'</span></div>
<div class="code "> <br></div>
<div data-aos="fade-right" data-aos-duration="1900" class="code"><span
class="text-purple-400">if</span> <span class="text-yellow-300">(</span><span
class="text-blue-300">isToDesktop</span><span class="text-yellow-300">){</span>
</div>
<div data-aos="fade-right" data-aos-duration="2100" class="code ml-10 "><span
class="text-blue-300">dock</span><span>.</span><span
class="text-yellow-100">bounce</span><span class="text-yellow-300">()</span></div>
<div data-aos="fade-right" data-aos-duration="2300" class="code ml-10"><span
class="text-blue-300">dock</span><span>.</span><span
class="text-yellow-100">setBadge</span><span
class="text-yellow-300">(</span><span>3</span><span class="text-yellow-300">)</span>
</div>
<div data-aos="fade-right" data-aos-duration="2400" class="code ml-2"><span
class="text-yellow-300">}</span></div>
</div>
<div class="flex justify-center overflow-hidden m-auto">
<div class="absolute border border-gray-600 rounded-2xl bg-gray-400/40 backdrop-blur-lg ">
<div class="flex flex-row">
<img class="md:h-24 h-16" src="./pngs/face.png">
<img data-aos="zoom-in-up" data-aos-duration="1000" class="md:h-24 h-16"
src="./pngs/aaplogo.svg">
<img class="md:h-24 h-16" src="./pngs/message.png">
<img class="md:h-24 h-16" src="./pngs/main.png">
</div>
</div>
</div>
</div>
</div>
<!-- 3rd box -->
<div id="step3"
class="rounded-xl items-center mb-9 backdrop-blur-md border px-8 py-10 flex flex-col bg-gr1/40 shadow-md shadow-white/30 lg:flex-row hover:shadow-lg ">
<div class="flex flex-col gap-6 lg:w-1/2 ">
<span
class="border border-violet-800 bg-blue-100 text-teal-800 font-medium w-fit font-headR px-3 py-1 rounded-lg">Step
3</span>
<h3 class="font-headR text-3xl md:text-4xl ">Publish</h3>
<p class=" font-display font-light text-4xl ">One-click will publish your desktop app to your
customers and
give you a download link to put on your website. </p>
<!-- links -->
<ul class="grid font-display grid-cols-2 gap-3 mx-5">
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 "
href="">Super-fast global CDN</a>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 " href="">Magic
universal links</a>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 " href="">Manage
version numbers</a>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 "
href="">Download links on your domain</a>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 "
href="">Download analytics</a>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check"> </i>
<a class="font-light text-lg border-b border-blue-100 hover:text-gray-300 " href="">Native
installers for all platforms</a>
</li>
</ul>
</div>
<!-- installer -->
<div
class=" flex justify-center items-center p-5 rounded-2xl mt-8 pt-12 bg-back hover:bg-fixed bg-fixed h-60 w-full lg:w-1/2 ">
<div class=" rounded-lg h-32 py-2 text-center backdrop-blur-md text-gray-700 bg-white/40 w-full">
Install Linear
<div class="max-w-full my-2 h-[1px] bg-gray-700"></div>
<div class=" flex flex-row items-center mx-5 gap-2 ">
<span><img class="w-20 " src="./pngs/log.png"></span>
<div class="p-2 text-left font-light w-screen ">Installing...
<div class=" my-2 h-[5px] rounded-full bg-blue-700">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- app details -->
<div id="Steps" class=" mx-auto px-6 py-4 max-w-7xl lg:px-8 lg:mx-auto lg:flex-row">
<h2 class="font-Heading mb-14 text-5xl md:font-semibold ">Pigeon handles<br />
the details</h2>
<div id="item-container" class="flex flex-col font-display gap-6 lg:grid lg:grid-cols-3 "
style="grid-auto-rows: 108px;">
<!-- detail boxes -->
<div
class="row-start-1 row-end-3 items-center rounded-2xl p-[2px] bg-slate-600 hover:bg-gradient-to-br hover:from-cyan-300 hover:to-blue-500 lg:justify-around lg:text-lg">
<div class="bg-gr1/50 bg rounded-2xl w-full h-full p-6 flex flex-col items-center lg:gap-12 gap-6 ">
<h3 class="text-2xl">Native Notification</h3>
<img src="./pngs/notification.png">
</div>
</div>
<div
class="row-start-1 row-end-4 text-center lg:text-lg rounded-2xl p-[2px] bg-slate-600 hover:bg-gradient-to-br hover:from-cyan-300 hover:to-blue-500 lg:justify-around ">
<div class=" bg-gr1/50 rounded-2xl w-full h-full p-6 flex flex-col items-center gap-3 lg:gap-10">
<h3 class="text-2xl">Auto Updates</h3>
<p>We’ll ensure the underlying browser is up to date and deliver performance improvements,
security patches, & additional features.</p>
<img src="./pngs/update.png">
</div>
</div>
<div
class="row-start-1 row-end-3 rounded-2xl lg:text-lg p-[2px] bg-slate-600 hover:bg-gradient-to-br hover:from-cyan-300 hover:to-blue-500 lg:relative lg:justify-around">
<div class="bg-gr1/50 rounded-2xl w-full h-full p-6 flex flex-col items-center lg:gap-8 gap-3">
<h3 class="text-2xl">Plugins</h3>
<img src="./pngs/plugins@3x.png">
</div>
</div>
<div
class="row-start-3 row-end-6 rounded-2xl p-[2px] lg:text-lg bg-slate-600 hover:bg-gradient-to-br hover:from-cyan-300 hover:to-blue-500 text-center lg:relative lg:justify-around">
<div class="bg-gr1/50 rounded-2xl w-full h-full p-6 flex flex-col items-center lg:gap-8 gap-3">
<h3 class="text-2xl">Access to Native APIs</h3>
<p>ToDesktop ensures the underlying browser, performance improvements, security patches and
additional features are always up to date.</p>
<img src="./pngs/api.png">
</div>
</div>
<div
class="row-start-4 row-end-6 rounded-2xl p-[2px] lg:text-lg bg-slate-600 hover:bg-gradient-to-br hover:from-cyan-300 hover:to-blue-500 lg:justify-around">
<div
class="bg-gr1/50 rounded-2xl w-full h-full p-6 pb-0 flex flex-col items-center lg:gap-8 lg:pb-0 gap-4">
<h3 class="text-2xl">Customizable look and feel</h3>
<img src="./pngs/looks.png">
</div>
</div>
<div
class=" row-start-3 row-end-6 rounded-2xl p-[2px] lg:text-lg bg-slate-600 hover:bg-gradient-to-br hover:from-cyan-300 hover:to-blue-500 text-center lg:relative lg:justify-around">
<div class="bg-gr1/50 rounded-2xl w-full gap-4 h-full p-6 flex flex-col items-center lg:gap-10">
<h3 class="text-2xl">Native Installers</h3>
<p>We even provide a magic link which will detect your users operating system & download the
most up to date version of your app.</p>
<img src="./pngs/files.png">
</div>
</div>
</div>
</div>
<!-- features line animation -->
<div id="features-line" class=" mx-auto mt-10 bordermb-20 px-6 lg:px-8 ">
<div class="border max-w-7xl mx-auto border-slate-500 rounded-lg overflow-hidden flex justify-center ">
<div id="line4" class="flex gap-6 p-3">
<h3 class="whitespace-nowrap mx-2 text-2xl font-semibold font-headR">
Global Hotkeys</h3>
<span>●</span>
<h3 class="whitespace-nowrap mx-2 text-2xl font-semibold font-headR">
Custom Menus</h3>
<span>●</span>
<h3 class="whitespace-nowrap mx-2 text-2xl font-semibold font-headR">
Multi-window support</h3>
<span>●</span>
<h3 class="whitespace-nowrap mx-2 text-2xl font-semibold font-headR">
Trays</h3>
<span>●</span>
<h3 class="whitespace-nowrap mx-2 text-2xl font-semibold font-headR">
Deep Linking</h3>
<span>●</span>
<h3 class="whitespace-nowrap mx-2 text-2xl font-semibold font-headR">
Launch at Startup</h3>
<span>●</span>
<h3 class="whitespace-nowrap mx-2 text-2xl font-semibold font-headR">
Download AnalyticsLaunch at Startup</h3>
<span>●</span>
<h3 class="whitespace-nowrap mx-2 text-2xl font-semibold font-headR">
Offline Support</h3>
<span>●</span>
<h3 class="whitespace-nowrap mx-2 text-2xl font-semibold font-headR">
Code Signing</h3>
<span>●</span>
</div>
</div>
</div>
<!-- Customer stories and milestones -->
<div id="Steps" class=" mx-auto container px-6 py-12 max-w-7xl mt-16 lg:px-5 ">
<h2 class="font-Heading mb-14 text-5xl md:font-semibold">Customer stories</h2>
<!-- clickup -->
<div id="con"
class="flex border bg-back1 rounded-2xl flex-col lg:flex-row gap-5 border-slate-500 mx-auto items-end ">
<div id="left" class="flex flex-col gap-12 p-8">
<div id="log" class="h-4 w-fit">
<img class="invert " src="pngs/ClickUp-Logo.odzVA-s0.svg" alt="">
</div>
<h3 class="font-display leading-relaxed text-lg">ClickUp used ToDesktop to get their desktop app in
front of
customers in
days
instead of months.
</h3>
<div id="tag-container" class="flex gap-4 flex-wrap">
<div
class="border bg-blue-50 border-blue-800 rounded-lg px-3 py-1 w-fit shadow-lg shadow-cyan-500/60 text-add">
<i class="fa-solid text-black fa-check"></i>
Chromeless UI
</div>
<div
class="border bg-blue-50 border-blue-800 rounded-lg px-3 py-1 w-fit shadow-lg shadow-cyan-500/60 text-add">
<i class="fa-solid text-black fa-check"></i>
Native spellcheck
</div>
<div
class="border bg-blue-50 border-blue-800 rounded-lg px-3 py-1 w-fit shadow-lg shadow-cyan-500/60 text-add">
<i class="fa-solid text-black fa-check"></i>
Task time in menubar
</div>
<div
class="border bg-blue-50 border-blue-800 rounded-lg px-3 py-1 w-fit shadow-lg shadow-cyan-500/60 text-add">
<i class="fa-solid text-black fa-check"></i>
Notification count in the dock
</div>
<div
class="border bg-blue-50 border-blue-800 rounded-lg px-3 py-1 w-fit shadow-lg shadow-cyan-500/60 text-add">
<i class="fa-solid text-black fa-check"></i>
Global hotkey to create task
</div>
</div>
<p class="font-display text-slate-400 text-lg">“ToDesktop provided us with a <span
class="text-white">polished desktop app</span> in
no
time. Their expert team guided
us through a smooth migration from our outdated legacy desktop app, enabling us to deliver <span
class="text-white">new
and improved features</span> to our customers within days.”</p>
<div class="flex gap-4">
<div class="w-12">
<img class="rounded-full" src="./pngs/zeb.Dy2mfRM8.avif">
</div>
<div class="flex flex-col">
<h3 class="font-bold ">Zeb Evans</h3>
<p class="font-light ">Founder & CEO, <a href="" class="anchor-hover">ClickUp</a> </p>
</div>
</div>
</div>
<div id="right" class="">
<img src="./pngs/story.png" class="pl-12">
</div>
</div>
<!-- clickup blow text -->
<div id="Steps" class="flex mx-auto mt-10 lg:flex-row">
<div id="item-container" class="flex flex-col font-display gap-6 lg:flex-row ">
<!-- detail boxes -->
<div
class=" items-center flex flex-1 rounded-2xl p-[2px] bg-slate-600 hover:bg-gradient-to-br hover:from-cyan-300 hover:to-blue-500 lg:justify-around ">
<div
class="bg-back1/95 bg rounded-2xl w-full h-full p-6 flex flex-col items-center lg:gap-10 gap-3 ">
<div>
<h3 class="text-2xl mb-5 lg:mb-10 items-center font-bold ">
<i class="fa-solid text-lg fa-code rounded-full bg-cyan-700 p-1"></i>
Native APIs
</h3>
<p class=" text-lg font-extralight ">“ What sets ToDesktop apart is its
seamless
integration
with
native APIs using
our existing web
codebase. By tapping into APIs like Tray and Notifications, we've crafted an
exceptionally
polished desktop user experience. ”</p>
</div>
</div>
</div>
<div
class=" items-center flex flex-1 rounded-2xl p-[2px] bg-slate-600 hover:bg-gradient-to-br hover:from-cyan-300 hover:to-blue-500 lg:justify-around ">
<div
class=" bg-back1/95 rounded-2xl w-full h-full p-6 flex flex-col items-center gap-3 lg:gap-10">
<div>
<h3 class="text-2xl mb-5 lg:mb-10 items-center font-bold ">
<i
class="fa-solid fa-wand-magic-sparkles rounded-full bg-cyan-700 p-1 items-center"></i>
less cluttered UI
</h3>
<p class="font-light text-lg ">“Having a desktop app gives us the freedom to
design the experience we want, including better keyboard shortcuts and a cleaner UI.
It was a no-brainer for us to use ToDesktop. ”</p>
</div>
</div>
</div>
<div
class=" rounded-2xl flex flex-1 lg:text-lg p-[2px] bg-slate-600 hover:bg-gradient-to-br hover:from-cyan-300 hover:to-blue-500 lg:relative lg:justify-around">
<div
class="bg-back1/95 rounded-2xl w-full h-full p-6 flex flex-col items-center lg:gap-10 gap-3">
<div>
<h3 class="text-2xl mb-5 lg:mb-10 items-center font-bold ">
<i class="fa-solid fa-infinity rounded-full bg-cyan-700 p-1 items-center"></i>
Code optional
</h3>
<p class="font-light text-lg ">“It was unbelievably simple for us to get a
desktop app up and running, and we didn’t have to write a single line of code. Once
we had this MVP, we were able to extend the app’s functionality with custom behavior
using ToDesktop’s libraries. ”</p>
</div>
</div>
</div>
</div>
</div>
<!-- black box -->
<div class="rounded-2xl flex flex-col bg-black lg:flex-row mt-12 pt-6 lg:pt-10">
<div class="flex flex-col gap-4 p-8 lg:flex-1 lg:gap-8">
<span class="text-gray-400 font-display font-medium">READY TO START BUILDING?</span>
<h2 class="text-4xl text-white leading-tight lg:text-5xl">Create your desktop app for free*</h2>
<p class="text-lg font-light font-display text-gray-400 lg:text-xl">Pigeon Builder will take you
step-by-step
through the process of creating your first desktop app in just a few minutes.</p>
<button
class="bg-primary text-cyan-900 py-3 rounded-lg hover:bg-opacity-80 shadow-md hover:-translate-y-1 transition-all hover:shadow-cyan-200 flex justify-center items-center gap-4">
<i class="fa-solid fa-download "></i>
<span>Download Pigeon Builder</span>
</button>
<p class="text-gray-400 text-xs italic leading-tight">*You can create a desktop app and run it on
your computer for free. You will only be charged if you want to create a distributable app for
your customers.</p>
</div>
<div class="lg:w-1/2">
<img src="./pngs/screenshot.2xP1-Xus.webp" class="pl-12" alt="">
</div>
</div>
</div>
<!-- Pricing -->
<div id="Pricing" class="mx-auto container px-6 py-12 max-w-7xl mt-5 lg:px-5 ">
<h2 class="font-Heading mb-14 text-5xl ">Choose a plan that fits<br> your needs</h2>
<div class="flex flex-col gap-8 lg:flex-row ">
<div class="border flex-1 border-slate-500 bg-back1 rounded-2xl pt-10 px-8 pb-8 flex flex-col gap-6">
<h3 class="text-4xl">Free</h3>
<p class="text-lg font-light">For personal use or testing your app before deploying to customers.
</p>
<p class="uppercase text-slate-400 font-semibold">Key Features</p>
<ul class="space-y-2 font-display">
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check text-slate-300"></i>
<span>Free for personal use</span>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check text-slate-300"></i>
<span>Run app locally</span>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-xmark text-slate-300"></i>
<span>No Code Signing</span>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-xmark text-slate-300"></i>
<span>No Native Installers</span>
</li>
</ul>
<button class="border-2 rounded-2xl p-4 mt-5 lg:mt-12 hover:border-cyan-200 hover:text-cyan-300">Get
Started</button>
</div>
<div class="border border-slate-500 bg-back1 rounded-2xl pt-10 px-8 pb-8 flex flex-1 flex-col gap-6">
<h3 class="text-4xl">Essential</h3>
<p class="text-lg font-light">For simple desktop apps.
</p>
<p class="text-lg font-light"><span class="text-2xl font-semibold">$99</span>/month</p>
<p class="uppercase text-slate-400 font-semibold">Key Features</p>
<ul class="space-y-2 font-display">
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check text-slate-300"></i>
<span>Windows, Mac & Linux</span>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check text-slate-300"></i>
<span>Code Signing</span>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check text-slate-300"></i>
<span>Native Installers</span>
</li>
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check text-slate-300"></i>
<span>Email/chat support</span>
</li>
</ul>
<button class="border-2 rounded-2xl p-4 mt-5 hover:border-cyan-200 hover:text-cyan-300">Get
Started</button>
</div>
<div
class="border border-slate-500 bg-back1 rounded-2xl pt-10 px-8 pb-8 flex flex-1 flex-col relative gap-6">
<p
class="text-blue-500 text-sm bg-indigo-100 rounded-full w-fit px-4 py-2 font-display font-semibold absolute top-0 right-8 -translate-y-1/2">
Most Popular</p>
<h3 class="text-4xl">Professional</h3>
<p class="text-lg font-light">For sophisticated desktop apps.
</p>
<p class="text-lg font-light"><span class="text-2xl font-semibold">$240</span>/month</p>
<p class="uppercase text-slate-400 font-semibold">Everything in Essential Plus</p>
<ul class="space-y-2 font-display">
<li class="flex gap-4 items-center">
<i class="fa-solid fa-check text-slate-300"></i>