-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1036 lines (1011 loc) · 49.5 KB
/
index.html
File metadata and controls
1036 lines (1011 loc) · 49.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
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" />
<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=Geist+Mono:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./style.css" />
<title>Mintlify - The Intelligent Knowledge Platform</title>
</head>
<body>
<header>
<!-- Navbar -->
<nav>
<div class="nav-logo-link-wrapper">
<div class="logo">
<img src="./assets/mintlify-wordmark.svg" />
</div>
<ul class="link">
<li><a href="">Resources</a></li>
<li><a href="">Documentation</a></li>
<li><a href="">Customers</a></li>
<li><a href="">Blog</a></li>
<li><a href="">Pricing</a></li>
</ul>
</div>
<div class="nav-button-wraper">
<button class="contact-sales-btn">Contact sales</button>
<button class="start-for-free-btn">Start for free</button>
</div>
</nav>
<main>
<section class="hero">
<!-- badge -->
<div class="badge">
<span>NEW</span>
<p>Self-updating docs with agent suggestions</p>
<svg
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="shrink-0 select-none size-4 text-white"
>
<path
d="M9 1C4.589 1 1 4.589 1 9C1 13.411 4.589 17 9 17C13.411 17 17 13.411 17 9C17 4.589 13.411 1 9 1ZM11.53 9.53L8.53 12.53C8.384 12.676 8.192 12.75 8 12.75C7.808 12.75 7.616 12.677 7.47 12.53C7.177 12.237 7.177 11.762 7.47 11.469L9.94 8.999L7.47 6.529C7.177 6.236 7.177 5.761 7.47 5.468C7.763 5.175 8.238 5.175 8.531 5.468L11.531 8.468C11.824 8.761 11.824 9.236 11.531 9.529L11.53 9.53Z"
fill="currentColor"
></path>
</svg>
</div>
<!-- main heading -->
<h1>The Intelligent Knowledge Platform</h1>
<!-- Subheading -->
<p class="subheading">
Get the knowledge infrastructure that keeps AI agents
<br />accurate, reliable, and up to date.
</p>
<!-- Email input + CTA button -->
<form>
<input type="text" placeholder="Email address" />
<button class="email-cta-btn">Start now</button>
</form>
<!-- Large background illustration -->
<div class="hero-background-illustration">
<img src="./assets/hero-image-light.svg" alt="" />
</div>
</section>
<!-- Trusted By / Logos -->
<section class="company-wrapper">
<div class="company">
<div class="company-container">
<img src="./assets/anthropic.svg" alt="anthropic logo" />
</div>
<div class="company-container">
<img
width="120px"
src="./assets/coinbase.svg"
alt="coinbase logo"
/>
</div>
<div class="company-container">
<img
width="120px"
src="./assets/microsoft.svg"
alt="microsoft logo"
/>
</div>
<div class="company-container">
<img
style="filter: brightness(0)"
src="./assets/perplexity.svg"
alt=""
/>
</div>
<div class="company-container">
<img src="./assets/hubspot.svg" alt="hubspot logo" />
</div>
<div class="company-container">
<img
style="filter: brightness(0)"
src="./assets/x.svg"
alt="twitter logo"
/>
</div>
<div class="company-container">
<img
style="width: 120px"
src="./assets/paypal.svg"
alt="paypal logo"
/>
</div>
<div class="company-container">
<img src="./assets/lovable.svg" alt="lovable logo" />
</div>
</div>
</section>
<!-- feature section -->
<section class="feature">
<h1>Built for the intelligence age</h1>
<p>
Integrate AI into every part of your docs lifecycle. Woven into how
your <br />
knowledge is written, maintained, and understood by both users and
LLMs.
</p>
<div class="feature-card">
<div class="feature-card-layout">
<h3 class="green-small-heading">LLMs.TXT & MCP</h3>
<h2 class="feature-heading-main">Built for both people and AI</h2>
<p>
Ensure your product shows up in the AI<br />
workflows users already rely on. We support<br />
llms.txt, MCP, and whatever comes next.
</p>
<video
width="400px"
autoplay
loop
muted
src="./assets/feature-1.mp4"
></video>
</div>
<div class="feature-card-layout">
<h3 class="green-small-heading">AGENT</h3>
<h2 class="feature-heading-main">
Self-updating knowledge management
</h2>
<p>
Draft, edit, and maintain content with a <br />context-aware
agent. Move faster and more<br />
consistently without the documentation debt.
</p>
<video
width="400px"
autoplay
loop
muted
src="./assets/feature-2.mp4"
></video>
</div>
</div>
<div class="assistant-card">
<div class="text-wrapper">
<h3 class="green-small-heading">ASSISTANT</h3>
<h2 class="feature-heading-main">
Intelligent assistance for your users
</h2>
<p>
Turn every documentation visit into a guided conversation.
Your<br />
AI assistant understands context and delivers what users need.
</p>
</div>
<video
autoplay
loop
muted
width="930px"
src="./assets/feature-3.mp4"
></video>
</div>
</section>
<!-- Enterprise Features Section -->
<section class="enterprise-feature">
<div class="enterprise-header">
<div class="enterprise-feature-text-wrapper">
<h3 class="green-small-heading">Enterprise-reinvention</h3>
<h1>Bring intelligence to <br />enterprise knowledge</h1>
<p>
Modernize without the rebuild with enterprise-grade professional
service & security.
</p>
</div>
<div style="display: flex; align-items: end">
<button class="explore-for-enterprise-btn">
Explore for enterprise
</button>
</div>
</div>
<div class="enterprise-feature-card-wrapper">
<div class="enterprise-feature-card">
<div style="color: green; width: 32px">
<svg
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="shrink-0 select-none size-3 text-brand"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M5.50781 2.75C5.50781 1.3689 6.62671 0.25 8.00781 0.25C9.3889 0.25 10.5078 1.3689 10.5078 2.75C10.5078 4.1311 9.3889 5.25 8.00781 5.25C6.62671 5.25 5.50781 4.1311 5.50781 2.75Z"
fill="currentColor"
></path>
<path
opacity="0.2"
d="M10.2991 3.75188C11.6788 4.38813 12.7509 5.57959 13.228 7.03861C13.3568 7.4323 13.7803 7.64709 14.174 7.51835C14.5677 7.38961 14.7825 6.96609 14.6537 6.57239C13.9915 4.54733 12.4324 2.9301 10.4446 2.18878C10.4859 2.36918 10.5078 2.55703 10.5078 2.75C10.5078 3.10632 10.4333 3.44518 10.2991 3.75188Z"
fill="currentColor"
></path>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M10.696 11.75C10.696 10.3689 11.8149 9.25 13.196 9.25C14.5771 9.25 15.696 10.3689 15.696 11.75C15.696 13.1311 14.5771 14.25 13.196 14.25C11.8149 14.25 10.696 13.1311 10.696 11.75Z"
fill="currentColor"
></path>
<path
opacity="0.2"
d="M11.1854 13.2362C9.9428 14.1175 8.37078 14.4517 6.86472 14.1337C6.45945 14.0481 6.06153 14.3072 5.97593 14.7125C5.89034 15.1178 6.1495 15.5157 6.55477 15.6013C8.64416 16.0426 10.8294 15.4991 12.4672 14.1421C11.9481 13.9843 11.5007 13.6621 11.1854 13.2362Z"
fill="currentColor"
></path>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.319344 11.75C0.319344 10.3689 1.43823 9.25 2.81934 9.25C4.20044 9.25 5.31934 10.3689 5.31934 11.75C5.31934 13.1311 4.20044 14.25 2.81934 14.25C1.43823 14.25 0.319344 13.1311 0.319344 11.75Z"
fill="currentColor"
></path>
<path
opacity="0.2"
d="M3.90389 5.07739C4.18047 4.76904 4.15471 4.29487 3.84636 4.01829C3.53801 3.74172 3.06384 3.76747 2.78726 4.07582C1.35956 5.66754 0.739434 7.83649 1.09963 9.9352C1.4803 9.5743 1.97448 9.3321 2.52317 9.2673C2.38111 7.75132 2.87666 6.22263 3.90389 5.07739Z"
fill="currentColor"
></path>
</svg>
</div>
<h2>Build with Partnership</h2>
<p>
Direct, white-glove access to our documentation experts.<br />
Dedicated migration support and guidance tailored to<br />
your setup, and elevated support SLAs.
</p>
</div>
<div class="enterprise-feature-card">
<div style="color: green; width: 32px">
<svg
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="shrink-0 select-none size-8 text-brand"
>
<path
opacity="0.2"
fill-rule="evenodd"
clip-rule="evenodd"
d="M8.16963 1.22703C8.33372 1.16922 8.67031 1.05063 9.00028 1.05075C9.1795 1.05082 9.36084 1.079 9.53357 1.13368L14.7836 2.81368C15.5071 3.04612 16 3.71943 16 4.48V11C16 12.8725 14.6025 14.2314 13.2749 15.1143C12.1533 15.8602 10.9062 16.4082 9.63302 16.8379C9.57968 16.8559 9.49355 16.8849 9.40738 16.9058C9.09216 16.9819 8.76807 16.9684 8.46011 16.8683C7.80803 16.6572 6.25089 16.1022 4.84192 15.1909C3.47441 14.3064 2 12.9239 2 11V4.48C2 3.71932 2.49139 3.04506 3.21675 2.81358C4.86562 2.28594 6.53686 1.80232 8.16963 1.22703Z"
fill="currentColor"
></path>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M8.99999 5.5C7.75726 5.5 6.75061 6.50714 6.75061 7.74938C6.75061 8.72872 7.37626 9.56194 8.25 9.87075V12.5C8.25 12.9142 8.58579 13.25 9 13.25C9.41421 13.25 9.75 12.9142 9.75 12.5V9.87074C10.6237 9.56193 11.2494 8.72871 11.2494 7.74938C11.2494 6.50714 10.2427 5.5 8.99999 5.5Z"
fill="currentColor"
></path>
</svg>
</div>
<h2>Compliance and access control</h2>
<p>
Compliant with SOC 2, and in the process for ISO/27001 and
GDPR<br />
compliance to meet your internal and external data
requirements.<br />
Secure access and provisioning with SAML-based SSO.
</p>
</div>
</div>
<div class="enterprise-feature-banner">
<h3 class="enterprise-small-heading green-small-heading">
Customer Story
</h3>
<h2>
See how Anthropic accelerates <br />
AI developments with Mintlify
</h2>
<p>
Read Story
<span
><svg
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="shrink-0 size-2.5 -rotate-90 group-hover:translate-x-0.5 transition-transform duration-150 ease-in-out select-none"
stroke-width="3"
>
<path
d="M15.25 6.5L9 12.75L2.75 6.5"
stroke="currentColor"
stroke-width="3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
></span
>
</p>
<div class="feature-banner-text">
<div class="card">
<h1>2M+</h1>
<p>Monthly active developers</p>
</div>
<div class="card">
<h1>3+</h1>
<p>
Product serviced: Claude<br />
API, MCP, and Claude Code
</p>
</div>
</div>
</div>
<div class="enterprise-feature-company">
<div class="company-container">
<img src="./assets/anthropic.svg" alt="anthropic logo" />
</div>
<div class="company-container">
<img
width="120px"
src="./assets/coinbase.svg"
alt="coinbase logo"
/>
</div>
<div class="company-container">
<img src="./assets/hubspot.svg" alt="hubspot logo" />
</div>
<div class="company-container">
<img src="./assets/zaiper.svg" alt="zapier logo" />
</div>
<div class="company-container">
<img src="./assets/atandt.svg" alt="at&t logo" />
</div>
</div>
</section>
<!-- Case Studies / Customer Stories -->
<section class="case-study">
<div class="case-study-heading">
<h3 class="green-small-heading">Customers</h3>
<h1>Unlock knowledge for any industry</h1>
<p>
From frontier AI companies to consumer brands, leaders across
industries scale<br />
with Mintlify.
</p>
</div>
<div class="carousel">
<div class="track">
<div class="carousel-card">
<div
class="image-container"
style="background-image: url(./assets/perplexity.png)"
>
<img
width="180px"
src="./assets/perplexity-white.svg"
alt=""
/>
</div>
<p>
How Perplexity transformed its documentation into an AI-native
developer experience that matches the pace of its product
development
</p>
<button>
Read Story
<span
><svg
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="shrink-0 size-2.5 -rotate-90 group-hover:translate-x-0.5 transition-transform duration-150 ease-in-out select-none"
stroke-width="3"
>
<path
d="M15.25 6.5L9 12.75L2.75 6.5"
stroke="currentColor"
stroke-width="3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
></span
>
</button>
</div>
<div class="carousel-card">
<div
class="image-container"
style="background-image: url(./assets/x.png)"
>
<img width="40px" src="./assets/x.svg" alt="" />
</div>
<p>
How X is using Mintlify to power the developer experience for
the global town square
</p>
<button>
Read Story
<span
><svg
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="shrink-0 size-2.5 -rotate-90 group-hover:translate-x-0.5 transition-transform duration-150 ease-in-out select-none"
stroke-width="3"
>
<path
d="M15.25 6.5L9 12.75L2.75 6.5"
stroke="currentColor"
stroke-width="3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
></span
>
</button>
</div>
<div class="carousel-card">
<div
class="image-container"
style="background-image: url(./assets/kalshi.png)"
>
<img width="100px" src="./assets/kalshi.svg" alt="" />
</div>
<p>
How Kalshi helps developers discover what's possible faster
and ultimately drive broader adoption of its prediction
markets.
</p>
<button>
Read Story
<span
><svg
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="shrink-0 size-2.5 -rotate-90 group-hover:translate-x-0.5 transition-transform duration-150 ease-in-out select-none"
stroke-width="3"
>
<path
d="M15.25 6.5L9 12.75L2.75 6.5"
stroke="currentColor"
stroke-width="3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
></span
>
</button>
</div>
<div class="carousel-card">
<div
class="image-container"
style="background-image: url(./assets/x.png)"
>
<img width="40px" src="./assets/x.svg" alt="" />
</div>
<p>
How Perplexity transformed its documentation into an AI-native
developer experience that matches the pace of its product
development
</p>
<button>
Read Story
<span
><svg
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="shrink-0 size-2.5 -rotate-90 group-hover:translate-x-0.5 transition-transform duration-150 ease-in-out select-none"
stroke-width="3"
>
<path
d="M15.25 6.5L9 12.75L2.75 6.5"
stroke="currentColor"
stroke-width="3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
></span
>
</button>
</div>
<div class="carousel-card">
<div
class="image-container"
style="background-image: url(./assets/x.png)"
>
<img width="40px" src="./assets/x.svg" alt="" />
</div>
<p>
How Perplexity transformed its documentation into an AI-native
developer experience that matches the pace of its product
development
</p>
<button>
Read Story
<span
><svg
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="shrink-0 size-2.5 -rotate-90 group-hover:translate-x-0.5 transition-transform duration-150 ease-in-out select-none"
stroke-width="3"
>
<path
d="M15.25 6.5L9 12.75L2.75 6.5"
stroke="currentColor"
stroke-width="3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
></span
>
</button>
</div>
<div class="carousel-card">
<div class="image-container">
<img
width="180px"
src="./assets/perplexity-white.svg"
alt=""
/>
</div>
<p>
How Perplexity transformed its documentation into an AI-native
developer experience that matches the pace of its product
development
</p>
<button>
Read Story
<span
><svg
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="shrink-0 size-2.5 -rotate-90 group-hover:translate-x-0.5 transition-transform duration-150 ease-in-out select-none"
stroke-width="3"
>
<path
d="M15.25 6.5L9 12.75L2.75 6.5"
stroke="currentColor"
stroke-width="3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
></span
>
</button>
</div>
</div>
<div class="carousel-button">
<span
><img
style="rotate: 180deg"
width="28px"
src="./assets/right-left-circular.svg"
alt=""
/></span>
<span
><img
width="28px"
src="./assets/right-left-circular.svg"
alt=""
/></span>
</div>
</div>
</section>
<!-- Final Call-To-Action -->
<section class="cta">
<h1>
Make documentation<br />
your winning advantage
</h1>
<p>
Join the leaders of tomorrow to future proof your documentation
today.
</p>
<div class="cta-btn">
<button class="get-started-btn">Get started for free</button>
<button
class="get-started-btn"
style="background-color: #fff; color: #000"
>
Get a demo
</button>
</div>
<div class="cta-card-wrapper">
<div class="cta-card">
<div class="cta-card-icon">
<svg
viewBox=" 0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="shrink-0 select-none"
>
<path
opacity="0.2"
d="M7.56788 0.89724C8.72116 0.409204 10 1.2559 10 2.509V6H8.75C7.78379 6 7 6.78379 7 7.75V16.25C7 16.6631 7.33394 16.9981 7.74658 17H2.75C2.33579 17 2 16.6642 2 16.25V4.41199C2 3.7099 2.41973 3.07374 3.06862 2.79992L7.56788 0.89724Z"
fill="currentColor"
></path>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M8.75 6C7.78379 6 7 6.78379 7 7.75V16.25C7 16.6642 7.33579 17 7.75 17H15.25C15.6642 17 16 16.6642 16 16.25V7.75C16 6.78379 15.2162 6 14.25 6H8.75ZM10.25 9C10.6642 9 11 9.33579 11 9.75V10.25C11 10.6642 10.6642 11 10.25 11C9.83579 11 9.5 10.6642 9.5 10.25V9.75C9.5 9.33579 9.83579 9 10.25 9ZM13.5 9.75C13.5 9.33579 13.1642 9 12.75 9C12.3358 9 12 9.33579 12 9.75V10.25C12 10.6642 12.3358 11 12.75 11C13.1642 11 13.5 10.6642 13.5 10.25V9.75ZM10.25 12C10.6642 12 11 12.3358 11 12.75V13.25C11 13.6642 10.6642 14 10.25 14C9.83579 14 9.5 13.6642 9.5 13.25V12.75C9.5 12.3358 9.83579 12 10.25 12ZM13.5 12.75C13.5 12.3358 13.1642 12 12.75 12C12.3358 12 12 12.3358 12 12.75V13.25C12 13.6642 12.3358 14 12.75 14C13.1642 14 13.5 13.6642 13.5 13.25V12.75Z"
fill="currentColor"
></path>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M1 16.25C1 15.8358 1.33579 15.5 1.75 15.5H16.25C16.6642 15.5 17 15.8358 17 16.25C17 16.6642 16.6642 17 16.25 17H1.75C1.33579 17 1 16.6642 1 16.25Z"
fill="currentColor"
></path>
</svg>
</div>
<div>
<h2 style="text-align: center">Pricing on your terms</h2>
<p>Pick the plan that works best for you</p>
</div>
<a href="#"
>Pricing details
<span
><svg
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="shrink-0 size-2.5 -rotate-90 group-hover:translate-x-0.5 transition-transform duration-150 ease-in-out select-none"
stroke-width="3"
>
<path
d="M15.25 6.5L9 12.75L2.75 6.5"
stroke="currentColor"
stroke-width="3"
stroke-linecap="round"
stroke-linejoin="round"
></path></svg></span
></a>
</div>
<div class="cta-card">
<div class="cta-card-icon">
<svg
viewBox=" 0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="shrink-0 select-none"
>
<path
d="M5.37701 2.01401C3.78843 2.01401 2.56755 2.561 1.85582 2.9811C1.31588 3.29978 1.00101 3.87517 1.00101 4.48701V13.57C1.00101 14.7707 2.20639 15.6627 3.36965 15.2049C3.9013 14.9951 4.57667 14.8229 5.36584 14.822C6.60305 14.8203 7.5635 15.2391 8.13255 15.5674C8.39841 15.7201 8.69579 15.801 9.00001 15.801V3.05078C8.29992 2.62423 7.0284 2.01401 5.37701 2.01401Z"
fill="currentColor"
></path>
<path
opacity="0.2"
d="M12.623 2.01401C14.2116 2.01401 15.4325 2.561 16.1442 2.9811C16.6841 3.29978 16.999 3.87517 16.999 4.48701V13.57C16.999 14.7707 15.7936 15.6627 14.6304 15.2049C14.0987 14.9951 13.4233 14.8229 12.6342 14.822C11.397 14.8203 10.4379 15.2383 9.86882 15.5666C9.60296 15.7193 9.30422 15.801 9 15.801V3.05078C9.70009 2.62423 10.9716 2.01401 12.623 2.01401Z"
fill="currentColor"
></path>
</svg>
</div>
<div>
<h2 style="text-align: center">Start building</h2>
<p>Deploy your documentation in minutes</p>
</div>
<a href="#"
>Quickstart
<span
><svg
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="shrink-0 size-2.5 -rotate-90 group-hover:translate-x-0.5 transition-transform duration-150 ease-in-out select-none"
stroke-width="3"
>
<path
d="M15.25 6.5L9 12.75L2.75 6.5"
stroke="currentColor"
stroke-width="3"
stroke-linecap="round"
stroke-linejoin="round"
></path></svg></span
></a>
</div>
</div>
</section>
<!-- Footers Starts -->
<footer>
<div class="footer-head">
<div>
<svg
width="104"
height="24"
viewBox="0 0 104 24"
fill="black"
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
>
<path
d="M18.4725 9.60528V3.91396C18.4725 3.30323 17.977 2.81641 17.3754 2.81641H11.6867C10.7931 2.81641 9.90842 2.99342 9.08564 3.32977C8.26285 3.67497 7.51085 4.17064 6.88271 4.80793L6.83847 4.85219C6.00684 5.69305 5.41408 6.73749 5.11328 7.88815C5.65296 7.74653 6.2103 7.67572 6.76767 7.66687C8.25399 7.64916 9.71378 8.12713 10.8993 9.02111C11.9698 9.81771 12.7837 10.9153 13.2261 12.181C13.6861 13.4644 13.7392 14.8629 13.3942 16.1817C14.5354 15.8808 15.5883 15.2878 16.4288 14.4558L16.473 14.4115C17.1011 13.7831 17.6054 13.0307 17.9504 12.2075C18.2955 11.3844 18.4636 10.4993 18.4636 9.60528H18.4725Z"
fill="#18E299"
></path>
<path
d="M4.9434 9.50941C4.95221 7.76347 5.64849 6.08807 6.87361 4.83594L2.14058 9.57113C2.12296 9.58876 2.10532 9.59758 2.08769 9.61522C0.933084 10.7615 0.23681 12.2959 0.122231 13.9183C0.0164654 15.435 0.413078 16.934 1.2592 18.1862C1.33991 18.3056 1.5589 18.3449 1.68229 18.2303L4.58202 15.338C5.48985 14.4298 5.7719 13.0806 5.34002 11.8726C5.06679 11.1231 4.93459 10.3207 4.9434 9.50941Z"
fill="#0C8C5E"
></path>
<path
d="M16.4445 14.4121C15.5367 15.3027 14.3997 15.92 13.1658 16.1933C11.923 16.4667 10.6362 16.3873 9.43757 15.9641C9.43757 15.9641 9.42874 15.9641 9.41992 15.9641C8.21243 15.532 6.86394 15.8141 5.95612 16.7136L3.05634 19.6058C2.93295 19.7293 2.95057 19.9321 3.10041 20.0291C4.35197 20.8668 5.85035 21.2724 7.36632 21.1666C8.98806 21.052 10.5128 20.3553 11.6674 19.2002L11.7115 19.1561L16.4445 14.4209V14.4121Z"
fill="#0C8C5E"
></path>
<path
d="M96.2355 23.5H92.6842L95.1868 17.8513L90.1816 6.60156H93.7568L96.6734 13.6537C96.7753 13.9002 97.1246 13.8997 97.2259 13.653L100.12 6.60156H103.719L96.2355 23.5Z"
fill="var(--color-text-main)"
></path>
<path
d="M85.4483 18.5186V9.46164H83.041V6.60154H85.4483V5.05232C85.4483 3.63816 85.8773 2.5259 86.7353 1.71554C87.5933 0.90518 88.6818 0.5 90.0006 0.5C90.8109 0.5 91.5021 0.587392 92.0742 0.762175V3.64611C91.6928 3.5031 91.2479 3.4316 90.7394 3.4316C90.0244 3.4316 89.508 3.59049 89.1902 3.90828C88.8724 4.21018 88.7135 4.72659 88.7135 5.4575V6.60154H92.0742V9.46164H88.7135V18.5186H85.4483Z"
fill="var(--color-text-main)"
></path>
<path
d="M80.1204 4.64714C79.5643 4.64714 79.0797 4.44852 78.6666 4.05129C78.2534 3.63816 78.0469 3.14559 78.0469 2.57357C78.0469 2.00155 78.2534 1.51692 78.6666 1.11969C79.0797 0.706563 79.5643 0.5 80.1204 0.5C80.7084 0.5 81.2009 0.706563 81.5982 1.11969C82.0113 1.51692 82.2178 2.00155 82.2178 2.57357C82.2178 3.14559 82.0113 3.63816 81.5982 4.05129C81.2009 4.44852 80.7084 4.64714 80.1204 4.64714ZM78.4997 18.5186V6.60154H81.765V18.5186H78.4997Z"
fill="var(--color-text-main)"
></path>
<path
d="M72.8125 18.5182V0.642578H76.0778V18.5182H72.8125Z"
fill="var(--color-text-main)"
></path>
<path
d="M69.1256 18.6621C67.7909 18.6621 66.6945 18.2966 65.8365 17.5657C64.9943 16.8189 64.5733 15.7464 64.5733 14.3481V9.46211H62.166V6.60201H64.5733V3.28906H67.8385V6.60201H71.1992V9.46211H67.8385V13.7046C67.8385 14.4355 67.9974 14.9598 68.3152 15.2776C68.633 15.5795 69.1494 15.7305 69.8644 15.7305C70.3729 15.7305 70.8178 15.659 71.1992 15.516V18.3999C70.6271 18.5747 69.9359 18.6621 69.1256 18.6621Z"
fill="var(--color-text-main)"
></path>
<path
d="M49.9434 18.5191V6.60202H53.2086V7.47307C53.2086 7.62037 53.4091 7.6855 53.5066 7.57513C54.2346 6.75161 55.2713 6.33984 56.6169 6.33984C58.047 6.33984 59.1672 6.81653 59.9775 7.76989C60.8038 8.70737 61.2169 9.96263 61.2169 11.5357V18.5191H57.9516V12.0839C57.9516 11.21 57.7689 10.5347 57.4034 10.058C57.038 9.5654 56.5216 9.31911 55.8542 9.31911C55.0598 9.31911 54.4162 9.60512 53.9237 10.1771C53.447 10.7492 53.2086 11.5913 53.2086 12.7036V18.5191H49.9434Z"
fill="var(--color-text-main)"
></path>
<path
d="M45.8783 4.64714C45.3221 4.64714 44.8375 4.44852 44.4244 4.05129C44.0113 3.63816 43.8047 3.14559 43.8047 2.57357C43.8047 2.00155 44.0113 1.51692 44.4244 1.11969C44.8375 0.706563 45.3221 0.5 45.8783 0.5C46.4662 0.5 46.9587 0.706563 47.356 1.11969C47.7691 1.51692 47.9757 2.00155 47.9757 2.57357C47.9757 3.14559 47.7691 3.63816 47.356 4.05129C46.9587 4.44852 46.4662 4.64714 45.8783 4.64714ZM44.2575 18.5186V6.60154H47.5228V18.5186H44.2575Z"
fill="var(--color-text-main)"
></path>
<path
d="M38.7147 18.5191V12.1554C38.7147 10.2645 38.095 9.31911 36.8557 9.31911C36.1406 9.31911 35.5686 9.58923 35.1396 10.1295C34.7265 10.6697 34.504 11.4721 34.4722 12.5367V18.5191H31.207V12.1554C31.207 10.2645 30.5873 9.31911 29.3479 9.31911C28.617 9.31911 28.037 9.60512 27.608 10.1771C27.179 10.7492 26.9645 11.5913 26.9645 12.7036V18.5191H23.6992V6.60202H26.9645V7.48165C26.9645 7.62818 27.1615 7.69271 27.2578 7.58222C27.9791 6.75397 28.938 6.33984 30.1344 6.33984C31.7067 6.33984 32.8909 6.98895 33.687 8.28717C33.7498 8.38958 33.9044 8.38799 33.9668 8.28535C34.311 7.71964 34.7893 7.26975 35.4018 6.9357C36.1009 6.53846 36.808 6.33984 37.523 6.33984C38.9372 6.33984 40.0335 6.80858 40.8121 7.74606C41.5907 8.68353 41.98 9.97058 41.98 11.6072V18.5191H38.7147Z"
fill="var(--color-text-main)"
></path>
</svg>
</div>
<div class="social-logo">
<svg
width="21"
height="20"
viewBox="0 0 21 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
class="text-muted opacity-70 group-hover/social-link:opacity-100 transition-opacity duration-300"
>
<path
d="M11.4595 11.5714V18.889H8.06641V6.24428H11.2672L11.3238 9.39982H11.1202C11.452 8.3442 11.9534 7.52987 12.6244 6.95682C13.3031 6.37623 14.1777 6.08594 15.2484 6.08594C16.1231 6.08594 16.8846 6.27821 17.5331 6.66275C18.189 7.03976 18.6942 7.58642 19.0486 8.30273C19.4105 9.0115 19.5915 9.85977 19.5915 10.8475V18.889H16.1985V11.4356C16.1985 10.6515 15.9949 10.0369 15.5877 9.59209C15.1881 9.14722 14.6301 8.92479 13.9138 8.92479C13.4388 8.92479 13.0128 9.03035 12.6358 9.24148C12.2663 9.44506 11.976 9.74289 11.7649 10.135C11.5613 10.5271 11.4595 11.0059 11.4595 11.5714Z"
fill="currentColor"
></path>
<path
d="M1.77748 18.889V6.2442H5.17054V18.889H1.77748ZM3.47401 4.59292C2.96128 4.59292 2.52395 4.42326 2.16203 4.08396C1.8001 3.74465 1.61914 3.33372 1.61914 2.85115C1.61914 2.36858 1.8001 1.95765 2.16203 1.61834C2.52395 1.27903 2.96128 1.10938 3.47401 1.10938C3.98674 1.10938 4.42406 1.27903 4.78599 1.61834C5.15546 1.9501 5.34019 2.36104 5.34019 2.85115C5.34019 3.33372 5.15546 3.74465 4.78599 4.08396C4.42406 4.42326 3.98674 4.59292 3.47401 4.59292Z"
fill="currentColor"
></path>
</svg>
<svg
width="22"
height="20"
viewBox="0 0 22 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
class="text-muted opacity-70 group-hover/social-link:opacity-100 transition-opacity duration-300"
>
<mask
id="mask0_9208_2830"
style="mask-type: luminance"
maskUnits="userSpaceOnUse"
x="0"
y="0"
width="21"
height="20"
>
<path
d="M20.6055 0H0.605469V20H20.6055V0Z"
fill="white"
></path>
</mask>
<g mask="url(#mask0_9208_2830)">
<path
d="M12.1188 8.75562L18.0382 1.875H16.6357L11.4957 7.84938L7.39062 1.875H2.65625L8.86375 10.9094L2.65625 18.125H4.05875L9.48625 11.8156L13.8213 18.125H18.5563L12.1188 8.75562ZM10.1975 10.9888L9.56875 10.0894L4.56437 2.93125H6.71875L10.7575 8.70812L11.3863 9.6075L16.6363 17.1169H14.4819L10.1975 10.9888Z"
fill="currentColor"
></path>
</g>
</svg>
<svg
width="22"
height="20"
viewBox="0 0 22 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
class="text-muted opacity-70 group-hover/social-link:opacity-100 transition-opacity duration-300"
>
<mask
id="mask0_9208_2837"
style="mask-type: luminance"
maskUnits="userSpaceOnUse"
x="0"
y="0"
width="21"
height="20"
>
<path
d="M20.6055 0H0.605469V20H20.6055V0Z"
fill="white"
></path>
</mask>
<g mask="url(#mask0_9208_2837)">
<path
d="M10.6055 1.46484C15.4399 1.46484 19.3555 5.38046 19.3555 10.2149C19.3543 13.9742 16.9561 17.3142 13.3949 18.5161C12.9574 18.6036 12.793 18.3299 12.793 18.1005C12.793 17.8049 12.8043 16.8642 12.8043 15.6942C12.8043 14.8742 12.5311 14.3492 12.2136 14.0755C14.1605 13.8567 16.2061 13.113 16.2061 9.75546C16.2061 8.79296 15.8668 8.01609 15.3093 7.40421C15.3968 7.18546 15.703 6.28859 15.2218 5.08546C15.2218 5.08546 14.4886 4.84484 12.8155 5.98234C12.1155 5.78546 11.3718 5.68734 10.628 5.68734C9.88422 5.68734 9.14047 5.78546 8.44047 5.98234C6.76735 4.85609 6.03422 5.08546 6.03422 5.08546C5.55297 6.28859 5.85922 7.18546 5.94672 7.40421C5.38922 8.01671 5.04985 8.80421 5.04985 9.75546C5.04985 13.1024 7.08422 13.8574 9.0311 14.0761C8.77922 14.2949 8.54985 14.678 8.47297 15.2461C7.96985 15.4761 6.71172 15.848 5.92485 14.5242C5.76047 14.2617 5.2686 13.6167 4.57985 13.6274C3.84672 13.6386 4.28485 14.043 4.59047 14.2067C4.96235 14.4142 5.3886 15.1911 5.48735 15.443C5.66235 15.9349 6.2311 16.8761 8.42922 16.4711C8.42922 17.2042 8.44047 17.893 8.44047 18.1005C8.44047 18.3305 8.2761 18.5924 7.8386 18.5161C4.26422 17.3261 1.8536 13.9817 1.85547 10.2142C1.85547 5.37984 5.7711 1.46484 10.6055 1.46484Z"
fill="currentColor"
></path>
</g>
</svg>
</div>
</div>
<div class="social-links">
<div class="links">
<p style="color: #969696">EXPLORE</p>
<p>Startups</p>
<p>Enterprise</p>
<p>Switch</p>
<p>OSS Program</p>
</div>
<div class="links">
<p style="color: #969696">RESOURCES</p>
<p>Customers</p>
<p>Blogs</p>
<p>Pricing</p>
<p>Guides</p>
<p>Feature Requests</p>
</div>
<div class="links">
<p style="color: #969696">DOCUMENTATION</p>
<p>Getting Started</p>
<p>API Reference</p>
<p>Components</p>
<p>Changelog</p>
</div>
<div class="links">
<p style="color: #969696">COMPANY</p>
<p>Careers</p>
<p>Wall of Love</p>
</div>
<div class="links">
<p style="color: #969696">LEGAL</p>
<p>Privacy Policy</p>
<p>Responsible Disclosure</p>
<p>Terms Of Service</p>
<p>Security</p>
<p>DSR/DSAR</p>
</div>
</div>
<div class="footer-end">
<p>Backed by enterprise-grade security</p>
<img width="80px" src="./assets/footer-logo.png" alt="" />
</div>
<div class="end">
<div class="footer-badge">
<span
><svg
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="shrink-0 select-none text-brand translate-y-[1px]"
aria-hidden="true"
>
<path
d="M5.00001 15.352C4.89601 15.352 4.79101 15.331 4.69001 15.285C1.84101 13.988 0.00100708 11.129 0.00100708 8C0.00100708 4.871 1.84101 2.012 4.68901 0.715004C5.06601 0.543004 5.51001 0.710004 5.68201 1.087C5.85301 1.464 5.68701 1.909 5.31001 2.08C2.99501 3.134 1.49901 5.457 1.49901 7.999C1.49901 10.541 2.99501 12.865 5.31001 13.918C5.68701 14.089 5.85301 14.534 5.68201 14.911C5.55601 15.187 5.28401 15.35 4.99901 15.35L5.00001 15.352Z"
fill="currentColor"
></path>
<path
d="M11 15.352C10.715 15.352 10.443 15.189 10.317 14.913C10.146 14.536 10.312 14.091 10.689 13.92C13.004 12.866 14.5 10.543 14.5 8.00101C14.5 5.45901 13.004 3.13501 10.689 2.08201C10.312 1.91101 10.146 1.46601 10.317 1.08901C10.49 0.713011 10.935 0.546011 11.31 0.717011C14.159 2.01401 15.999 4.87301 15.999 8.00201C15.999 11.131 14.158 13.99 11.31 15.287C11.209 15.333 11.104 15.354 11 15.354V15.352Z"
fill="currentColor"
></path>
<path
d="M8 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12Z"
fill="currentColor"
></path></svg></span
>All systems normal
</div>
<p>© 2026 Mintlify, Inc.</p>
<div class="theme-toggle">
<button>
<svg
viewBox="0 0 19 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="shrink-0 select-none size-3 text-muted transition-colors duration-[250ms] ease-[ease]"
aria-hidden="true"
width="19"
height="18"
>
<g clip-path="url(#clip0_11851_40123)">
<path
d="M8.75014 14.53C7.82714 14.5901 6.91115 14.7549 6.02415 15.0339C5.62915 15.1589 5.41015 15.5791 5.53515 15.9751C5.65915 16.3691 6.07614 16.5869 6.47514 16.4651C8.43414 15.8482 10.5651 15.8482 12.5241 16.4651C12.5991 16.488 12.6751 16.5 12.7501 16.5C13.0681 16.5 13.3641 16.2949 13.4651 15.9761C13.5901 15.5811 13.3701 15.1599 12.9761 15.0349C12.0911 14.7549 11.1741 14.5901 10.2501 14.531V13.501H14.7501C14.7534 13.501 14.7564 13.5 14.7597 13.5H8.75014V14.53Z"
fill="currentColor"
></path>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M14.75 2C16.267 2 17.5 3.2329 17.5 4.75V10.751C17.5 12.2646 16.2723 13.4946 14.7598 13.5H4.25C2.73311 13.4999 1.5 12.267 1.5 10.75V4.75C1.5 3.23298 2.73311 2.00013 4.25 2H14.75ZM7.60059 6.7207C7.03235 6.7207 6.57129 7.18176 6.57129 7.75C6.5713 8.31823 7.03235 8.7793 7.60059 8.7793H11.3994C11.9676 8.7793 12.4287 8.31823 12.4287 7.75C12.4287 7.18176 11.9677 6.7207 11.3994 6.7207H7.60059Z"
fill="currentColor"
></path>
</g>
<defs>
<clipPath id="clip0_11851_40123">
<rect
width="18"
height="18"
fill="white"
transform="translate(0.5)"
></rect>
</clipPath>
</defs>
</svg>
</button>
<button>
<svg
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="shrink-0 select-none size-3 transition-colors duration-[250ms] ease-[ease] text-text-main"
aria-hidden="true"
>
<path
d="M9 3C9.414 3 9.75 2.664 9.75 2.25V1.25C9.75 0.836 9.414 0.5 9 0.5C8.586 0.5 8.25 0.836 8.25 1.25V2.25C8.25 2.664 8.586 3 9 3Z"
fill="currentColor"
></path>
<path
d="M13.773 4.977C13.965 4.977 14.157 4.904 14.303 4.757L15.01 4.05C15.303 3.757 15.303 3.282 15.01 2.989C14.717 2.696 14.242 2.696 13.949 2.989L13.242 3.696C12.949 3.989 12.949 4.464 13.242 4.757C13.388 4.903 13.581 4.977 13.773 4.977Z"
fill="currentColor"
></path>
<path
d="M16.75 8.25H15.75C15.336 8.25 15 8.586 15 9C15 9.414 15.336 9.75 15.75 9.75H16.75C17.164 9.75 17.5 9.414 17.5 9C17.5 8.586 17.164 8.25 16.75 8.25Z"
fill="currentColor"
></path>
<path
d="M14.303 13.243C14.01 12.95 13.535 12.95 13.242 13.243C12.949 13.536 12.949 14.011 13.242 14.304L13.949 15.011C14.095 15.157 14.287 15.231 14.479 15.231C14.671 15.231 14.863 15.158 15.009 15.011C15.302 14.718 15.302 14.243 15.009 13.95L14.302 13.243H14.303Z"
fill="currentColor"
></path>
<path
d="M9 15C8.586 15 8.25 15.336 8.25 15.75V16.75C8.25 17.164 8.586 17.5 9 17.5C9.414 17.5 9.75 17.164 9.75 16.75V15.75C9.75 15.336 9.414 15 9 15Z"
fill="currentColor"
></path>
<path
d="M3.697 13.243L2.99 13.95C2.697 14.243 2.697 14.718 2.99 15.011C3.136 15.157 3.328 15.231 3.52 15.231C3.712 15.231 3.904 15.158 4.05 15.011L4.757 14.304C5.05 14.011 5.05 13.536 4.757 13.243C4.464 12.95 3.99 12.95 3.697 13.243Z"
fill="currentColor"
></path>