-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1755 lines (1570 loc) · 99.4 KB
/
index.html
File metadata and controls
1755 lines (1570 loc) · 99.4 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
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" class="tw-dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>All your AI models in one place - Try Pixa Playground</title>
<meta name="description" content="Get all your AI models and tools in one place" />
<link
rel="shortcut icon"
href="./assets/logo/logo.png"
type="image/x-icon"
/>
<!-- Open Graph / Facebook -->
<meta property="og:title" content="All your AI models in one place - Try Pixa Playground" />
<meta property="og:description" content="Get all your AI models and tools in one place" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://github.com/PaulleDemon" />
<meta property="og:image" content="" />
<!-- <link rel="stylesheet" href="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"
/>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-');
</script>
</head>
<body
class="tw-flex tw-min-h-[100vh] tw-flex-col tw-bg-[#fcfcfc]
tw-text-black dark:tw-bg-black dark:tw-text-white"
>
<!-- <div class="tw-absolute tw-top-0 tw-left-1/2 tw--translate-x-1/2 tw-flex
tw-h-[100px] tw-w-full tw-max-w-[80%]">
<div class="header-gradient tw-h-full tw-w-full "></div>
</div> -->
<header
class="lg:tw-px-4 tw-max-w-[100vw] tw-max-w-lg:tw-mr-auto max-lg:tw-top-0 tw-fixed tw-top-4 lg:tw-left-1/2 lg:tw--translate-x-1/2 tw-z-20 tw-flex tw-h-[60px] tw-w-full
tw-text-gray-700 tw-bg-white dark:tw-text-gray-200 dark:tw-bg-[#17181b] tw-px-[3%] tw-rounded-md lg:tw-max-w-5xl tw-shadow-md dark:tw-shadow-gray-700
lg:tw-justify-around lg:!tw-backdrop-blur-lg lg:tw-opacity-[0.99]"
>
<a class="tw-flex tw-p-[4px] tw-gap-2 tw-place-items-center" href="#">
<div class="tw-h-[30px] tw-max-w-[100px]">
<img
src="./assets/logo/logo.png"
alt="logo"
class="tw-object-contain tw-h-full tw-w-full dark:tw-invert"
/>
</div>
<span class="tw-uppercase tw-text-base tw-font-medium">Pixa</span>
</a>
<div
class="collapsible-header animated-collapse max-lg:tw-shadow-md"
id="collapsed-header-items"
>
<nav
class="tw-relative tw-flex tw-h-full max-lg:tw-h-max tw-w-max tw-gap-5 tw-text-base max-lg:tw-mt-[30px] max-lg:tw-flex-col
max-lg:tw-gap-5 lg:tw-mx-auto tw-place-items-center"
>
<a class="header-links" href="#"> API </a>
<a class="header-links" href="#"> Blog </a>
<a class="header-links" href="#"> Solutions </a>
<div class="tw-relative tw-flex tw-flex-col tw-place-items-center">
<div id="nav-dropdown-toggle-0" class="max-lg:tw-max-w-fit tw-flex header-links tw-gap-1 tw-place-items-center">
<span class=""> Features </span>
<i class="tw-text-sm bi bi-chevron-down"></i>
</div>
<nav id="nav-dropdown-list-0"
data-open="false"
class="tw-scale-0 tw-opacity-0 lg:tw-fixed tw-flex lg:tw-top-[80px] lg:tw-left-1/2 lg:tw--translate-x-1/2
tw-w-[90%] tw-rounded-lg max-lg:tw-h-0 max-lg:tw-w-0
lg:tw-h-[450px] tw-overflow-hidden
tw-bg-white dark:tw-bg-[#17181B] tw-duration-300
tw-transition-opacity tw-transition-height tw-shadow-lg tw-p-4">
<div class="tw-grid max-xl:tw-flex max-xl:tw-flex-col tw-justify-around tw-grid-cols-2 tw-w-full">
<a class="header-links tw-flex tw-text-left tw-gap-4 !tw-p-4" href="#">
<div class="tw-font-semibold tw-text-3xl">
<i class="bi bi-list-columns-reverse"></i>
</div>
<div class="tw-flex tw-flex-col tw-gap-2">
<div class="tw-text-lg tw-text-black dark:tw-text-white tw-font-medium">Prompt library </div>
<p>Comes packed with pre-made prompt templates</p>
</div>
</a>
<a class="header-links tw-flex tw-text-left tw-gap-4 !tw-p-4" href="#">
<div class="tw-font-semibold tw-text-3xl">
<i class="bi bi-grid-1x2-fill"></i>
</div>
<div class="tw-flex tw-flex-col tw-gap-2">
<div class="tw-text-lg tw-text-black dark:tw-text-white tw-font-medium">Unified Interface </div>
<p class="">Test multiple AI models in one interface</p>
</div>
</a>
<a class="header-links tw-flex tw-text-left tw-gap-4 !tw-p-4" href="#">
<div class="tw-font-semibold tw-text-3xl">
<i class="bi bi-globe"></i>
</div>
<div class="tw-flex tw-flex-col tw-gap-2">
<div class="tw-text-lg tw-text-black dark:tw-text-white tw-font-medium">Realtime web search </div>
<p class="">Search the internet in realtime</p>
</div>
</a>
<a class="header-links tw-flex tw-text-left tw-gap-4 !tw-p-4" href="#">
<div class="tw-font-semibold tw-text-3xl">
<i class="bi bi-image-fill"></i>
</div>
<div class="tw-flex tw-flex-col tw-gap-2">
<div class="tw-text-lg tw-text-black dark:tw-text-white tw-font-medium">
Image generation
</div>
<p class="">Generate images from prompts</p>
</div>
</a>
<a class="header-links tw-flex tw-text-left tw-gap-4 !tw-p-4" href="#">
<div class="tw-font-semibold tw-text-3xl">
<i class="bi bi-calendar-range"></i>
</div>
<div class="tw-flex tw-flex-col tw-gap-2">
<div class="tw-text-lg tw-text-black dark:tw-text-white tw-font-medium">
History
</div>
<p class="">Continue from where you left off</p>
</div>
</a>
<a class="header-links tw-flex tw-text-left tw-gap-4 !tw-p-4" href="#">
<div class="tw-font-semibold tw-text-3xl">
<i class="bi bi-translate"></i>
</div>
<div class="tw-flex tw-flex-col tw-gap-2">
<div class="tw-text-lg tw-text-black dark:tw-text-white tw-font-medium">
Multilingual
</div>
<p class="">Converse in multiple languages</p>
</div>
</a>
</div>
</nav>
</div>
<a class="header-links" href="#pricing"> Pricing </a>
</nav>
<div
class="lg: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"
>
<button type="button" onclick="toggleMode()" class="header-links tw-text-gray-600 dark:tw-text-gray-300" title="toggle-theme"
id="theme-toggle">
<i class="bi bi-sun" id="toggle-mode-icon"></i>
</button>
<a
href="#"
aria-label="Try Pixa Playground"
class="btn tw-flex tw-gap-3 tw-px-3 tw-py-2 tw-transition-transform
tw-duration-[0.3s] hover:tw-translate-x-2"
>
<span>Try playground</span>
<i class="bi bi-arrow-right"></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-gray-500 lg:tw-hidden"
onclick="toggleHeader()"
aria-label="menu"
id="collapse-btn"
></button>
</header>
<section
class="hero-section tw-relative tw-mt-20 tw-flex tw-min-h-[100vh] tw-w-full tw-max-w-[100vw] tw-flex-col tw-overflow-hidden max-lg:tw-mt-[100px]"
id="hero-section"
>
<!-- video container -->
<div class="tw-fixed tw-bg-[#000000af] dark:tw-bg-[#80808085] tw-top-0 tw-left-1/2 tw--translate-x-1/2 tw-z-20 tw-transition-opacity
tw-duration-300 tw-scale-0 tw-opacity-0 tw-p-2
tw-w-full tw-h-full tw-flex tw-place-content-center tw-place-items-center" id="video-container-bg">
<div class="tw-max-w-[80vw] max-lg:tw-max-w-full max-lg:tw-w-full tw-scale-0 tw-transition-transform tw-duration-500 tw-p-6 tw-rounded-xl max-lg:tw-px-2 tw-w-full tw-gap-2 tw-shadow-md
tw-h-[90vh] max-lg:tw-h-auto max-lg:tw-min-h-[400px] tw-bg-white dark:tw-bg-[#16171A] tw-max-h-full
" id="video-container">
<div class="tw-w-full tw-flex">
<button type="button" onclick="closeVideo()" class="tw-ml-auto tw-text-xl" title="close">
<i class="bi bi-x-circle-fill"></i>
</button>
</div>
<div class="tw-flex tw-w-full tw-rounded-xl tw-px-[5%] max-md:tw-px-2 tw-min-h-[300px] tw-max-h-[90%] tw-h-full">
<div class="tw-relative tw-bg-black tw-min-w-full tw-min-h-full tw-overflow-clip tw-rounded-md">
<!-- add your youtube video link here -->
<iframe class="tw-absolute tw-top-[50%] tw--translate-y-[50%] tw-left-[50%] tw--translate-x-[50%] tw-w-full tw-h-full"
src="https://www.youtube.com/embed/6j4fPVkA3EA?si=llcTrXPRM-MRXDZB&controls=0&rel=0&showinfo=0&autoplay=1&loop=1&mute=1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
<div
class="hero-bg-gradient tw-relative tw-flex tw-h-full tw-min-h-[100vh] tw-w-full tw-flex-col tw-place-content-center tw-gap-6 tw-p-[5%] max-xl:tw-place-items-center max-lg:tw-p-4"
>
<div class="purple-bg-grad reveal-up tw-absolute tw-left-1/2 tw--translate-1/2 tw-top-[10%] tw-h-[120px] tw-w-[120px]"
></div>
<div
class="tw-flex tw-flex-col tw-min-h-[60vh] tw-place-content-center tw-items-center"
>
<h2
class="reveal-up tw-text-center tw-text-7xl tw-font-semibold tw-uppercase tw-leading-[90px] max-lg:tw-text-4xl max-md:tw-leading-snug"
>
<span class=""> All your AI models </span>
<br />
<span class="tw-font-thin tw-font-serif"> in one place </span>
</h2>
<div
class="reveal-up tw-mt-8 tw-max-w-[450px] tw-text-lg max-lg:tw-text-base tw-p-2 tw-text-center
tw-text-gray-800 dark:tw-text-white max-lg:tw-max-w-full"
>
<!-- Test, Develop and Deploy all your AI models in one place, with Pixa seamless playground interface -->
Your all in one AI companion. generate Images, videos, codes, docs, debug your web apps all with Pixa's interface.
</div>
<div
class="reveal-up tw-mt-10 max-md:tw-flex-col tw-flex tw-place-items-center tw-gap-4"
>
<button onclick="openVideo()"
class="btn !tw-w-[170px] max-lg:!tw-w-[160px] !tw-rounded-xl !tw-py-4 max-lg:!tw-py-2 tw-flex tw-gap-2 tw-group !tw-bg-transparent !tw-text-black dark:!tw-text-white tw-transition-colors
tw-duration-[0.3s] tw-border-[1px] tw-border-black dark:tw-border-white"
>
<div class="tw-relative tw-flex tw-place-items-center tw-place-content-center tw-w-6 tw-h-6">
<div class="tw-absolute tw-inset-0 tw-top-0 tw-left-0 tw-scale-0 tw-duration-300 group-hover:tw-scale-100 tw-border-2
tw-border-gray-600 dark:tw-border-gray-200 tw-rounded-full tw-w-full tw-h-full"></div>
<span class="bi bi-play-circle-fill"></span>
</div>
<span>Watch video</span>
</button>
<a
class="btn tw-group max-lg:!tw-w-[160px] tw-flex tw-gap-2 tw-shadow-lg !tw-w-[170px] !tw-rounded-xl !tw-py-4 max-lg:!tw-py-2 tw-transition-transform tw-duration-[0.3s] hover:tw-scale-x-[1.03]"
href="#"
>
<span>Get started</span>
<i class="bi bi-arrow-right group-hover:tw-translate-x-1 tw-duration-300"></i>
</a>
</div>
</div>
<!-- prompt container -->
<div
class="reveal-up tw-relative tw-mt-8 tw-flex tw-w-full tw-place-content-center tw-place-items-center"
id="dashboard-container"
>
<div class="purple-bg-grad reveal-up tw-absolute tw-left-1/2 tw--translate-x-1/2 tw-top-[5%] tw-h-[200px] tw-w-[200px]"
></div>
<div
class="tw-relative tw-max-w-[80%] tw-bg-white dark:tw-bg-black tw-border-[1px] dark:tw-border-[#36393c] lg:tw-w-[1024px]
lg:tw-h-[650px] tw-flex tw-shadow-xl max-lg:tw-h-[450px] max-lg:tw-w-full
tw-overflow-hidden
tw-min-w-[320px] md:tw-w-full tw-min-h-[450px] tw-rounded-xl tw-bg-transparent max-md:tw-max-w-full"
id="dashboard"
>
<div class="purple-bg-grad tw-max-w-[80%] reveal-up tw-absolute tw-left-1/2 tw--translate-x-1/2 tw-top-[0%] lg:tw-max-w-[1000px] tw-h-full tw-w-full"
></div>
<div class="animated-border tw-w-full tw-h-full tw-p-[2px]">
<div class="tw-w-full tw-h-full tw-rounded-xl tw-overflow-hidden tw-flex">
<!-- sign-up pop-up -->
<div class="tw-absolute tw-rounded-xl tw-text-center tw-transition-transform tw-duration-300 tw-scale-0 tw-backdrop-blur-lg tw-flex tw-flex-col tw-p-10 tw-place-items-center
tw-gap-4 tw-w-full tw-h-full dark:tw-bg-[#000000b4] tw-bg-[#ffffff6a] firefox:tw-bg-white tw-top-0 tw-left-0 tw-z-20"
id="signup-prompt"
>
<h4 class="tw-mt-6 tw-text-3xl max-md:tw-text-xl">
Signup to continue your conversation
</h4>
<div class="tw-flex tw-gap-1 tw-place-items-center">
<div class="tw-flex tw--space-x-4">
<img class="tw-z-10 tw-w-10 tw-h-10 tw-object-cover tw-rounded-full tw-border-2 tw-border-white" src="assets/images/people/man.jpg" alt="Avatar 1">
<img class="tw-z-[4] tw-w-10 tw-h-10 tw-object-cover tw-rounded-full tw-border-2 tw-border-white" src="assets/images/people/women.jpg" alt="Avatar 2">
<img class="tw-z-[3] tw-w-10 tw-h-10 tw-object-cover tw-rounded-full tw-border-2 tw-border-white" src="assets/images/people/man2.jpg" alt="Avatar 3">
<img class="tw-z-[2] tw-w-10 tw-h-10 tw-object-cover tw-rounded-full tw-border-2 tw-border-white" src="assets/images/people/man.jpg" alt="Avatar 4">
<img class="tw-z-[1] tw-w-10 tw-h-10 tw-object-cover tw-rounded-full tw-border-2 tw-border-white" src="assets/images/people/women.jpg" alt="Avatar 5">
</div>
<p>+20,000</p>
</div>
<div class="tw-mt-3 tw-text-lg">
Join Ben and 20,000+ users using Pixa
</div>
<a href="#" class="btn">
Sign up
</a>
</div>
<div class="tw-min-w-[250px] max-lg:tw-hidden tw-p-2 tw-gap-2 tw-flex tw-flex-col tw-bg-gray-100
dark:tw-bg-[#171717] tw-h-full">
<!-- <h3 class="tw-text-xl tw-uppercase">
Pixa
</h3> -->
<div class="tw-h-[30px] tw-w-fit tw-max-w-[100px]">
<img
src="./assets/logo/logo.png"
alt="logo"
class="tw-object-contain tw-opacity-80 tw-h-full tw-w-full dark:tw-invert"
/>
</div>
<div class="tw-flex tw-mt-2 tw-gap-2 tw-flex-col">
<a href="#link-to-img-gen"
class="tw-flex tw-rounded-sm tw-gap-2 tw-p-2 dark:hover:tw-bg-[#2d2d2ddb] hover:tw-bg-gray-200">
<i class="bi bi-image"></i>
<span>Image generator</span>
</a>
<a href="#link-to-pdf-gen"
class="tw-flex tw-rounded-sm tw-gap-2 tw-p-2 dark:hover:tw-bg-[#2d2d2ddb] hover:tw-bg-gray-200">
<i class="bi bi-file-pdf"></i>
<span>Pdf generator</span>
</a>
<a href="#link-to-code-gen"
class="tw-flex tw-rounded-sm tw-gap-2 tw-p-2 dark:hover:tw-bg-[#2d2d2ddb] hover:tw-bg-gray-200">
<i class="bi bi-code-square"></i>
<span>Code generator</span>
</a>
<a href="#"
class="tw-flex tw-rounded-sm tw-group tw-gap-2 tw-p-2 dark:hover:tw-bg-[#2d2d2ddb] hover:tw-bg-gray-200">
<span>Show all</span>
<i class="bi bi-arrow-right tw-transform tw-transition-transform tw-duration-300 group-hover:tw-translate-x-1"></i>
</a>
</div>
<div class="tw-mt-auto tw-w-full tw-flex tw-px-6 tw-place-content-center">
<a href="#sign-up" class="btn !tw-w-full !tw-bg-transparent tw-duration-[0.3s]
hover:!tw-bg-black hover:!tw-text-white
dark:hover:!tw-bg-white dark:hover:!tw-text-black
!tw-border-[1px] !tw-border-black !tw-text-black
dark:!tw-border-white dark:!tw-text-white
">
Signup
</a>
</div>
</div>
<div class="tw-flex tw-w-full tw-p-4 tw-bg-white dark:tw-bg-black tw-h-full tw-flex-col" id="pixa-playground">
<div class="tw-relative tw-w-full tw-flex tw-place-content-center tw-h-full">
<div class="tw-absolute tw-top-[20%] max-lg:tw-top-[30%] tw-left-1/2 tw--translate-x-1/2 tw-w-[150px] tw-h-[150px]">
<img src="./assets/logo/logo.png" class="tw-w-full tw-h-full dark:tw-invert tw-object-contain tw-opacity-20"
alt="Pixa logo">
</div>
<div class="prompt-container tw-overflow-y-auto tw-px-[5%] max-lg:tw-px-2 scrollbar max-lg:tw-max-h-[80%] tw-max-h-[550px]
max-lg:tw-mt-12 tw-w-full tw-h-full tw-z-10 tw-flex tw-flex-col" id="prompt-container">
<div class="tw-w-full tw-flex tw-text-center tw-flex-col tw-place-content-center">
<h2 class="tw-text-4xl max-md:tw-text-2xl max-md:tw-mt-3 tw-opacity-80">
Try Prompts
</h2>
<div class="tw-inline tw-mt-6 max-md:tw-mt-3">
<span id="prompts-sample" ></span>
</div>
</div>
</div>
</div>
<form action="" id="prompt-form" onsubmit="return false;"
class="tw-place-content-center tw-mt-auto tw-h-[50px] tw-p-1 tw-place-items-center
tw-justify-around tw-flex tw-gap-1 tw-bottom-2 tw-w-full tw-rounded-md tw-bg-[#f3f4f6] dark:tw-bg-[#171717]">
<div class="tw-min-w-[140px] tw-min-h-[80px] max-lg:tw-absolute tw-z-10 tw-top-1 tw-left-1/2 max-lg:tw--translate-x-1/2
tw-flex tw-flex-col tw-text-sm tw-gap-1 tw-place-content-center">
<div class="dropdown tw-p-2 tw-rounded-md tw-bg-[#f3f4f6] dark:tw-bg-[#171717]" id="dropdown1">
<!-- store the value of the dropdown-->
<input type="hidden" class="dropdown-input">
<button
type="button"
class="dropdown-toggle tw-flex tw-gap-5"
>
<span class="tw-flex tw-w-fit tw-gap-2 tw-place-items-center">
<div class="tw-w-[20px] tw-h-[20px]">
<img src="./assets/images/brand-logos/openai.svg"
alt="Gpt3.5" class="dropdown-select-icon dark:tw-invert">
</div>
<span class="dropdown-select-text">GPT 4o</span>
</span>
<i class="bi bi-chevron-down tw-ml-auto lg:tw-hidden"
></i>
<i class="bi bi-chevron-up tw-ml-auto lg:tw-block tw-hidden"
></i>
</button>
<ul class="dropdown-menu tw-shadow-md tw-bottom-[50px] max-lg:tw-top-[105%] max-lg:tw-bottom-[unset]">
<li class="tw-flex tw-gap-2 tw-place-items-center">
<div class="tw-w-[20px] tw-h-[20px]">
<img src="./assets/images/brand-logos/openai.svg" alt="Gpt-4o"
class="dropdown-menu-icon dark:tw-invert">
</div>
<span class="dropdown-text">GPT 4o</span>
</li>
<li class="tw-flex tw-gap-2 tw-place-items-center">
<div class="tw-w-[20px] tw-h-[20px]">
<img src="./assets/images/brand-logos/googlegemini.svg" alt="Gemini"
class="dropdown-menu-icon dark:tw-invert">
</div>
<span class="dropdown-text">Gemini</span>
</li>
<li class="tw-flex tw-gap-2 tw-place-items-center">
<div class="tw-w-[20px] tw-h-[20px]">
<img src="./assets/images/brand-logos/meta.svg" alt="Llama"
class="dropdown-menu-icon dark:tw-invert">
</div>
<span class="dropdown-text">Llama 3</span>
</li>
<li class="tw-flex tw-gap-2 tw-place-items-center">
<div class="tw-w-[20px] tw-h-[20px]">
<img src="./assets/images/brand-logos/claude.svg" alt="Perplexity"
class="dropdown-menu-icon dark:tw-invert">
</div>
<span class="dropdown-text">Claude</span>
</li>
</ul>
</div>
</div>
<input placeholder="How to develop a saas app?"
type="text" class="tw-p-2 !tw-outline-none tw-bg-transparent tw-border-none tw-w-full tw-placehoder-gray-500
dark:tw-placeholder-opacity-60 dark:tw-placeholder-gray-300 tw-max-w-[80%] tw-h-full"
name="prompt" >
<button type="submit" class="btn !tw-bg-[#6366f1] !tw-p-2 !tw-px-3 !tw-text-white" title="submit">
<i class="bi bi-arrow-up"></i>
</button>
</form>
</div>
</div>
</div>
</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-8"
>
<h2 class="reveal-up tw-text-3xl max-md:tw-text-xl">
Trusted by brands you love
</h2>
<div class="reveal-up carousel-container">
<div
class="carousel lg:w-place-content-center tw-mt-10 tw-flex tw-w-full tw-gap-5 max-md:tw-gap-2"
>
<!-- add the brands using your app -->
<div class="carousel-img tw-h-[30px] tw-w-[150px]">
<img
src="./assets/images/brand-logos/google.svg"
alt="Google"
class="tw-h-full tw-w-full tw-object-contain tw-grayscale tw-transition-colors hover:tw-grayscale-0"
srcset=""
/>
</div>
<div class="carousel-img tw-h-[30px] tw-w-[150px]">
<img
src="./assets/images/brand-logos/microsoft.svg"
alt="Microsoft"
class="tw-h-full tw-w-full tw-object-contain tw-grayscale tw-transition-colors hover:tw-grayscale-0"
srcset=""
/>
</div>
<div class="carousel-img tw-h-[30px] tw-w-[150px]">
<img
src="./assets/images/brand-logos/adobe.svg"
alt="Adobe"
class="tw-h-full tw-w-full tw-object-contain tw-grayscale tw-transition-colors hover:tw-grayscale-0"
srcset=""
/>
</div>
<div class="carousel-img tw-h-[30px] tw-w-[150px]">
<img
src="./assets/images/brand-logos/airbnb.svg"
alt="Airbnb"
class="tw-h-full tw-w-full tw-object-contain tw-grayscale tw-transition-colors hover:tw-grayscale-0"
srcset=""
/>
</div>
<div class="carousel-img tw-h-[30px] tw-w-[150px]">
<img
src="./assets/images/brand-logos/stripe.svg"
alt="Stripe"
class="tw-h-full tw-w-full tw-object-contain tw-grayscale tw-transition-colors hover:tw-grayscale-0"
srcset=""
/>
</div>
<div class="carousel-img tw-h-[30px] tw-w-[150px]">
<img
src="./assets/images/brand-logos/reddit.svg"
alt="Reddit"
class="tw-h-full tw-w-full tw-object-contain tw-grayscale tw-transition-colors hover:tw-grayscale-0"
srcset=""
/>
</div>
</div>
</div>
</section>
<section
class="tw-relative tw-flex tw-w-full tw-min-h-[100vh] max-lg:tw-min-h-[80vh] tw-flex-col tw-place-content-center tw-place-items-center tw-overflow-hidden"
>
<div class="tw-w-full tw-place-content-center tw-items-center
tw-flex tw-flex-col tw-max-w-[900px] tw-gap-4 tw-p-4">
<div class="purple-bg-grad reveal-up tw-absolute tw-right-[20%] tw-top-[20%] tw-h-[200px] tw-w-[200px]"
></div>
<h2 class="reveal-up tw-text-6xl max-lg:tw-text-4xl tw-text-center tw-leading-normal tw-uppercase">
<span class="tw-font-semibold">Build your own AI Apps </span>
<br>
<span class="tw-font-serif">on top of Pixa APIs</span>
</h2>
<p class="reveal-up tw-mt-8 tw-max-w-[650px] tw-text-gray-900 dark:tw-text-gray-200 tw-text-center max-md:tw-text-sm">
Pixa's Playground is powered by Pixa's cutting-edge LLM API endpoints. Our powerful models simplify task automation, offering
advanced capabilities in summarization, text generation, and Q&A handling.
</p>
<div class="reveal-up tw-flex tw-mt-8">
<a href="#"
target="_blank"
rel="noopener"
class="tw-shadow-md hover:tw-shadow-xl dark:tw-shadow-gray-800 tw-transition-all tw-duration-300
tw-border-[1px] tw-p-3 tw-px-4 tw-border-black dark:tw-border-white tw-rounded-md">
Check Pixa APIs
</a>
</div>
</div>
</section>
<section
class="tw-relative tw-flex tw-max-w-[100vw] tw-flex-col tw-place-content-center tw-place-items-center tw-overflow-hidden"
>
<div
class="tw-mt-8 tw-flex tw-flex-col tw-w-full tw-h-full tw-place-items-center tw-gap-5"
>
<div
class="reveal-up tw-mt-5 tw-flex tw-flex-col tw-gap-3 tw-text-center"
>
<h2
class="tw-text-6xl tw-font-medium max-md:tw-text-3xl tw-p-2"
>
Experience all the benefits of AI
</h2>
</div>
<div
class="tw-mt-6 tw-flex tw-flex-col tw-max-w-[1150px] max-lg:tw-max-w-full tw-h-full
tw-p-4 max-lg:tw-place-content-center tw-gap-8 "
>
<div class="max-xl:tw-flex max-xl:tw-flex-col tw-place-items-center tw-grid tw-grid-cols-3 tw-gap-8
tw-place-content-center tw-auto-rows-auto">
<div class="reveal-up tw-w-[350px] tw-h-[540px] tw-flex max-md:tw-w-full">
<a href="#" class=" tw-relative tw-p-10 tw-transition-all tw-duration-300 tw-group/card tw-gap-5 tw-flex
tw-flex-col tw-w-full tw-h-full tw-bg-[#f6f7fb] dark:tw-bg-[#171717] tw-rounded-3xl
hover:tw-scale-[1.02]">
<div class="tw-overflow-hidden tw-w-full tw-min-h-[180px] tw-h-[180px]">
<img src="./assets/images/home/api.png" class="tw-w-full tw-object-contain tw-h-auto"
alt="unified interface">
<!-- <i class="bi bi-grid-1x2-fill"></i> -->
</div>
<h2 class="tw-text-3xl max-md:tw-text-2xl tw-font-medium">Unified interface</h2>
<p class="tw-text-base tw-leading-normal tw-text-gray-800 dark:tw-text-gray-200">
Our's is the only unified AI Interface tool brings together all your favorite chat models into one seamless platform. No more juggling between different AI systems—easily manage and interact with multiple chatbots from a single interface.
</p>
<div class="tw-flex tw-items-center tw-gap-2 tw-mt-auto">
<span>Learn more</span>
<i class="bi bi-arrow-right tw-transform tw-transition-transform tw-duration-300 group-hover/card:tw-translate-x-2"></i>
</div>
</a>
</div>
<div class="reveal-up tw-w-[350px] tw-h-[540px] tw-flex max-md:tw-w-full">
<a href="#" class=" tw-relative tw-p-10 tw-transition-all tw-duration-300 tw-group/card tw-gap-5 tw-flex
tw-flex-col tw-w-full tw-h-full tw-bg-[#f6f7fb] dark:tw-bg-[#171717] tw-rounded-3xl
hover:tw-scale-[1.02]">
<div class="tw-w-full tw-min-h-[180px] tw-h-[180px] tw-overflow-hidden">
<img src="./assets/images/home/api.png"
alt="API" class="tw-w-full tw-h-auto tw-object-contain">
<!-- <i class="bi bi-grid-1x2-fill"></i> -->
</div>
<h2 class="tw-text-3xl max-md:tw-text-2xl tw-font-medium">API Access</h2>
<p class="tw-leading-normal tw-text-gray-800 dark:tw-text-gray-200">
Pixa's LLM API offers advanced summarization, text generation, and question-answering. Easily integrate with support for JSON, HTML, Markdown, and plain text, enhancing your applications with powerful language tools.
</p>
<div class="tw-flex tw-items-center tw-gap-2 tw-mt-auto">
<span>Learn more</span>
<i class="bi bi-arrow-right tw-transform tw-transition-transform tw-duration-300 group-hover/card:tw-translate-x-2"></i>
</div>
</a>
</div>
<div class="reveal-up tw-w-[350px] tw-h-[540px] tw-flex max-md:tw-w-full">
<a href="#" class=" tw-relative tw-p-10 tw-transition-all tw-duration-300 tw-group/card tw-gap-5 tw-flex
tw-flex-col tw-w-full tw-h-full tw-bg-[#f6f7fb] dark:tw-bg-[#171717] tw-rounded-3xl
hover:tw-scale-[1.02]">
<div class="tw-w-full tw-flex tw-place-contet-center tw-min-h-[180px] tw-h-[180px] tw-rounded-xl tw-overflow-hidden">
<img src="./assets/images/home/integrations1.png" class="tw-w-full tw-h-auto tw-object-contain"
alt="Prebuilt integrations">
</div>
<h2 class="tw-text-3xl max-md:tw-text-2xl tw-font-medium">Pre-built Tools</h2>
<p class="tw-leading-normal tw-text-gray-800 dark:tw-text-gray-200">
Pixa offers pre-built AI integrations for diverse creative tasks including image, video, music, and PDF generation, simplifying advanced feature integration into your apps.
</p>
<div class="tw-flex tw-items-center tw-gap-2 tw-mt-auto">
<span>Learn more</span>
<i class="bi bi-arrow-right tw-transform tw-transition-transform tw-duration-300 group-hover/card:tw-translate-x-2"></i>
</div>
</a>
</div>
</div>
<div class="reveal-up tw-w-full md:tw-h-[350px] max-md:tw-min-h-[350px] tw-flex">
<a href="#" class=" tw-relative tw-p-10 tw-transition-all tw-duration-300 tw-group/card tw-gap-5 tw-flex
max-md:tw-flex-col tw-w-full tw-h-full tw-bg-[#f6f7fb] dark:tw-bg-[#171717] tw-rounded-3xl
hover:tw-scale-[1.02]">
<div class="tw-text-6xl tw-overflow-hidden tw-rounded-xl tw-w-full tw-h-full max-md:tw-h-[180px]">
<img src="./assets/images/home/ai-models.png" class="tw-w-full tw-object-contain tw-h-full"
alt="AI models">
<!-- <i class="bi bi-grid-1x2-fill"></i> -->
</div>
<div class="tw-flex tw-flex-col tw-gap-4">
<h2 class="tw-text-3xl max-md:tw-text-2xl tw-font-medium">Multiple AI models</h2>
<p class="tw-leading-normal tw-text-gray-800 dark:tw-text-gray-200">
Pixa supports various AI models, including ChatGPT, Gemini, Claude, Mistral and more, providing a range of advanced capabilities for various language and creative tasks.
</p>
<div class="tw-flex tw-items-center tw-gap-2 tw-mt-auto">
<span>Learn more</span>
<i class="bi bi-arrow-right tw-transform tw-transition-transform tw-duration-300 group-hover/card:tw-translate-x-2"></i>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<section
class="tw-relative tw-mt-10 tw-flex tw-min-h-[100vh] tw-w-full tw-max-w-[100vw] tw-flex-col tw-place-items-center lg:tw-p-6"
>
<div
class="reveal-up tw-mt-[5%] tw-flex tw-h-full tw-w-full tw-place-content-center
tw-gap-2 tw-p-4 max-lg:tw-max-w-full max-lg:tw-flex-col"
>
<div
class="tw-relative tw-flex tw-max-w-[30%] max-lg:tw-max-w-full tw-flex-col
tw-place-items-start tw-gap-4 tw-p-2 max-lg:tw-place-items-center
max-lg:tw-place-content-center max-lg:tw-w-full"
>
<div
class="tw-top-40 tw-flex tw-flex-col lg:tw-sticky tw-place-items-center tw-max-h-fit tw-max-w-[850px] max-lg:tw-max-h-fit max-lg:tw-max-w-[320px] tw-overflow-hidden"
>
<h2 class="tw-text-5xl tw-font-serif tw-text-center tw-font-medium max-md:tw-text-3xl"
>
Pre-built AI Tools
</h2>
<a href="http://" class="btn !tw-mt-8 !tw-bg-transparent !tw-text-black
!tw-border-[1px] !tw-border-black
dark:!tw-border-white dark:!tw-text-white">
Start Chat
</a>
</div>
</div>
<div
class="tw-flex tw-flex-col tw-gap-10 tw-h-full tw-max-w-1/2 max-lg:tw-max-w-full tw-px-[10%]
max-lg:tw-px-4 max-lg:tw-gap-3 max-lg:tw-w-full lg:tw-top-[20%]
tw-place-items-center
"
>
<div class="reveal-up tw-h-[240px] tw-w-[450px] max-md:tw-w-full">
<a href="#"
class="tw-flex tw-w-full tw-h-full tw-gap-8 tw-rounded-xl
hover:tw-shadow-lg dark:tw-shadow-[#171717] tw-duration-300 tw-transition-all
tw-p-8 tw-group/card"
>
<div class="tw-text-4xl max-md:tw-text-2xl">
<i class="bi bi-code-square"></i>
</div>
<div class="tw-flex tw-flex-col tw-gap-4">
<h3 class="tw-text-2xl max-md:tw-text-xl">
AI code generator
</h3>
<p class="tw-text-gray-800 dark:tw-text-gray-100 max-md:tw-text-sm">
AI code generation tools to create code from natural language or patterns, streamlining development and improving efficiency.
</p>
<div class="tw-mt-auto tw-flex tw-gap-2 tw-underline tw-underline-offset-4">
<span>Learn more</span>
<i class="bi bi-arrow-up-right group-hover/card:tw--translate-y-1
group-hover/card:tw-translate-x-1 tw-duration-300 tw-transition-transform"></i>
</div>
</div>
</a>
</div>
<div class="reveal-up tw-h-[240px] tw-w-[450px] max-md:tw-w-full">
<a href="#"
class="tw-flex tw-w-full tw-h-full tw-gap-8 tw-rounded-xl
hover:tw-shadow-lg dark:tw-shadow-[#171717] tw-duration-300 tw-transition-all tw-p-8 tw-group/card"
>
<div class="tw-text-4xl max-md:tw-text-2xl">
<i class="bi bi-file-pdf-fill"></i>
</div>
<div class="tw-flex tw-flex-col tw-gap-4">
<h3 class="tw-text-2xl max-md:tw-text-xl">
PDF generator
</h3>
<p class="tw-text-gray-800 dark:tw-text-gray-100 max-md:tw-text-sm">
Use AI tools to automate PDF creation and content extraction, improving document management and data processing.
</p>
<div class="tw-mt-auto tw-flex tw-gap-2 tw-underline tw-underline-offset-4">
<span>Learn more</span>
<i class="bi bi-arrow-up-right group-hover/card:tw--translate-y-1
group-hover/card:tw-translate-x-1 tw-duration-300 tw-transition-transform"></i>
</div>
</div>
</a>
</div>
<div class="reveal-up tw-h-[240px] tw-w-[450px] max-md:tw-w-full">
<a href="#"
class="tw-flex tw-w-full tw-h-full tw-gap-8 tw-rounded-xl hover:tw-shadow-lg tw-duration-300
tw-transition-all dark:tw-shadow-[#171717] tw-p-8 tw-group/card"
>
<div class="tw-text-4xl max-md:tw-text-2xl">
<i class="bi bi-image-fill"></i>
</div>
<div class="tw-flex tw-flex-col tw-gap-4">
<h3 class="tw-text-2xl max-md:tw-text-xl">
Image generation
</h3>
<p class="tw-text-gray-800 dark:tw-text-gray-100 max-md:tw-text-sm">
Prebuilt AI tools for image generation create visuals from text or patterns, enhancing design and creative projects.
</p>
<div class="tw-mt-auto tw-flex tw-gap-2 tw-underline tw-underline-offset-4">
<span>Learn more</span>
<i class="bi bi-arrow-up-right group-hover/card:tw--translate-y-1
group-hover/card:tw-translate-x-1 tw-duration-300 tw-transition-transform"></i>
</div>
</div>
</a>
</div>
<div class="reveal-up tw-h-[240px] tw-w-[450px] max-md:tw-w-full">
<a href="#"
class="tw-flex tw-w-full dark:tw-shadow-[#171717] tw-h-full tw-gap-8 tw-rounded-xl hover:tw-shadow-lg tw-duration-300
tw-transition-all tw-p-8 tw-group/card"
>
<div class="tw-text-4xl max-md:tw-text-2xl">
<i class="bi bi-bar-chart-line-fill"></i>
</div>
<div class="tw-flex tw-flex-col tw-gap-4">
<h3 class="tw-text-2xl max-md:tw-text-xl">
AI Analytics
</h3>
<p class="tw-text-gray-800 dark:tw-text-gray-100 max-md:tw-text-sm">
Our AI analytics tools analyze data patterns and trends, providing actionable insights and enhancing decision-making.
</p>
<div class="tw-mt-auto tw-flex tw-gap-2 tw-underline tw-underline-offset-4">
<span>Learn more</span>
<i class="bi bi-arrow-up-right group-hover/card:tw--translate-y-1
group-hover/card:tw-translate-x-1 tw-duration-300 tw-transition-transform"></i>
</div>
</div>
</a>
</div>
<div class="reveal-up tw-h-[240px] tw-w-[450px] max-md:tw-w-full">
<a href="#"
class="tw-flex tw-w-full tw-h-full tw-gap-8 tw-rounded-xl dark:tw-shadow-[#171717] hover:tw-shadow-lg tw-duration-300
tw-transition-all tw-p-8 tw-group/card"
>
<div class="tw-text-4xl max-md:tw-text-2xl">
<i class="bi bi-music-note-beamed"></i>
</div>
<div class="tw-flex tw-flex-col tw-gap-4">
<h3 class="tw-text-2xl max-md:tw-text-xl">
Music generator
</h3>
<p class="tw-text-gray-800 dark:tw-text-gray-100 max-md:tw-text-sm">
Access our AI music generation tools create original compositions
from input parameters, enabling effortless music creation for various needs.
</p>
<div class="tw-mt-auto tw-flex tw-gap-2 tw-underline tw-underline-offset-4">
<span>Learn more</span>
<i class="bi bi-arrow-up-right group-hover/card:tw--translate-y-1
group-hover/card:tw-translate-x-1 tw-duration-300 tw-transition-transform"></i>
</div>
</div>
</a>
</div>
<div class="reveal-up tw-h-[240px] tw-w-[450px] max-md:tw-w-full">
<a href="#"
class="tw-flex tw-w-full tw-h-full tw-gap-8 tw-rounded-xl
hover:tw-shadow-lg dark:tw-shadow-[#171717] tw-duration-300 tw-transition-all tw-p-8 tw-group/card"
>
<div class="tw-text-4xl max-md:tw-text-2xl">
<i class="bi bi-camera-video-fill"></i>
</div>
<div class="tw-flex tw-flex-col tw-gap-4">
<h3 class="tw-text-2xl max-md:tw-text-xl">
Video generator
</h3>
<p class="tw-text-gray-800 dark:tw-text-gray-100 max-md:tw-text-sm">
Use our AI video generation tools create videos from text or templates, streamlining content creation and production.
</p>
<div class="tw-mt-auto tw-flex tw-gap-2 tw-underline tw-underline-offset-4">
<span>Learn more</span>
<i class="bi bi-arrow-up-right group-hover/card:tw--translate-y-1
group-hover/card:tw-translate-x-1 tw-duration-300 tw-transition-transform"></i>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<section
class="tw-relative tw-flex tw-w-full tw-min-h-[110vh] max-md:tw-min-h-[80vh] tw-flex-col tw-place-content-center tw-place-items-center tw-overflow-hidden"
>
<div class="tw-w-full max-lg:tw-max-w-full tw-place-content-center tw-items-center
tw-flex tw-flex-col tw-max-w-[80%] tw-gap-4 tw-p-4">
<h3 class="reveal-up tw-text-5xl tw-font-medium max-md:tw-text-3xl tw-text-center tw-leading-normal">
Additional Features
</h3>
<!-- <p class="reveal-up tw-mt-3 tw-max-w-[600px] tw-text-center ">
</p> -->
<div class="tw-mt-8 tw-relative tw-gap-10 tw-p-4 tw-grid tw-place-items-center tw-grid-cols-3 max-lg:tw-flex max-lg:tw-flex-col">
<div class="reveal-up tw-w-[350px] tw-border-[1px] tw-h-[400px] tw-rounded-md tw-place-items-center tw-p-4
tw-bg-[#f2f3f4] max-md:tw-w-[320px] dark:tw-bg-[#141414] dark:tw-border-[#1f2123] tw-flex tw-flex-col tw-gap-3">
<div class="tw-w-full tw-h-[250px]
tw-p-4
tw-rounded-xl
tw-backdrop-blur-2xl
tw-overflow-hidden tw-flex tw-place-content-center">
<img src="./assets/images/home/prompts2.png"
alt="Prompt library" class="tw-w-auto tw-h-full tw-object-contain">
</div>
<h3 class="tw-text-2xl">
Prompt Library
</h3>
<p class="tw-text-gray-700 dark:tw-text-gray-300 tw-px-4 tw-text-center tw-text-sm">
Forget about writing your own prompt, use the prompt templates and supercharge your
workflow.
</p>
</div>
<div class="reveal-up tw-w-[350px] max-md:tw-w-[320px] tw-border-[1px] tw-h-[400px] tw-rounded-md tw-place-items-center tw-p-4
tw-bg-[#f2f3f4] dark:tw-bg-[#141414] dark:tw-border-[#1f2123] tw-flex tw-flex-col tw-gap-3">
<div class="tw-w-full tw-h-[250px]
tw-p-4
tw-rounded-xl
tw-backdrop-blur-2xl
tw-overflow-hidden tw-flex tw-place-content-center">
<img src="./assets/images/home/search.png"
alt="Web search" class="tw-w-auto tw-h-full tw-object-contain">
</div>
<h3 class="tw-text-2xl">
Real-time web search
</h3>
<p class="tw-text-gray-700 dark:tw-text-gray-300 tw-px-4 tw-text-center tw-text-sm">
Our Real-time web search AI Bot provides instant, live search results directly within the AI chat playground.
</p>
</div>
<div class="reveal-up tw-w-[350px] max-md:tw-w-[320px] tw-border-[1px] tw-h-[400px] tw-rounded-lg tw-place-items-center tw-p-4
tw-bg-[#f2f3f4] dark:tw-bg-[#141414] dark:tw-border-[#1f2123] tw-flex tw-flex-col tw-gap-3">
<div class="tw-w-full tw-h-[250px]
tw-p-4
tw-rounded-xl
tw-backdrop-blur-2xl
tw-overflow-hidden tw-flex tw-place-content-center">
<img src="./assets/images/home/image.png"
alt="Image generation" class="tw-w-auto tw-h-full tw-object-contain">
</div>
<h3 class="tw-text-2xl">
Image Generation
</h3>
<p class="tw-text-gray-700 dark:tw-text-gray-300 tw-px-4 tw-text-center tw-text-sm">
Generate Image instantly from multiple models, create visuals from text descriptions or templates.
</p>
</div>
<div class="reveal-up tw-w-[350px] max-md:tw-w-[320px] tw-border-[1px] tw-h-[400px] tw-rounded-lg tw-place-items-center tw-p-4
tw-bg-[#f2f3f4] dark:tw-bg-[#141414] dark:tw-border-[#1f2123] tw-flex tw-flex-col tw-gap-3">
<div class="tw-w-full tw-h-[250px]
tw-p-4
tw-rounded-xl
tw-backdrop-blur-2xl
tw-overflow-hidden tw-flex tw-place-content-center">
<img src="./assets/images/home/history.png"
alt="History" class="tw-w-auto tw-h-full tw-object-contain">
</div>
<h3 class="tw-text-2xl">
History
</h3>
<p class="tw-text-gray-700 dark:tw-text-gray-300 tw-px-4 tw-text-center tw-text-sm">
All of the models can recall previous topic, so you
can continue your conversation at any point of time.
</p>
</div>
<div class="reveal-up tw-w-[350px] max-md:tw-w-[320px] tw-border-[1px] tw-h-[400px] tw-rounded-lg tw-place-items-center tw-p-4
tw-bg-[#f2f3f4] dark:tw-bg-[#141414] dark:tw-border-[#1f2123] tw-flex tw-flex-col tw-gap-3">
<div class="tw-w-full tw-h-[250px]
tw-p-4
tw-rounded-xl
tw-backdrop-blur-2xl
tw-overflow-hidden tw-flex tw-place-content-center">
<img src="./assets/images/home/import.png"
alt="Import content" class="tw-w-auto tw-h-full tw-object-contain">
</div>
<h3 class="tw-text-2xl">
Import content
</h3>
<p class="tw-text-gray-700 dark:tw-text-gray-300 tw-px-4 tw-text-center tw-text-sm">
Effortlessly import PDFs, images, and documents. Use AI to ask questions, extract information, and summarize documents.
</p>
</div>
<div class="reveal-up tw-w-[350px] max-md:tw-w-[320px] tw-border-[1px] tw-h-[400px] tw-rounded-lg tw-place-items-center tw-p-4
tw-bg-[#f2f3f4] dark:tw-bg-[#141414] dark:tw-border-[#1f2123] tw-flex tw-flex-col tw-gap-3">
<div class="tw-w-full tw-h-[250px]
tw-p-4
tw-rounded-xl
tw-backdrop-blur-2xl
tw-overflow-hidden tw-flex tw-place-content-center">
<img src="./assets/images/home/multilingual.png"
alt="Multilingual" class="tw-w-auto tw-h-full tw-object-contain">