CINXE.COM
Mintlify — The documentation you want, effortlessly
<!DOCTYPE html><!-- Last Published: Fri Feb 14 2025 21:30:31 GMT+0000 (Coordinated Universal Time) --><html data-wf-domain="landing.mintlify.com" data-wf-page="66cc2bd703ccf308a49a6243" data-wf-site="66cc2bd703ccf308a49a6188" lang="en" data-wf-locale="en"><head><meta charset="utf-8"/><title>Mintlify — The documentation you want, effortlessly</title><meta content="Meet the modern standard for public facing documentation. Beautiful out of the box, easy to maintain, and optimized for user engagement." name="description"/><meta content="Mintlify — The documentation you want, effortlessly" property="og:title"/><meta content="Meet the modern standard for public facing documentation. Beautiful out of the box, easy to maintain, and optimized for user engagement." property="og:description"/><meta content="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6731aa4104da280d698c4084_Landing%20page%20OG%20Image.png" property="og:image"/><meta content="Mintlify — The documentation you want, effortlessly" property="twitter:title"/><meta content="Meet the modern standard for public facing documentation. Beautiful out of the box, easy to maintain, and optimized for user engagement." property="twitter:description"/><meta content="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6731aa4104da280d698c4084_Landing%20page%20OG%20Image.png" property="twitter:image"/><meta property="og:type" content="website"/><meta content="summary_large_image" name="twitter:card"/><meta content="width=device-width, initial-scale=1" name="viewport"/><link href="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/css/mintlify-lander.29efe09e5.css" rel="stylesheet" type="text/css"/><script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script><link href="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc3e0d67f2324645580a18_favicon.png" rel="shortcut icon" type="image/x-icon"/><link href="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc3e124fa129b7d5fd6c4a_webclip.png" rel="apple-touch-icon"/><link href="https://mintlify.com/" rel="canonical"/><script> (function() { var savedTheme = localStorage.getItem('isDarkMode'); var systemDark = window.matchMedia('(prefers-color-scheme: dark)').matches; var isDark = savedTheme === 'true' || (savedTheme === null && systemDark); if (isDark) { document.documentElement.classList.add('dark-mode'); } document.documentElement.classList.add('theme-loaded'); })(); </script> <script tr-color-vars="background-main,background-invert,text-main,text-invert,text-soft,text-sub,muted,muted-invert,muted-invert-90,border-solid,border-soft,border-sub,background-soft,transparent,transparent-invert,brand,brand-8"></script> <script> (function() { const htmlElement = document.documentElement; const scriptTag = document.querySelector("[tr-color-vars]"); const cssVariables = scriptTag ? scriptTag.getAttribute("tr-color-vars").split(",") : []; let lightColors = {}; let darkColors = {}; // Capture initial color values cssVariables.forEach(item => { const lightValue = getComputedStyle(htmlElement).getPropertyValue(`--color--${item}`); const darkValue = getComputedStyle(htmlElement).getPropertyValue(`--dark--${item}`) || lightValue; lightColors[`--color--${item}`] = lightValue; darkColors[`--color--${item}`] = darkValue; }); function setColors(colorObject) { Object.keys(colorObject).forEach(key => { htmlElement.style.setProperty(key, colorObject[key]); }); } function switchImageSource(element, isDarkMode) { const lightSrc = element.getAttribute('data-light-src'); const darkSrc = element.getAttribute('data-dark-src'); const lightSrcset = element.getAttribute('data-light-srcset'); const darkSrcset = element.getAttribute('data-dark-srcset'); if (isDarkMode) { if (darkSrc) element.src = darkSrc; if (darkSrcset) element.srcset = darkSrcset; } else { if (lightSrc) element.src = lightSrc; if (lightSrcset) element.srcset = lightSrcset; } } function switchAssets(isDarkMode) { document.querySelectorAll('.theme-asset').forEach(asset => { if (asset.tagName.toLowerCase() === 'picture') { asset.querySelectorAll('source, img').forEach(element => { switchImageSource(element, isDarkMode); }); } else if (asset.tagName.toLowerCase() === 'img') { switchImageSource(asset, isDarkMode); } }); document.querySelectorAll('.dark-asset, .light-asset').forEach(asset => { asset.classList.toggle('hidden', isDarkMode ? asset.classList.contains('light-asset') : asset.classList.contains('dark-asset')); }); } function setTheme(isDarkMode) { localStorage.setItem("isDarkMode", isDarkMode); htmlElement.classList.toggle("dark-mode", isDarkMode); document.body.classList.add('theme-loaded'); setColors(isDarkMode ? darkColors : lightColors); switchAssets(isDarkMode); updateToggleStates(isDarkMode); } function updateToggleStates(isDarkMode) { const systemDark = window.matchMedia("(prefers-color-scheme: dark)").matches; document.querySelector('[tr-color-system]')?.classList.toggle('active', isDarkMode === systemDark); document.querySelector('[tr-color-light]')?.classList.toggle('active', !isDarkMode); document.querySelector('[tr-color-dark]')?.classList.toggle('active', isDarkMode); } function initializeTheme() { const storedMode = localStorage.getItem("isDarkMode"); const systemDark = window.matchMedia("(prefers-color-scheme: dark)").matches; const isDarkMode = storedMode === null ? systemDark : storedMode === 'true'; setTheme(isDarkMode); window.matchMedia("(prefers-color-scheme: dark)").addListener(() => { if (localStorage.getItem("isDarkMode") === null) { setTheme(window.matchMedia("(prefers-color-scheme: dark)").matches); } }); } function setupToggles() { document.querySelector('[tr-color-system]')?.addEventListener("click", () => { localStorage.removeItem("isDarkMode"); setTheme(window.matchMedia("(prefers-color-scheme: dark)").matches); }); document.querySelector('[tr-color-light]')?.addEventListener("click", () => setTheme(false)); document.querySelector('[tr-color-dark]')?.addEventListener("click", () => setTheme(true)); } function preloadCorrectAssets() { const storedMode = localStorage.getItem("isDarkMode"); const systemDark = window.matchMedia("(prefers-color-scheme: dark)").matches; const isDarkMode = storedMode === null ? systemDark : storedMode === 'true'; switchAssets(isDarkMode); } // Preload correct assets immediately preloadCorrectAssets(); // Initialize theme and setup toggles when DOM is ready if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { initializeTheme(); setupToggles(); }); } else { initializeTheme(); setupToggles(); } })(); </script> <style> :root { --color--background-main: #ffffff; } .dark-mode { --color--background-main: #08090A; } body { background-color: var(--color--background-main); } /* Hide the body until the theme is loaded */ body:not(.theme-loaded) { visibility: hidden; } </style> <link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css"/> <!-- Cal element-click embed code begins --> <script type="text/javascript"> (function (C, A, L) { let p = function (a, ar) { a.q.push(ar); }; let d = C.document; C.Cal = C.Cal || function () { let cal = C.Cal; let ar = arguments; if (!cal.loaded) { cal.ns = {}; cal.q = cal.q || []; d.head.appendChild(d.createElement("script")).src = A; cal.loaded = true; } if (ar[0] === L) { const api = function () { p(api, arguments); }; const namespace = ar[1]; api.q = api.q || []; if(typeof namespace === "string"){cal.ns[namespace] = cal.ns[namespace] || api;p(cal.ns[namespace], ar);p(cal, ["initNamespace", namespace]);} else p(cal, ar); return;} p(cal, ar); }; })(window, "https://app.cal.com/embed/embed.js", "init"); Cal("init", "demo-with-mintlify", {origin:"https://cal.com"}); Cal("init", "mintlify-enterprise", {origin:"https://cal.com"}); Cal.ns["demo-with-mintlify", "mintlify-enterprise"]("ui", {"styles":{"branding":{"brandColor":"#000000"}},"hideEventTypeDetails":false,"layout":"month_view"}); </script> <!-- Cal element-click embed code ends --> <!-- Posthog --> <script> !function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.async=!0,p.src=s.api_host.replace(".i.posthog.com","-assets.i.posthog.com")+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="init capture register register_once register_for_session unregister unregister_for_session getFeatureFlag getFeatureFlagPayload isFeatureEnabled reloadFeatureFlags updateEarlyAccessFeatureEnrollment getEarlyAccessFeatures on onFeatureFlags onSessionId getSurveys getActiveMatchingSurveys renderSurvey canRenderSurvey getNextSurveyStep identify setPersonProperties group resetGroups setPersonPropertiesForFlags resetPersonPropertiesForFlags setGroupPropertiesForFlags resetGroupPropertiesForFlags reset get_distinct_id getGroups get_session_id get_session_replay_url alias set_config startSessionRecording stopSessionRecording sessionRecordingStarted captureException loadToolbar get_property getSessionProperty createPersonProfile opt_in_capturing opt_out_capturing has_opted_in_capturing has_opted_out_capturing clear_opt_in_out_capturing debug".split(" "),n=0;n<o.length;n++)g(u,o[n]);e._i.push([i,s,a])},e.__SV=1)}(document,window.posthog||[]); posthog.init('phc_eNuN6Ojnk9O7uWfC17z12AK85fNR0BY6IiGVy0Gfwzw',{api_host:'https://us.i.posthog.com', person_profiles: 'identified_only' // or 'always' to create profiles for anonymous users as well }) </script> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-MJWB25XN');</script> <!-- End Google Tag Manager --> <!-- Unify GTM Code (JS Helper) --> <script> !function(){window.unify||(window.unify=Object.assign([],["identify","page","startAutoPage","stopAutoPage","startAutoIdentify","stopAutoIdentify"].reduce((function(t,e){return t[e]=function(){return unify.push([e,[].slice.call(arguments)]),unify},t}),{})));var t=document.createElement("script");t.async=!0,t.setAttribute("src","https://tag.unifyintent.com/v1/ShALG1c5rTJzkBaNJWFZWP/script.js"),t.setAttribute("data-api-key","wk_98uM5hH8_CooeLr8Z3fRL39Q1rxtqo5fejQKhn3qL"),t.setAttribute("id","unifytag"),(document.body||document.head).appendChild(t)}(); </script> <!-- End of Quora Pixel Code --><!-- [Attributes by Finsweet] CMS Slider --> <script async src="https://cdn.jsdelivr.net/npm/@finsweet/attributes-cmsslider@1/cmsslider.js"></script></head><body><div class="page-wrapper"><div class="bufo"><div id="bufo-cursor" class="bufo-cursor"></div><div class="code-embed w-embed w-script"><script> document.addEventListener('DOMContentLoaded', function() { let mintieCount = 0; let timeoutId = null; const mintieChars = ['m', 'i', 'n', 't', 'i', 'e']; function handleKeyDown(event) { if (document.activeElement instanceof HTMLInputElement || document.activeElement instanceof HTMLTextAreaElement) { return; } if (event.key.toLowerCase() === mintieChars[mintieCount]) { mintieCount++; if (mintieCount === mintieChars.length) { // URL to your mode-independent GIF const gifUrl = 'https://mintlify-assets.b-cdn.net/website/home/minties.gif'; const cursorImage = document.createElement('img'); cursorImage.src = gifUrl; cursorImage.style.position = 'fixed'; cursorImage.style.zIndex = 9999; cursorImage.style.pointerEvents = 'none'; cursorImage.style.width = '32px'; cursorImage.style.height = 'auto'; cursorImage.style.transform = 'translate(-50%, -50%)'; document.body.appendChild(cursorImage); function updateCursorPosition(e) { cursorImage.style.left = e.clientX + 'px'; cursorImage.style.top = e.clientY + 'px'; } updateCursorPosition(event); document.addEventListener('mousemove', updateCursorPosition); timeoutId = setTimeout(() => { cursorImage.remove(); document.removeEventListener('mousemove', updateCursorPosition); mintieCount = 0; }, 3000); } else { clearTimeout(timeoutId); timeoutId = setTimeout(() => { mintieCount = 0; }, 1000); } } else { mintieCount = 0; clearTimeout(timeoutId); } } document.addEventListener('keydown', handleKeyDown); }); </script>'</div></div><div class="global-styles w-embed"><style> /* Make text look crisper and more legible in all browsers */ body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-smoothing: antialiased; text-rendering: optimizeLegibility; } /* Focus state style for keyboard navigation for the focusable elements */ *[tabindex]:focus-visible, input[type="file"]:focus-visible { outline: 0.125rem solid #4d65ff; outline-offset: 0.125rem; } /* Set color style to inherit */ .inherit-color * { color: inherit; } /* Get rid of top margin on first element in any rich text element */ .w-richtext > :not(div):first-child, .w-richtext > div:first-child > :first-child { margin-top: 0 !important; } /* Get rid of bottom margin on last element in any rich text element */ .w-richtext>:last-child, .w-richtext ol li:last-child, .w-richtext ul li:last-child { margin-bottom: 0 !important; } /* Make sure containers never lose their center alignment */ .container-medium,.container-small, .container-large { margin-right: auto !important; margin-left: auto !important; } /* Make the following elements inherit typography styles from the parent and not have hardcoded values. Important: You will not be able to style for example "All Links" in Designer with this CSS applied. Uncomment this CSS to use it in the project. Leave this message for future hand-off. */ /* a, .w-input, .w-select, .w-tab-link, .w-nav-link, .w-dropdown-btn, .w-dropdown-toggle, .w-dropdown-link { color: inherit; text-decoration: inherit; font-size: inherit; } */ /* Apply "..." after 3 lines of text */ .text-style-3lines { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 3; -webkit-box-orient: vertical; } /* Apply "..." after 2 lines of text */ .text-style-2lines { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } /* These classes are never overwritten */ .hide { display: none !important; } @media screen and (max-width: 991px) { .hide, .hide-tablet { display: none !important; } } @media screen and (max-width: 767px) { .hide-mobile-landscape{ display: none !important; } } @media screen and (max-width: 479px) { .hide-mobile{ display: none !important; } } .margin-0 { margin: 0rem !important; } .padding-0 { padding: 0rem !important; } .spacing-clean { padding: 0rem !important; margin: 0rem !important; } .margin-top { margin-right: 0rem !important; margin-bottom: 0rem !important; margin-left: 0rem !important; } .padding-top { padding-right: 0rem !important; padding-bottom: 0rem !important; padding-left: 0rem !important; } .margin-right { margin-top: 0rem !important; margin-bottom: 0rem !important; margin-left: 0rem !important; } .padding-right { padding-top: 0rem !important; padding-bottom: 0rem !important; padding-left: 0rem !important; } .margin-bottom { margin-top: 0rem !important; margin-right: 0rem !important; margin-left: 0rem !important; } .padding-bottom { padding-top: 0rem !important; padding-right: 0rem !important; padding-left: 0rem !important; } .margin-left { margin-top: 0rem !important; margin-right: 0rem !important; margin-bottom: 0rem !important; } .padding-left { padding-top: 0rem !important; padding-right: 0rem !important; padding-bottom: 0rem !important; } .margin-horizontal { margin-top: 0rem !important; margin-bottom: 0rem !important; } .padding-horizontal { padding-top: 0rem !important; padding-bottom: 0rem !important; } .margin-vertical { margin-right: 0rem !important; margin-left: 0rem !important; } .padding-vertical { padding-right: 0rem !important; padding-left: 0rem !important; } </style></div><nav class="navigation"><div data-animation="default" class="navbar w-nav" data-easing2="ease" fs-scrolldisable-element="smart-nav" data-easing="ease" data-collapse="medium" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e932" role="banner" data-duration="400"><div class="navbar_container"><a href="/" aria-current="page" class="navbar_logo-link w-nav-brand w--current"><div class="brand-logo w-embed"><svg width="100%" height="auto" viewBox="0 0 110 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M31.3809 3.06182H36.2383L40.3588 13.1095H40.549L44.6695 3.06182H49.5269V19.2902H45.7075V9.32179H45.5728L41.6742 19.1872H39.2336L35.335 9.26635H35.2003V19.2902H31.3809V3.06182ZM51.0807 19.2902V7.1189H54.9559V19.2902H51.0807ZM53.0221 5.70052C52.4781 5.70052 52.0105 5.52091 51.6198 5.16171C51.229 4.79718 51.0331 4.35872 51.0331 3.8463C51.0331 3.33916 51.229 2.90598 51.6198 2.54676C52.0105 2.18225 52.4781 2 53.0221 2C53.5715 2 54.0391 2.18225 54.4249 2.54676C54.8156 2.90598 55.011 3.33916 55.011 3.8463C55.011 4.35872 54.8156 4.79718 54.4249 5.16171C54.0391 5.52091 53.5715 5.70052 53.0221 5.70052ZM60.4045 12.3488V19.2902H56.5293V7.1189H60.2141V9.35348H60.349C60.6183 8.60863 61.0779 8.0249 61.7275 7.60227C62.3776 7.17438 63.1512 6.96042 64.0492 6.96042C64.905 6.96042 65.6474 7.15326 66.2761 7.5389C66.9098 7.91923 67.4012 8.45278 67.7498 9.13956C68.1039 9.82103 68.2784 10.6187 68.273 11.5326V19.2902H64.3983V12.2933C64.4032 11.6171 64.2317 11.0889 63.8831 10.7085C63.5394 10.3282 63.0614 10.138 62.4485 10.138C62.0419 10.138 61.6829 10.2278 61.371 10.4074C61.0645 10.5817 60.827 10.8326 60.6579 11.1602C60.4943 11.4877 60.4095 11.8839 60.4045 12.3488ZM76.6497 7.1189V9.97158H68.9712V7.1189H76.6497ZM70.5798 4.20288H74.4545V15.4629C74.4545 15.7006 74.4917 15.8935 74.5655 16.0414C74.6449 16.184 74.7584 16.287 74.9062 16.3504C75.054 16.4085 75.231 16.4376 75.4373 16.4376C75.585 16.4376 75.7407 16.4244 75.9044 16.398C76.0735 16.3662 76.2004 16.3399 76.2852 16.3187L76.8713 19.1159C76.6864 19.1687 76.425 19.2347 76.0869 19.314C75.7541 19.3932 75.3554 19.4434 74.8903 19.4646C73.9819 19.5068 73.2024 19.4011 72.5528 19.1476C71.9082 18.8887 71.4143 18.4873 71.0712 17.9431C70.733 17.399 70.5693 16.7149 70.5798 15.8908V4.20288ZM81.8702 3.06182V19.2902H77.9954V3.06182H81.8702ZM83.444 19.2902V7.1189H87.3188V19.2902H83.444ZM85.3854 5.70052C84.8414 5.70052 84.3738 5.52091 83.9831 5.16171C83.5918 4.79718 83.3964 4.35872 83.3964 3.8463C83.3964 3.33916 83.5918 2.90598 83.9831 2.54676C84.3738 2.18225 84.8414 2 85.3854 2C85.9348 2 86.4024 2.18225 86.7882 2.54676C87.1789 2.90598 87.3743 3.33916 87.3743 3.8463C87.3743 4.35872 87.1789 4.79718 86.7882 5.16171C86.4024 5.52091 85.9348 5.70052 85.3854 5.70052ZM95.8105 7.1189V9.97158H87.9812V7.1189H95.8105ZM89.6136 19.2902V6.50085C89.6136 5.56053 89.7907 4.78133 90.1447 4.16326C90.4988 3.5399 90.9902 3.07503 91.6184 2.76863C92.2472 2.45695 92.9736 2.30111 93.7978 2.30111C94.3368 2.30111 94.8436 2.34337 95.3191 2.4279C95.8001 2.50714 96.1566 2.57845 96.3887 2.64185L95.7708 5.47867C95.628 5.43111 95.454 5.39149 95.2477 5.35981C95.0469 5.32807 94.8569 5.31225 94.6774 5.31225C94.2227 5.31225 93.9113 5.41262 93.7422 5.61334C93.5731 5.81412 93.4888 6.08878 93.4888 6.43748V19.2902H89.6136ZM99.1511 23.8544C98.6865 23.8544 98.2477 23.8175 97.8356 23.7435C97.4241 23.6748 97.07 23.5824 96.774 23.4662L97.6298 20.6532C98.0102 20.78 98.3538 20.8539 98.6597 20.875C98.9716 20.8961 99.2384 20.846 99.4601 20.7245C99.6877 20.6082 99.8617 20.3996 99.9832 20.0985L100.134 19.734L95.8075 7.1189H99.8642L102.107 15.8037H102.233L104.508 7.1189H108.589L104.001 20.4551C103.779 21.1207 103.465 21.707 103.058 22.2142C102.656 22.7266 102.136 23.1281 101.497 23.4186C100.863 23.7092 100.081 23.8544 99.1511 23.8544Z" fill="currentcolor"/> <mask id="mask0_4238_40" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="0" width="24" height="24"> <path d="M24.6348 0H1V23.6348H24.6348V0Z" fill="white"/> </mask> <g mask="url(#mask0_4238_40)"> <path d="M7.22763 8.62342C7.24415 6.37269 8.13673 4.21692 9.71609 2.61328H9.71318L3.61572 8.71074H3.61863C3.59593 8.7286 3.57453 8.74804 3.55459 8.76894C2.0717 10.2499 1.17264 12.216 1.02241 14.3063C0.872184 16.3967 1.48087 18.4711 2.73675 20.149L8.89533 13.9903L8.95936 13.9292C7.81152 12.4007 7.20254 10.5348 7.22763 8.62342Z" fill="#0C8C5E"/> <path d="M22.0327 14.9336C20.8657 16.0773 19.4008 16.8701 17.805 17.2216C16.2093 17.573 14.5469 17.469 13.0074 16.9215C12.1865 16.63 11.415 16.2149 10.7197 15.6904L10.6556 15.7544L4.49707 21.91C6.17554 23.1628 8.24884 23.7695 10.3379 23.6194C12.427 23.4692 14.3921 22.5721 15.8741 21.0921L15.9353 21.031L22.0327 14.9336Z" fill="#0C8C5E"/> <path d="M24.6467 8.71108V4.35893e-06H15.9356C14.7916 -0.00114182 13.6586 0.223763 12.6016 0.661799C11.5448 1.09984 10.5848 1.74238 9.77701 2.5525L9.71589 2.61362C8.6511 3.6946 7.88927 5.03658 7.50684 6.50493C8.19913 6.32565 8.91058 6.23087 9.62567 6.22262C11.5371 6.20012 13.4024 6.80995 14.9315 7.95726C16.3057 8.98207 17.3457 10.3908 17.9206 12.0058C18.5064 13.6564 18.5834 15.4449 18.1417 17.1398C19.6104 16.7581 20.9525 15.9961 22.033 14.9308L22.0942 14.8726C22.9046 14.0644 23.5474 13.104 23.9854 12.0466C24.4234 10.9892 24.6482 9.85563 24.6467 8.71108Z" fill="#18E299"/> </g> </svg></div></a><nav role="navigation" id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e936-1c96e931" class="navbar_menu is-page-height-tablet w-nav-menu"><div data-hover="true" data-delay="0" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e965" class="dd-menu-wrap hide-tablet w-dropdown"><div class="dropdown-toggle w-dropdown-toggle"><a href="https://mintlify.com/docs" class="navbar_link w-inline-block"><div>Documentation</div></a></div><nav class="dd-menu-content w-dropdown-list"><div class="dd-content"><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e96b-1c96e931" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e96b" href="https://mintlify.com/docs" class="nav-link-card with-image guides w-inline-block"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eaabfa0d26093561a2128e_Getting%20started.svg" alt="Feature set UI" data-light-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started-dark.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started-dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started.png" loading="lazy"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Guides</div></div><div class="text-style-muted">Start building modern documentation in under five minutes<br/></div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e973-1c96e931" href="https://mintlify.com/docs/content/components/" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_21884)"> <path d="M6.25 2.50195H3.75C2.7835 2.50195 2 3.28545 2 4.25195V6.75195C2 7.71845 2.7835 8.50195 3.75 8.50195H6.25C7.2165 8.50195 8 7.71845 8 6.75195V4.25195C8 3.28545 7.2165 2.50195 6.25 2.50195Z" fill="currentColor"/> <path d="M5 16.752C6.79493 16.752 8.25 15.2969 8.25 13.502C8.25 11.707 6.79493 10.252 5 10.252C3.20507 10.252 1.75 11.707 1.75 13.502C1.75 15.2969 3.20507 16.752 5 16.752Z" fill="currentColor"/> <path d="M15.5 12.752H13.75V11.002C13.75 10.588 13.414 10.252 13 10.252C12.586 10.252 12.25 10.588 12.25 11.002V12.752H10.5C10.086 12.752 9.75 13.088 9.75 13.502C9.75 13.916 10.086 14.252 10.5 14.252H12.25V16.002C12.25 16.416 12.586 16.752 13 16.752C13.414 16.752 13.75 16.416 13.75 16.002V14.252H15.5C15.914 14.252 16.25 13.916 16.25 13.502C16.25 13.088 15.914 12.752 15.5 12.752Z" fill="currentColor"/> <path d="M14.0829 2.70211C13.6319 1.92011 12.3689 1.91911 11.9179 2.70211L9.65192 6.62611C9.42592 7.01811 9.42592 7.48511 9.65192 7.87611C9.87792 8.26811 10.2829 8.50111 10.7349 8.50111H15.2659C15.7179 8.50111 16.1219 8.26811 16.3489 7.87611C16.5749 7.48511 16.5749 7.01811 16.3489 6.62611L14.0829 2.70211Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_21884"> <rect width="18" height="18" fill="white" transform="translate(0 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Components</div></div><div class="text-style-muted">Explore the variety of components available</div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e97b-1c96e931" href="https://mintlify.com/docs/api-playground" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_21895)"> <path d="M15.0459 2.5H4.5459C3.0289 2.5 1.7959 3.733 1.7959 5.25V13.75C1.7959 15.267 3.0289 16.5 4.5459 16.5H15.0459C16.5629 16.5 17.7959 15.267 17.7959 13.75V5.25C17.7959 3.733 16.5629 2.5 15.0459 2.5ZM7.7959 4.5C8.3479 4.5 8.7959 4.948 8.7959 5.5C8.7959 6.052 8.3479 6.5 7.7959 6.5C7.2439 6.5 6.7959 6.052 6.7959 5.5C6.7959 4.948 7.2439 4.5 7.7959 4.5ZM3.7959 5.5C3.7959 4.948 4.2439 4.5 4.7959 4.5C5.3479 4.5 5.7959 4.948 5.7959 5.5C5.7959 6.052 5.3479 6.5 4.7959 6.5C4.2439 6.5 3.7959 6.052 3.7959 5.5ZM8.5759 12.22C8.8689 12.513 8.8689 12.988 8.5759 13.281C8.4299 13.427 8.2379 13.501 8.0459 13.501C7.8539 13.501 7.6619 13.428 7.5159 13.281L5.2659 11.031C4.9729 10.738 4.9729 10.263 5.2659 9.97L7.5159 7.72C7.8089 7.427 8.2839 7.427 8.5769 7.72C8.8699 8.013 8.8699 8.488 8.5769 8.781L6.8569 10.501L8.5769 12.221L8.5759 12.22ZM14.3259 11.03L12.0759 13.28C11.9299 13.426 11.7379 13.5 11.5459 13.5C11.3539 13.5 11.1619 13.427 11.0159 13.28C10.7229 12.987 10.7229 12.512 11.0159 12.219L12.7359 10.499L11.0159 8.779C10.7229 8.486 10.7229 8.011 11.0159 7.718C11.3089 7.425 11.7839 7.425 12.0769 7.718L14.3269 9.968C14.6199 10.261 14.6199 10.736 14.3269 11.029L14.3259 11.03Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_21895"> <rect width="18" height="18" fill="white" transform="translate(0.795898 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">API playground</div></div><div class="text-style-muted">Enable users to interact with your API<br/></div></div></a></div></nav></div><div data-hover="true" data-delay="0" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e983" class="dd-menu-wrap hide-tablet w-dropdown"><div class="dropdown-toggle w-dropdown-toggle"><a href="/customers" class="navbar_link w-inline-block"><div>Resources</div></a></div><nav class="dd-menu-content w-dropdown-list"><div class="dd-content resources"><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e989-1c96e931" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e989" href="/customers" class="nav-link-card with-image w-inline-block"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/67ae6f8f069004f6fffaca6f_Customers-2025-Light.png" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Customers-2025-Light.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Customers-2025-Dark.png" sizes="100vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Customers-2025-Dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Customers-2025-Light.png" loading="lazy" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/67ae6f8f069004f6fffaca6f_Customers-2025-Light-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/67ae6f8f069004f6fffaca6f_Customers-2025-Light-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/67ae6f8f069004f6fffaca6f_Customers-2025-Light.png 973w"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Customers</div></div><div class="text-style-muted">Discover how we help our customers win</div></div></a><link rel="prefetch" href="/customers"/><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e991-1c96e931" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e991" href="/enterprise" class="nav-link-card with-image w-inline-block"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb1f61e959ed44eea75a0f_ENT-New-Light.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Light.svg" loading="lazy"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Enterprise</div></div><div class="text-style-muted">For organizations with custom needs<br/></div></div></a><link rel="prefetch" href="/enterprise"/><a id="w-node-_8c387d58-9737-ace0-1ec1-d0cf06bbf9e7-1c96e931" data-w-id="8c387d58-9737-ace0-1ec1-d0cf06bbf9e7" href="/blog" class="nav-link-card with-image w-inline-block"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eaabf98655455a7fb6b139_Blog.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog-dark.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog-dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog.png" loading="lazy"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Blog</div></div><div class="text-style-muted">Discover and stay updated on what’s happening</div></div></a><link rel="prefetch" href="/blog"/><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e999-1c96e931" class="_2x2-grid"><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e99a-1c96e931" href="https://mintlify.com/security/responsible-disclosure" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"> <title>shield-check</title> <g fill="currentColor"> <path d="M14.783,2.813l-5.25-1.68c-.349-.112-.718-.111-1.066,0L3.216,2.813c-.728,.233-1.216,.903-1.216,1.667v6.52c0,3.508,4.946,5.379,6.46,5.869,.177,.057,.358,.086,.54,.086s.362-.028,.538-.085c1.516-.49,6.462-2.361,6.462-5.869V4.48c0-.764-.489-1.434-1.217-1.667Zm-2.681,4.389l-3.397,4.5c-.128,.169-.322,.276-.534,.295-.021,.002-.043,.003-.065,.003-.189,0-.372-.071-.511-.201l-1.609-1.5c-.303-.283-.32-.757-.038-1.06,.284-.303,.758-.319,1.06-.038l1.001,.933,2.896-3.836c.25-.33,.72-.396,1.051-.146,.331,.25,.396,.72,.146,1.051Z"></path> </g> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Security</div></div></div></a><a href="https://github.com/mintlify/themes" target="_blank" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4055_135)"> <path d="M7.04401 2H4.54401C3.57901 2 2.79401 2.785 2.79401 3.75V13C2.79401 14.654 4.14001 16 5.79401 16C7.44801 16 8.79401 14.654 8.79401 13V3.75C8.79401 2.785 8.00901 2 7.04401 2ZM5.79401 13.75C5.38001 13.75 5.04401 13.414 5.04401 13C5.04401 12.586 5.38001 12.25 5.79401 12.25C6.20801 12.25 6.54401 12.586 6.54401 13C6.54401 13.414 6.20801 13.75 5.79401 13.75Z" fill="currentColor"/> <path d="M14.456 6.10415L12.688 4.33615C12.053 3.70015 10.965 3.68215 10.293 4.27115V12.7402L14.455 8.57815C14.786 8.24715 14.968 7.80815 14.968 7.34115C14.968 6.87415 14.787 6.43415 14.456 6.10415Z" fill="currentColor"/> <path d="M15.1467 10.0078L9.15674 15.9978H15.0437C16.0087 15.9978 16.7937 15.2128 16.7937 14.2478V11.7478C16.7937 10.8188 16.0627 10.0628 15.1467 10.0078Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_4055_135"> <rect width="18" height="18" fill="white" transform="translate(0.793945)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Templates</div></div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9a6-1c96e931" href="https://mintlify.com/docs/integrations/analytics/overview" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_22859)"> <path d="M9.58987 7C10.7099 7 11.6719 6.325 12.1009 5.362C13.5389 6.104 14.6079 7.458 14.9599 9.058C15.0369 9.408 15.3479 9.646 15.6909 9.646C15.7449 9.646 15.7989 9.641 15.8539 9.628C16.2579 9.539 16.5129 9.138 16.4239 8.734C15.9349 6.522 14.3699 4.683 12.2939 3.809C12.0809 2.503 10.9539 1.5 9.58887 1.5C8.07187 1.5 6.83887 2.733 6.83887 4.25C6.83887 5.767 8.07187 7 9.58887 7H9.58987Z" fill="currentColor"/> <path d="M6.77681 11.8733C6.21681 10.9043 5.15081 10.4073 4.10281 10.5183C4.02581 8.90126 4.66381 7.29926 5.87181 6.19426C6.17781 5.91526 6.19881 5.44026 5.91981 5.13426C5.63981 4.82926 5.16581 4.80726 4.85981 5.08726C3.18781 6.61626 2.37781 8.89126 2.65881 11.1253C2.21381 11.4873 1.88981 11.9723 1.73781 12.5373C1.54881 13.2463 1.64581 13.9883 2.01281 14.6233C2.37981 15.2593 2.97281 15.7153 3.68281 15.9053C3.91881 15.9683 4.15981 16.0003 4.39881 16.0003C4.87581 16.0003 5.34481 15.8753 5.76881 15.6303C7.08081 14.8733 7.53381 13.1883 6.77581 11.8743L6.77681 11.8733Z" fill="currentColor"/> <path d="M17.443 12.5381C17.253 11.8291 16.797 11.2351 16.162 10.8681C14.85 10.1091 13.163 10.5621 12.405 11.8751C11.845 12.8451 11.949 14.0151 12.569 14.8671C11.209 15.7421 9.50404 15.9901 7.93804 15.4961C7.54104 15.3721 7.12204 15.5911 6.99804 15.9851C6.87304 16.3801 7.09204 16.8011 7.48704 16.9261C8.17004 17.1421 8.87504 17.2471 9.57704 17.2471C11.102 17.2471 12.609 16.7461 13.84 15.8071C14.145 15.9211 14.46 15.9991 14.783 15.9991C15.022 15.9991 15.262 15.9681 15.499 15.9041C16.209 15.7141 16.802 15.2581 17.169 14.6231C17.536 13.9881 17.634 13.2461 17.444 12.5371L17.443 12.5381Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_22859"> <rect width="18" height="18" fill="white" transform="translate(0.59082 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Integrations</div></div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9ac-1c96e931" href="/love" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_22851)"> <path d="M15.9988 13.49L14.7358 13.069L14.3148 11.806C14.1778 11.398 13.5028 11.398 13.3658 11.806L12.9448 13.069L11.6818 13.49C11.4778 13.558 11.3398 13.749 11.3398 13.964C11.3398 14.179 11.4778 14.37 11.6818 14.438L12.9448 14.859L13.3658 16.122C13.4338 16.326 13.6258 16.464 13.8408 16.464C14.0558 16.464 14.2468 16.326 14.3158 16.122L14.7368 14.859L15.9998 14.438C16.2038 14.37 16.3418 14.179 16.3418 13.964C16.3418 13.749 16.2038 13.558 15.9998 13.49H15.9988Z" fill="currentColor"/> <path d="M12.5049 2.5C11.3099 2.515 10.1809 2.99 9.34086 3.806C8.50086 2.991 7.36886 2.515 6.16286 2.5C3.63286 2.515 1.58086 4.584 1.59086 7.109C1.59086 12.362 6.89686 15.538 8.52286 16.387C8.77886 16.52 9.05986 16.587 9.34086 16.587C9.62186 16.587 9.90286 16.52 10.1579 16.387C10.4079 16.257 10.7499 16.065 11.1399 15.827C10.3629 15.535 9.83986 14.802 9.83986 13.965C9.83986 13.102 10.3899 12.34 11.2089 12.068L11.7589 11.884L11.9429 11.333C12.2099 10.535 12.9719 10.001 13.8399 10.001C14.7079 10.001 15.4699 10.535 15.7369 11.331L15.7809 11.463C16.5579 10.225 17.0899 8.774 17.0899 7.114C17.0989 4.586 15.0479 2.517 12.5039 2.502L12.5049 2.5ZM9.08386 8.981L8.13786 9.296L7.82186 10.243C7.77086 10.396 7.62786 10.499 7.46686 10.499C7.30586 10.499 7.16186 10.395 7.11186 10.243L6.79586 9.296L5.84986 8.981C5.69686 8.93 5.59286 8.787 5.59286 8.625C5.59286 8.463 5.69686 8.32 5.84986 8.269L6.79586 7.954L7.11186 7.007C7.21386 6.701 7.72086 6.701 7.82286 7.007L8.13886 7.954L9.08486 8.269C9.23786 8.32 9.34186 8.463 9.34186 8.625C9.34186 8.787 9.23786 8.93 9.08486 8.981H9.08386ZM12.5909 7.5C12.1769 7.5 11.8409 7.164 11.8409 6.75C11.8409 6.336 12.1769 6 12.5909 6C13.0049 6 13.3409 6.336 13.3409 6.75C13.3409 7.164 13.0049 7.5 12.5909 7.5Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_22851"> <rect width="18" height="18" fill="white" transform="translate(0.34082 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Wall of Love</div></div></div></a><link rel="prefetch" href="/love"/></div></div></nav></div><a href="/preview" class="navbar_link hide-tablet sing-p w-nav-link">Request Preview</a><a href="/careers" class="navbar_link hide-tablet sing-p w-nav-link">Careers</a><a href="/pricing" class="navbar_link hide-tablet sing-p w-nav-link">Pricing</a><div class="responsive-nav"><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9f0-1c96e931" class="link-group"><div class="text-style-muted text-size-small">Documentation</div><a href="https://mintlify.com/docs" class="nav-link-block w-inline-block"><div>Getting Started</div></a><a href="https://mintlify.com/docs/content/components" class="nav-link-block w-inline-block"><div>Components</div></a><a href="https://mintlify.com/docs/api-playground/" class="nav-link-block w-inline-block"><div>API Playground</div></a><a href="/pricing" class="nav-link-block w-inline-block"><div>Pricing</div></a></div><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9fc-1c96e931" class="link-group"><div class="text-style-muted text-size-small">Resources</div><a href="/customers" class="nav-link-block w-inline-block"><div>Customers</div></a><a href="/enterprise" class="nav-link-block w-inline-block"><div>Enterprise</div></a><a href="/preview" class="nav-link-block w-inline-block"><div>Request Preview</div></a><a href="https://mintlify.com/docs/integrations/analytics/overview" class="nav-link-block w-inline-block"><div>Integrations</div></a><a href="https://github.com/mintlify/themes" target="_blank" class="nav-link-block w-inline-block"><div>Templates</div></a><a href="/love" class="nav-link-block w-inline-block"><div>Wall of Love</div></a></div><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96ea11-1c96e931" class="link-group"><div class="text-style-muted text-size-small">Company</div><a href="/blog" class="nav-link-block w-inline-block"><div>Blog</div></a><a href="/careers" class="nav-link-block w-inline-block"><div>Careers</div></a><a href="https://feedback.mintlify.com/roadmap" class="nav-link-block w-inline-block"><div>Public Roadmap</div></a><a href="https://mintlify.com/security/responsible-disclosure" class="nav-link-block w-inline-block"><div>Security</div></a></div></div><div class="hide-desktop flex"><a href="https://dashboard.mintlify.com/login" class="button is-secondary is-small mobile-only w-button">Login</a><a data-cal-namespace="demo-with-mintlify" data-cal-link="team/mintlify/demo-with-mintlify" href="#" class="button is-small mobile-only w-button">Book a demo</a></div></nav><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96ea25-1c96e931" class="navbar_button-wrapper"><a href="https://dashboard.mintlify.com/login" class="button is-secondary is-small ghost hide-mobile-landscape w-button">Login</a><a data-cal-namespace="demo-with-mintlify" data-cal-link="team/mintlify/demo-with-mintlify" href="#" class="button is-secondary is-small hide-mobile-portrait w-button">Get a demo</a><a href="https://dashboard.mintlify.com/signup" class="button is-small w-button">Sign up</a><div class="navbar_menu-button w-nav-button"><div class="menu-icon"><div class="menu-icon_line-top"></div><div class="menu-icon_line-middle"><div class="menu-icon_line-middle-inner"></div></div><div class="menu-icon_line-bottom"></div></div></div></div></div></div><div class="glass-bg"></div></nav><main class="main-wrapper"><header class="hero"><div class="background-image"><img class="background-image-asset theme-asset hero-image" src="https://cdn.prod.website-files.com/plugins/Basic/assets/placeholder.60f9b1840c.svg" alt="" data-light-src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66e9eaa5aae0bf000ce55162_hero-bg-light.avif" data-dark-src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66e9ebfcf14a0bce6e73d5bc_hero-bg-dark.avif" data-dark-srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66e9ebfcf14a0bce6e73d5bc_hero-bg-dark.avif" data-light-srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66e9eaa5aae0bf000ce55162_hero-bg-light.avif" loading="lazy"/></div><div class="padding-global"><div class="container-large"><div class="padding-section-large adj"><div class="max-width-large mobile-align-center"><div class="margin-bottom margin-small add-1-5"><h1 data-w-id="136a8007-6d4b-bca1-9a67-ec787dfc1de9" style="opacity:0" class="heading-style-h1 _17ch">The documentation you want, effortlessly</h1></div><div class="soft-wrap"><p data-w-id="33604a5b-fb5a-4c6d-a71c-dcd321da83e3" style="opacity:0" class="text-size-medium text-weight-medium">Meet the modern standard for documentation. Beautiful out of the box, easy to maintain, and built to convert users.</p></div><div class="margin-top margin-medium"><div data-w-id="33604a5b-fb5a-4c6d-a71c-dcd321da83e6" style="opacity:0" class="button-group v-flex mobile-align-center"><a href="https://dashboard.mintlify.com/signup" class="button w-button">Get started</a><a data-cal-namespace="demo-with-mintlify" data-cal-link="team/mintlify/demo-with-mintlify" href="#" class="button is-secondary w-button">Get a demo</a></div></div></div></div></div></div><div class="padding-global"><div class="container-large extra-large"><div class="padding-section-medium padding-0"><div data-w-id="c7c52d7e-65cc-0ae7-ee1e-3d62a139c1cc" style="opacity:0" class="swiper-component"><div class="swiper1"><div role="tablist" aria-label="Documentation sections" class="custom-pagination"><div role="tab" data-slide-index="0" aria-controls="panel-Guides" class="pagination-item"><div class="icon-flex w-embed"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M16.146 2.98067C15.398 2.53967 14.181 2.01367 12.626 2.01367H12.624C11.022 2.01367 9.773 2.57067 9 3.04367C8.227 2.57067 6.978 2.01367 5.377 2.01367H5.375C3.82 2.01367 2.603 2.53967 1.855 2.98067C1.319 3.29567 1 3.85767 1 4.48167V13.5727C1 14.1537 1.287 14.6957 1.766 15.0227C2.239 15.3447 2.837 15.4127 3.369 15.2037C4.012 14.9507 4.683 14.8217 5.366 14.8207H5.374C6.586 14.8207 7.542 15.2247 8.131 15.5647C8.169 15.5867 8.211 15.5957 8.25 15.6147V5.94567C8.25 5.53167 8.586 5.19567 9 5.19567C9.414 5.19567 9.75 5.53167 9.75 5.94567V15.6147C9.789 15.5957 9.831 15.5867 9.869 15.5647C10.458 15.2257 11.413 14.8207 12.626 14.8207H12.633C13.316 14.8207 13.987 14.9507 14.631 15.2037C15.16 15.4117 15.758 15.3437 16.232 15.0217C16.713 14.6937 17 14.1507 17 13.5687V4.48667C17 3.86867 16.672 3.29167 16.146 2.98067Z" fill="currentColor"/> </svg></div><div data-slide-index="0">Guides</div><div class="underline"><div class="underline-inner"></div></div></div><div role="tab" data-slide-index="1" aria-controls="panel-Discovery" class="pagination-item"><div class="icon-flex w-embed"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4187_1170)"> <path d="M10.244 16.262C9.477 15.88 9 15.108 9 14.249C9 13.39 9.478 12.618 10.246 12.235L11.573 11.571L12.237 10.242C12.61 9.49505 13.382 9.03205 14.25 9.03205C15.118 9.03205 15.89 9.49605 16.263 10.242L16.704 11.125C16.892 10.447 17 9.73505 17 8.99805C17 4.58705 13.411 0.998047 9 0.998047C4.589 0.998047 1 4.58805 1 8.99905C1 10.396 1.371 11.777 2.062 12.97C2.3 13.416 1.967 14.972 1.22 15.719C1.011 15.928 0.944 16.241 1.05 16.517C1.155 16.793 1.414 16.982 1.709 16.998C1.788 17.002 1.869 17.004 1.951 17.004C3.096 17.004 4.485 16.597 5.391 16.133C6.066 16.476 6.781 16.72 7.522 16.86C8.006 16.952 8.503 16.998 9 16.998C9.737 16.998 10.448 16.89 11.127 16.702L10.244 16.261V16.262Z" fill="currentColor" fill-opacity="1"/> <path d="M17.585 13.5782L15.809 12.6902L14.921 10.9142C14.667 10.4062 13.833 10.4062 13.579 10.9142L12.691 12.6902L10.915 13.5782C10.66 13.7052 10.5 13.9652 10.5 14.2492C10.5 14.5332 10.66 14.7932 10.915 14.9202L12.691 15.8082L13.579 17.5842C13.706 17.8382 13.966 17.9992 14.25 17.9992C14.534 17.9992 14.794 17.8382 14.921 17.5842L15.809 15.8082L17.585 14.9202C17.84 14.7932 18 14.5332 18 14.2492C18 13.9652 17.84 13.7052 17.585 13.5782Z" fill="currentColor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4187_1170"> <rect width="18" height="18" fill="white"/> </clipPath> </defs> </svg></div><div>AI Chat</div><div class="underline"><div class="underline-inner"></div></div></div><div aria-controls="panel-Api-Reference" data-slide-index="2" role="tab" class="pagination-item"><div class="icon-flex w-embed"><svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4266_956)"> <path d="M13.75 2H5.25C3.733 2 2.5 3.233 2.5 4.75V13.25C2.5 14.767 3.733 16 5.25 16H13.75C15.267 16 16.5 14.767 16.5 13.25V4.75C16.5 3.233 15.267 2 13.75 2ZM6.78 12.78C6.634 12.926 6.442 13 6.25 13C6.058 13 5.866 12.927 5.72 12.78C5.427 12.487 5.427 12.012 5.72 11.719L7.69 9.749L5.72 7.779C5.427 7.486 5.427 7.011 5.72 6.718C6.013 6.425 6.488 6.425 6.781 6.718L9.281 9.218C9.574 9.511 9.574 9.986 9.281 10.279L6.781 12.779L6.78 12.78ZM12.75 13H10.25C9.836 13 9.5 12.664 9.5 12.25C9.5 11.836 9.836 11.5 10.25 11.5H12.75C13.164 11.5 13.5 11.836 13.5 12.25C13.5 12.664 13.164 13 12.75 13Z" fill="currentColor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4266_956"> <rect width="18" height="18" fill="white" transform="translate(0.5)"/> </clipPath> </defs> </svg></div><div>API Reference</div><div class="underline"><div class="underline-inner"></div></div></div><div role="tab" data-slide-index="3" aria-controls="panel-Knowledge-Base" class="pagination-item"><div class="icon-flex w-embed"><svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4266_1048)"> <path d="M16.423 13.069C16.429 13.056 16.438 13.046 16.443 13.033C16.477 12.95 16.492 12.864 16.495 12.775C16.495 12.766 16.5 12.759 16.5 12.75V1.75C16.5 1.336 16.164 1 15.75 1H5.25C3.733 1 2.5 2.233 2.5 3.75V14.5C2.5 15.878 3.621 17 5 17H15.75C16.036 17 16.297 16.837 16.423 16.581C16.549 16.325 16.519 16.019 16.344 15.792C15.822 15.113 15.91 13.779 16.348 13.203C16.38 13.161 16.401 13.115 16.423 13.068V13.069ZM9.25 4.5H12.75C13.164 4.5 13.5 4.836 13.5 5.25C13.5 5.664 13.164 6 12.75 6H9.25C8.836 6 8.5 5.664 8.5 5.25C8.5 4.836 8.836 4.5 9.25 4.5ZM9.25 7.5H12.75C13.164 7.5 13.5 7.836 13.5 8.25C13.5 8.664 13.164 9 12.75 9H9.25C8.836 9 8.5 8.664 8.5 8.25C8.5 7.836 8.836 7.5 9.25 7.5ZM4 3.75C4 3.061 4.561 2.5 5.25 2.5H5.5V12H5C4.644 12 4.307 12.077 4 12.212V3.75ZM14.592 15.5H5C4.448 15.5 4 15.051 4 14.5C4 13.949 4.448 13.5 5 13.5H14.605C14.45 14.129 14.431 14.839 14.591 15.5H14.592Z" fill="currentColor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4266_1048"> <rect width="18" height="18" fill="white" transform="translate(0.5)"/> </clipPath> </defs> </svg></div><div>Knowledge Base</div><div class="underline"><div class="underline-inner"></div></div></div><div aria-controls="panel-SDK-Library" data-slide-index="4" role="tab" class="pagination-item"><div class="icon-flex w-embed"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4187_1161)"> <path d="M14.487 5.427L10.573 1.513C10.242 1.182 9.803 1 9.336 1H3.75C2.233 1 1 2.233 1 3.75V14.25C1 15.767 2.233 17 3.75 17H9.225C9.248 16.8 9.291 16.599 9.369 16.406L9.999 14.846C10.163 14.44 10.402 14.078 10.709 13.77L14.402 10.076C14.581 9.897 14.785 9.755 14.999 9.63V6.663C14.999 6.196 14.817 5.756 14.486 5.426L14.487 5.427ZM3.528 7.648C3.403 7.431 3.405 7.162 3.531 6.946L4.861 4.667C5.11 4.239 5.818 4.237 6.069 4.667L7.399 6.947C7.525 7.162 7.526 7.43 7.402 7.648C7.278 7.866 7.045 8 6.795 8H4.136C3.886 8 3.652 7.865 3.528 7.648ZM8.5 12.6C8.5 13.096 8.096 13.5 7.6 13.5H5.901C5.405 13.5 5.001 13.096 5.001 12.6V10.9C5.001 10.404 5.405 10 5.901 10H7.6C8.096 10 8.5 10.404 8.5 10.9V12.6ZM10.5 10C9.397 10 8.5 9.103 8.5 8C8.5 6.897 9.397 6 10.5 6C11.603 6 12.5 6.897 12.5 8C12.5 9.103 11.603 10 10.5 10Z" fill="currentColor" fill-opacity="1"/> <path d="M17.5615 11.1428C16.9985 10.5798 16.0235 10.5768 15.4635 11.1378L11.7705 14.8318C11.6065 14.9958 11.4785 15.1898 11.3905 15.4088L10.7605 16.9698C10.6485 17.2468 10.7125 17.5648 10.9225 17.7778C11.0665 17.9238 11.2595 18.0008 11.4565 18.0008C11.5485 18.0008 11.6405 17.9838 11.7285 17.9498L13.2435 17.3598C13.4705 17.2718 13.6725 17.1388 13.8455 16.9668L17.5705 13.2418C17.8515 12.9598 18.0045 12.5878 18.0025 12.1918C18.0005 11.7968 17.8445 11.4248 17.5645 11.1448L17.5615 11.1428Z" fill="currentColor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4187_1161"> <rect width="18" height="18" fill="white"/> </clipPath> </defs> </svg></div><div>SDK Library</div><div class="underline"><div class="underline-inner"></div></div></div><div aria-controls="panel-SDK-Library" data-slide-index="4" role="tab" class="pagination-item"><div class="icon-flex w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"> <title>post</title> <g fill="currentColor"> <path d="m13.25,2H4.75c-1.5166,0-2.75,1.2334-2.75,2.75v8.5c0,1.5166,1.2334,2.75,2.75,2.75h8.5c1.5166,0,2.75-1.2334,2.75-2.75V4.75c0-1.5166-1.2334-2.75-2.75-2.75Zm-7.25,3c.5523,0,1,.4478,1,1s-.4477,1-1,1-1-.4478-1-1,.4478-1,1-1Zm3.25,8h-3.5c-.4141,0-.75-.3359-.75-.75s.3359-.75.75-.75h3.5c.4141,0,.75.3359.75.75s-.3359.75-.75.75Zm3-3h-6.5c-.4141,0-.75-.3359-.75-.75s.3359-.75.75-.75h6.5c.4141,0,.75.3359.75.75s-.3359.75-.75.75Z" stroke-width="0"></path> </g> </svg></div><div>Changelog</div><div class="underline"><div class="underline-inner"></div></div></div></div><div class="swiper-wrapper tabs"><div aria-labelledby="tab-guides" role="tabpanel" class="swiper-slide tabs-content"><div class="image-wrapper"><img class="layout_image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f7daa4c66696fc353a_changelogs-dark.avif" alt="" data-light-src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f7418af7ad252c7ede_guides.avif" data-dark-src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f7c29e9c0c25b86ede_guides-dark.avif" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, 92vw" data-dark-srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f7c29e9c0c25b86ede_guides-dark.avif" data-light-srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f7418af7ad252c7ede_guides.avif" loading="eager" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f7daa4c66696fc353a_changelogs-dark-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f7daa4c66696fc353a_changelogs-dark-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f7daa4c66696fc353a_changelogs-dark.avif 3301w"/></div></div><div aria-labelledby="tab-discovery" role="tabpanel" class="swiper-slide tabs-content"><div class="image-wrapper"><img class="layout_image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eb39493a109e0cf67a12dd_chat.svg" alt="Screenshot of doc UI" data-light-src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f7948ddfb2e855391a_chat.avif" data-dark-src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f70f0d0a60da0919f2_chat-dark.avif" data-dark-srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f70f0d0a60da0919f2_chat-dark.avif" data-light-srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f7948ddfb2e855391a_chat.avif" loading="eager"/></div></div><div aria-labelledby="tab-apireference" role="tabpanel" class="swiper-slide tabs-content"><div class="image-wrapper"><img class="layout_image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eb3949cbbab3d504f8a290_api.svg" alt="Screenshot of doc UI" data-light-src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f7c29e9c0c25b86ebb_api.avif" data-dark-src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f7020cd411e804192d_api-dark.avif" data-dark-srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f7020cd411e804192d_api-dark.avif" data-light-srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f7c29e9c0c25b86ebb_api.avif" loading="eager"/></div></div><div aria-labelledby="tab-knowledgebase" role="tabpanel" class="swiper-slide tabs-content"><div class="image-wrapper"><img class="layout_image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eb39495c7a35936a0c7df8_knowledge.avif" alt="Screenshot of theme" data-light-src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c341389ef36fc13f8cd37_knowledge.avif" data-dark-src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c34138ab05d1879c821f8_knowledge-dark.avif" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, 92vw" data-dark-srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c34138ab05d1879c821f8_knowledge-dark.avif" data-light-srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c341389ef36fc13f8cd37_knowledge.avif" loading="eager" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eb39495c7a35936a0c7df8_knowledge-p-500.avif 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eb39495c7a35936a0c7df8_knowledge.avif 2201w"/></div></div><div aria-labelledby="tab-sdklibrary" role="tabpanel" class="swiper-slide tabs-content"><div class="image-wrapper"><img class="layout_image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eb3949e2b8eea2de2fcf59_lib.svg" alt="Screenshot of theme" data-light-src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f6d3dd1eefa2836d8b_lib.avif" data-dark-src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f622e8e2b771ac192c_lib-dark.avif" data-dark-srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f622e8e2b771ac192c_lib-dark.avif" data-light-srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f6d3dd1eefa2836d8b_lib.avif" loading="eager"/></div></div><div aria-labelledby="tab-sdklibrary" role="tabpanel" class="swiper-slide tabs-content"><div class="image-wrapper"><img class="layout_image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6719d4ff0c5fea0544cdfac1_changelogs.png" alt="" data-light-src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f7928b06e97f7dd334_changelogs.avif" data-dark-src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f7daa4c66696fc353a_changelogs-dark.avif" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, 92vw" data-dark-srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f7daa4c66696fc353a_changelogs-dark.avif" data-light-srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/674c33f7928b06e97f7dd334_changelogs.avif" loading="eager" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6719d4ff0c5fea0544cdfac1_changelogs-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6719d4ff0c5fea0544cdfac1_changelogs-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6719d4ff0c5fea0544cdfac1_changelogs-p-1080.png 1080w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6719d4ff0c5fea0544cdfac1_changelogs-p-1600.png 1600w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6719d4ff0c5fea0544cdfac1_changelogs-p-2000.png 2000w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6719d4ff0c5fea0544cdfac1_changelogs-p-2600.png 2600w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6719d4ff0c5fea0544cdfac1_changelogs-p-3200.png 3200w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6719d4ff0c5fea0544cdfac1_changelogs.png 3300w"/></div></div></div></div></div></div></div></div></header><section class="customers"><div class="padding-global"><div class="container-large"><div class="padding-section-medium"><div class="text-align-center"><div class="margin-bottom margin-medium"><h1 blocks-non-deletable="true" class="heading-style-h4">Powering experiences<br/><span class="text-style-muted">from next-gen startups to enterprises</span></h1></div></div><div class="logo-cloud"><div id="w-node-f0d5e641-5f69-0757-0e20-7ff71103cdbb-1103cdba" class="logo-wrap lg-cloud w-embed"><svg width="120" height="30" viewBox="0 0 120 30" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M29.3666 11.4089H33.7401V21.8142H36.5316V11.4089H40.9053V8.92272H29.3666V11.4089Z" fill="currentColor"/> <path d="M24.4365 17.9467L18.5741 8.92272H15.4103V21.8142H18.1089V12.7902L23.9712 21.8142H27.1349V8.92272H24.4365V17.9467Z" fill="currentColor"/> <path d="M52.0714 14.0609H45.9299V8.92272H43.1384V21.8142H45.9299V16.5471H52.0714V21.8142H54.8629V8.92272H52.0714V14.0609Z" fill="currentColor"/> <path d="M5.19233 8.92272L0 21.8142H2.90325L3.96516 19.107H9.39741L10.4592 21.8142H13.3624L8.17005 8.92272H5.19233ZM4.90424 16.7129L6.68119 12.1824L8.45817 16.7129H4.90424Z" fill="currentColor"/> <path d="M77.997 8.69702C74.2374 8.69702 71.5763 11.4595 71.5763 15.3822C71.5763 19.268 74.2374 22.0305 77.997 22.0305C81.7376 22.0305 84.3805 19.268 84.3805 15.3822C84.3805 11.4595 81.7376 8.69702 77.997 8.69702ZM77.997 19.4522C75.8006 19.4522 74.4608 17.9052 74.4608 15.3822C74.4608 12.8223 75.8006 11.2753 77.997 11.2753C80.1744 11.2753 81.4956 12.8223 81.4956 15.3822C81.4956 17.9052 80.1744 19.4522 77.997 19.4522Z" fill="currentColor"/> <path d="M117.022 17.4816C116.538 18.734 115.57 19.4522 114.249 19.4522C112.053 19.4522 110.713 17.9052 110.713 15.3822C110.713 12.8223 112.053 11.2753 114.249 11.2753C115.57 11.2753 116.538 11.9935 117.022 13.2459H119.981C119.256 10.4834 117.078 8.69702 114.249 8.69702C110.49 8.69702 107.829 11.4595 107.829 15.3822C107.829 19.268 110.49 22.0305 114.249 22.0305C117.097 22.0305 119.274 20.2256 120 17.4816H117.022Z" fill="currentColor"/> <path d="M99.2326 8.92272L104.425 21.8142H107.272L102.08 8.92272H99.2326Z" fill="currentColor"/> <path d="M93.3491 8.92272H86.9842V21.8142H89.7758V17.1364H93.3491C96.3079 17.1364 98.1132 15.5895 98.1132 13.0296C98.1132 10.4697 96.3079 8.92272 93.3491 8.92272ZM93.2186 14.6502H89.7758V11.4089H93.2186C94.596 11.4089 95.3217 11.9614 95.3217 13.0296C95.3217 14.0977 94.596 14.6502 93.2186 14.6502Z" fill="currentColor"/> <path d="M69.4372 12.8454C69.4372 10.4144 67.6319 8.92272 64.6727 8.92272H58.3078V21.8142H61.0993V16.7681H64.2072L66.9992 21.8142H70.0885L66.9971 16.3837C68.5487 15.7935 69.4372 14.5506 69.4372 12.8454ZM61.0993 11.4089H64.5426C65.9196 11.4089 66.6452 11.9061 66.6452 12.8454C66.6452 13.7847 65.9196 14.2819 64.5426 14.2819H61.0993V11.4089Z" fill="currentColor"/> </svg></div><div id="w-node-f0d5e641-5f69-0757-0e20-7ff71103cdbc-1103cdba" class="logo-wrap lg-cloud w-embed"><svg width="114" height="32" viewBox="0 0 114 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M35.757 20.3058L35.7457 20.2695L42.868 13.6612V10.4771H31.4415V13.6612H38.2665L38.2778 13.6916L31.2251 20.3058V23.4899H42.9827V20.3058H35.757Z" fill="currentColor"/> <path d="M49.9954 10.1724C48.6774 10.1724 47.6032 10.3738 46.773 10.7768C45.9996 11.1279 45.3481 11.7065 44.9031 12.4374C44.4773 13.1732 44.2099 13.9919 44.1186 14.8398L47.5856 15.3336C47.7111 14.5849 47.9619 14.0543 48.3381 13.7416C48.7658 13.4145 49.2929 13.2493 49.828 13.2744C50.5318 13.2744 51.0422 13.4651 51.3593 13.8464C51.6737 14.2278 51.8335 14.7559 51.8335 15.4518V15.7989H48.4999C46.8031 15.7989 45.584 16.1802 44.8429 16.9429C44.1017 17.7055 43.7317 18.7122 43.7329 19.963C43.7329 21.2442 44.1029 22.1975 44.8429 22.8229C45.5828 23.4483 46.5134 23.759 47.6346 23.7552C49.0254 23.7552 50.0953 23.2703 50.8439 22.3005C51.2863 21.7044 51.602 21.0222 51.7714 20.2966H51.8973L52.3752 23.4806H55.5167V15.4175C55.5167 13.7511 55.0836 12.4603 54.217 11.5451C53.3504 10.6299 51.9431 10.1724 49.9954 10.1724ZM51.0942 20.1116C50.5956 20.533 49.9427 20.7427 49.1301 20.7427C48.4604 20.7427 47.9952 20.6239 47.7343 20.3862C47.6072 20.2737 47.5061 20.1343 47.4381 19.9778C47.3702 19.8212 47.337 19.6515 47.3411 19.4806C47.3337 19.3193 47.3587 19.1583 47.4146 19.0072C47.4706 18.8561 47.5563 18.7181 47.6665 18.6016C47.7858 18.4883 47.9265 18.4006 48.08 18.3439C48.2336 18.2872 48.3969 18.2627 48.5601 18.2717H51.8391V18.491C51.8457 18.801 51.7819 19.1083 51.653 19.3893C51.5237 19.6702 51.3326 19.9174 51.0942 20.1116Z" fill="currentColor"/> <path d="M74.5146 10.4771H70.8032V23.4918H74.5146V10.4771Z" fill="currentColor"/> <path d="M96.4293 10.4771C95.3805 10.4771 94.5543 10.852 93.9499 11.602C93.5161 12.1409 93.1861 12.9373 92.9603 13.991H92.851L92.3659 10.4771H89.1958V23.4899H92.9079V16.8166C92.9079 15.9752 93.1019 15.3301 93.491 14.8814C93.8796 14.4327 94.5972 14.2084 95.6426 14.2084H97.052V10.4771H96.4293Z" fill="currentColor"/> <path d="M85.5121 10.8994C84.6463 10.377 83.553 10.1164 82.2338 10.1177C80.1565 10.1177 78.5313 10.717 77.3577 11.9156C76.1835 13.1143 75.5964 14.7667 75.5964 16.8729C75.5668 18.1463 75.8412 19.4081 76.3965 20.5508C76.9044 21.5691 77.6955 22.4142 78.6723 22.9818C79.6552 23.5576 80.825 23.8461 82.1809 23.8474C83.3534 23.8474 84.333 23.6644 85.1191 23.2983C85.8589 22.9695 86.5023 22.4542 86.9896 21.8016C87.4529 21.1609 87.7969 20.4398 88.0049 19.6737L84.8074 18.7662C84.6725 19.2643 84.4132 19.7188 84.0547 20.0856C83.6935 20.4516 83.088 20.6347 82.2394 20.6347C81.2297 20.6347 80.4771 20.3417 79.982 19.7557C79.6224 19.3325 79.3966 18.7281 79.2968 17.9445H88.0539C88.0896 17.5784 88.1086 17.2714 88.1086 17.0235V16.2132C88.1298 15.1246 87.9079 14.0452 87.4596 13.0558C87.0398 12.1545 86.3613 11.4028 85.5121 10.8994ZM82.1262 13.2198C83.6316 13.2198 84.4846 13.9704 84.6864 15.4715H79.3625C79.4473 14.9706 79.6525 14.4985 79.9591 14.0968C80.4469 13.5109 81.1695 13.2185 82.1262 13.2198Z" fill="currentColor"/> <path d="M72.7002 5.22827C72.4209 5.21865 72.1427 5.26601 71.882 5.36755C71.6212 5.46908 71.3834 5.62272 71.1821 5.81932C70.9841 6.01782 70.8285 6.25591 70.7259 6.51849C70.6233 6.78106 70.5756 7.06239 70.5858 7.34464C70.576 7.62871 70.6236 7.91183 70.7266 8.17632C70.8292 8.44082 70.9847 8.68102 71.1831 8.88192C71.3814 9.08282 71.6185 9.24012 71.8796 9.34402C72.141 9.44792 72.4198 9.49618 72.7002 9.48578C72.979 9.49645 73.2566 9.44822 73.5153 9.34419C73.7746 9.24012 74.0093 9.08252 74.205 8.88139C74.3996 8.67819 74.5507 8.43731 74.651 8.17321C74.7508 7.90912 74.7971 7.62727 74.7865 7.34464C74.7993 7.06367 74.7547 6.78307 74.6544 6.52077C74.554 6.25846 74.4007 6.02022 74.205 5.82124C74.0087 5.62227 73.7735 5.46693 73.5148 5.36516C73.2566 5.26339 72.9795 5.21742 72.7024 5.23018L72.7002 5.22827Z" fill="currentColor"/> <path d="M65.0317 10.1177C63.7675 10.1177 62.7515 10.52 61.9842 11.3246C61.4159 11.9207 60.9989 12.8105 60.7331 13.9939H60.6147L60.1293 10.4799H56.9595V27.2278H60.671V20.3297H60.8065C60.9196 20.7896 61.0785 21.2367 61.2804 21.6643C61.5945 22.3607 62.1095 22.9444 62.7574 23.3383C63.429 23.7098 64.1858 23.8947 64.9508 23.8741C66.5048 23.8741 67.6878 23.2608 68.5005 22.0342C69.3132 20.8076 69.7197 19.096 69.7197 16.8996C69.7197 14.7782 69.3263 13.1175 68.5403 11.9175C67.7539 10.7176 66.5844 10.1177 65.0317 10.1177ZM65.408 19.5479C64.9751 20.1834 64.298 20.5012 63.3761 20.5012C62.9962 20.519 62.6173 20.4447 62.2713 20.2846C61.925 20.1244 61.6215 19.8831 61.386 19.5803C60.9055 18.9689 60.666 18.1319 60.6674 17.0693V16.8214C60.6674 15.7423 60.9068 14.916 61.386 14.3428C61.8648 13.7695 62.5285 13.4861 63.3761 13.4924C64.3144 13.4924 64.9958 13.7943 65.4211 14.3981C65.8463 15.0018 66.0588 15.8439 66.0588 16.9244C66.0614 18.0417 65.8457 18.9162 65.4116 19.5479H65.408Z" fill="currentColor"/> <path d="M29.7889 20.3052H16.9478V23.4931H29.7889V20.3052Z" fill="currentColor"/> </svg></div><div id="w-node-f0d5e641-5f69-0757-0e20-7ff71103cdbd-1103cdba" class="logo-wrap lg-cloud w-embed"><svg width="105" height="auto" viewBox="0 0 117 28" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M31.1797 14.5228C31.1797 10.131 33.9658 7.67168 38.0375 7.67168H42.9275V10.2872H38.1932C35.6995 10.2872 34.0048 11.712 34.0048 14.5228C34.0048 17.3336 35.6995 18.7584 38.1932 18.7584H42.9275V21.3739H38.0375C33.9658 21.3739 31.1797 18.8755 31.1797 14.5228Z" fill="currentColor"/> <path d="M45.46 17.0017V7.67151H48.1875V16.4356C48.1875 18.1337 49.0643 18.7389 50.5058 18.7389H52.1424C53.5645 18.7389 54.4608 18.1337 54.4608 16.4356V7.67151H57.1687V17.0212C57.1687 19.9686 55.2206 21.3739 52.5904 21.3739H50.0577C47.4083 21.3739 45.46 19.9686 45.46 17.0017Z" fill="currentColor"/> <path d="M67.8243 13.5078C69.0712 13.5078 69.5777 12.8442 69.5777 11.8682C69.5777 10.8141 69.0712 10.2482 67.7853 10.2482H62.8565V13.5078H67.8243ZM60.1094 7.67164H68.1944C70.9608 7.67164 72.3441 9.15511 72.3441 11.5364C72.3441 13.0588 71.6232 14.2886 70.4738 14.6205C71.6622 14.7571 72.2271 15.6159 72.2271 16.6503V21.374H69.4802V17.2944C69.4802 16.5723 69.2658 16.0649 68.2919 16.0649H62.8565V21.374H60.1094V7.67164Z" fill="currentColor"/> <path d="M74.7784 18.7779H82.3179C83.2337 18.7779 83.8179 18.2705 83.8179 17.3531C83.8179 16.3966 83.2142 16.0258 82.2594 15.9476L78.4604 15.655C76.0641 15.4793 74.4277 14.2691 74.4277 11.6925C74.4277 9.13561 76.2397 7.67168 78.6163 7.67168H86.078V10.2676H78.7724C77.7202 10.2676 77.1747 10.7751 77.1747 11.6731C77.1747 12.6099 77.7592 13.0004 78.7919 13.0979L82.649 13.3712C85.0064 13.5468 86.565 14.7961 86.565 17.314C86.565 19.7344 84.9091 21.3739 82.5128 21.3739H74.7784V18.7779Z" fill="currentColor"/> <path d="M94.9803 18.9536C97.4545 18.9536 99.2664 17.1968 99.2664 14.5229C99.2664 11.8683 97.4545 10.092 94.9803 10.092C92.5256 10.092 90.7139 11.8683 90.7139 14.5229C90.7139 17.1968 92.5256 18.9536 94.9803 18.9536ZM87.9473 14.5033C87.9473 10.3457 90.9476 7.43739 94.9608 7.43739H94.9998C99.0133 7.43739 102.033 10.3457 102.033 14.5033C102.033 18.6803 99.0133 21.6082 94.9998 21.6082H94.9608C90.9476 21.6082 87.9473 18.6803 87.9473 14.5033Z" fill="currentColor"/> <path d="M111.908 13.5078C113.155 13.5078 113.662 12.8442 113.662 11.8682C113.662 10.8141 113.155 10.2482 111.869 10.2482H106.94V13.5078H111.908ZM104.193 7.67164H112.278C115.045 7.67164 116.428 9.15511 116.428 11.5364C116.428 13.0588 115.707 14.2886 114.558 14.6205C115.746 14.7571 116.311 15.6159 116.311 16.6503V21.374H113.564V17.2944C113.564 16.5723 113.35 16.0649 112.376 16.0649H106.94V21.374H104.193V7.67164Z" fill="currentColor"/> <path d="M12.9048 25.638V14.3392L22.8537 8.58436L12.9048 25.638ZM14.8852 24.7034L18.4927 18.3026L22.2218 20.4595L14.8852 24.7034ZM2.73666 7.72659L22.2218 7.48797L12.273 13.2429L2.73666 7.72659ZM11.6411 25.5677L1.9356 19.9534L11.6411 14.3957V25.5677ZM11.6411 2.09866V6.47386L3.72607 6.67701L11.6411 2.09866ZM12.273 0.271284L0.428711 7.12256V20.8251L12.273 27.6764L24.1172 20.8251V7.12256L12.273 0.271284Z" fill="currentColor"/> </svg></div><div id="w-node-f0d5e641-5f69-0757-0e20-7ff71103cdbe-1103cdba" class="logo-wrap lg-cloud w-embed"><svg width="auto" height="24" viewBox="0 0 68 69" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6541_10344)"> <path d="M40.4692 29.2018L65.7838 0H59.785L37.8044 25.3555L20.2486 0H0L26.5479 38.342L0 68.9646H5.99907L29.2112 42.1883L47.7514 68.9646H68L40.4678 29.2018H40.4692ZM32.2527 38.6798L29.5628 34.8618L8.16062 4.48159H17.3749L34.6467 28.9994L37.3365 32.8174L59.7879 64.6868H50.5736L32.2527 38.6813V38.6798Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6541_10344"> <rect width="68" height="69" fill="currentColor"/> </clipPath> </defs> </svg></div><div class="logo-wrap lg-cloud w-embed"><svg width="120" height="38" viewBox="0 0 120 38" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M19.0937 13.6757V7.22754H19.7604V13.7049L26.105 7.35426V14.1609H28.821V23.8742H26.105V30.7188L19.7604 24.3681V31.2275H19.0937V24.3974L12.7777 30.7188V23.8742H10.061V14.1609H12.777V7.35438L19.0937 13.6757ZM18.636 14.1609L13.4437 8.9647V14.1609H18.636ZM12.777 14.8275H10.7277V23.2075H12.7771L12.7777 20.6922L18.6361 14.8289H12.777V14.8275ZM19.0937 15.3141L13.4444 20.9682V29.1083L19.0937 23.4542V15.3141ZM19.775 15.2995V23.4396L25.4384 29.1083L25.4383 20.9682L19.775 15.2995ZM26.105 23.2075V20.6922L20.2472 14.8289H26.105V14.8275H28.1544V23.2075H26.105ZM25.4384 14.1609V8.96482L20.2472 14.1609H25.4384Z" fill="currentColor"/> <path d="M47.0331 15.9102C47.4284 15.1708 47.9811 14.6015 48.6938 14.2008C49.4051 13.8015 50.2398 13.6015 51.1971 13.6015C52.1545 13.6015 52.9471 13.7982 53.6104 14.1922C54.2744 14.5862 54.7711 15.1082 55.0998 15.7582C55.4284 16.4088 55.5931 17.1215 55.5931 17.8962V18.9695H48.1458C48.2058 19.9002 48.5198 20.6402 49.0878 21.1888C49.6558 21.7382 50.4184 22.0122 51.3764 22.0122C52.1538 22.0122 52.7498 21.8542 53.1618 21.5382C53.5751 21.2222 53.8765 20.7842 54.0685 20.2228H55.7738C55.5464 21.0935 55.0831 21.8488 54.3831 22.4868C53.6838 23.1255 52.6811 23.4442 51.3771 23.4442C50.3958 23.4442 49.5311 23.2442 48.7831 22.8448C48.0358 22.4455 47.4578 21.8755 47.0511 21.1355C46.6445 20.3955 46.4411 19.5248 46.4411 18.5222C46.4411 17.5195 46.6378 16.6502 47.0331 15.9102ZM53.7991 17.6275C53.7991 16.8162 53.5898 16.1815 53.1711 15.7215C52.7524 15.2622 52.0944 15.0328 51.1964 15.0328C50.3591 15.0328 49.6738 15.2562 49.1418 15.7035C48.6091 16.1508 48.2831 16.7928 48.1638 17.6275H53.7991ZM57.8304 13.8695V15.3548C57.8304 15.4388 57.8725 15.4802 57.9565 15.4802C58.0045 15.4802 58.0398 15.4682 58.0645 15.4442C58.0891 15.4202 58.1124 15.3728 58.1358 15.3015C58.4464 14.3235 59.2184 13.8342 60.4511 13.8342H61.2405V15.4442H60.2171C59.4151 15.4442 58.8171 15.6348 58.4218 16.0168C58.0265 16.3988 57.8291 17.0248 57.8291 17.8962V23.1755H56.2138V13.8688L57.8304 13.8695ZM70.7251 21.2155C70.3005 21.9608 69.7498 22.5188 69.0738 22.8882C68.3978 23.2575 67.6704 23.4428 66.8931 23.4428C65.3618 23.4428 64.2844 22.8348 63.6624 21.6175C63.6144 21.5228 63.5544 21.4748 63.4831 21.4748C63.4118 21.4748 63.3751 21.5108 63.3751 21.5822V26.5748H61.7598V13.8702H63.3751V15.4628C63.3751 15.5342 63.4111 15.5702 63.4831 15.5702C63.5551 15.5702 63.6144 15.5222 63.6624 15.4275C64.2844 14.2102 65.3618 13.6022 66.8931 13.6022C67.6704 13.6022 68.3978 13.7875 69.0738 14.1568C69.7498 14.5262 70.2998 15.0842 70.7251 15.8302C71.1498 16.5755 71.3624 17.4742 71.3624 18.5228C71.3624 19.5715 71.1498 20.4695 70.7251 21.2155ZM68.8584 15.9542C68.2658 15.3395 67.4851 15.0322 66.5164 15.0322C65.5478 15.0322 64.7664 15.3395 64.1744 15.9542C63.5818 16.5688 63.3644 17.4248 63.3644 18.5222C63.3644 19.6195 63.5818 20.4762 64.1744 21.0902C64.7671 21.7048 65.5478 22.0122 66.5164 22.0122C67.4851 22.0122 68.2664 21.7055 68.8584 21.0902C69.4511 20.4755 69.7471 19.6195 69.7471 18.5222C69.7471 17.4248 69.4511 16.5688 68.8584 15.9542ZM73.7064 10.2902V23.1748H72.0911V10.2915H73.7064V10.2902ZM75.0364 15.9095C75.4311 15.1702 75.9844 14.6008 76.6971 14.2002C77.4084 13.8008 78.2431 13.6008 79.1998 13.6008C80.1564 13.6008 80.9505 13.7975 81.6138 14.1915C82.2778 14.5855 82.7745 15.1075 83.1031 15.7575C83.4325 16.4082 83.5965 17.1208 83.5965 17.8955V18.9688H76.1491C76.2091 19.8995 76.5231 20.6395 77.0911 21.1882C77.6591 21.7375 78.4218 22.0115 79.3798 22.0115C80.1571 22.0115 80.7524 21.8535 81.1651 21.5375C81.5784 21.2215 81.8798 20.7835 82.0718 20.2222H83.7771C83.5498 21.0928 83.0858 21.8482 82.3864 22.4862C81.6871 23.1248 80.6844 23.4435 79.3804 23.4435C78.3991 23.4435 77.5344 23.2435 76.7864 22.8442C76.0391 22.4448 75.4611 21.8748 75.0544 21.1348C74.6478 20.3948 74.4445 19.5242 74.4445 18.5215C74.4445 17.5188 74.6411 16.6495 75.0364 15.9095ZM81.8024 17.6268C81.8024 16.8155 81.5931 16.1808 81.1744 15.7208C80.7558 15.2615 80.0978 15.0322 79.1998 15.0322C78.3631 15.0322 77.6771 15.2555 77.1451 15.7028C76.6124 16.1502 76.2871 16.7922 76.1671 17.6268H81.8024ZM82.8778 22.8168L86.5744 18.2528L83.5418 14.2268V13.8688H85.3185L87.8498 17.3402L90.5778 13.8688H92.3898V14.2448L88.9084 18.5222L92.1211 22.8168V23.1748H90.3804L87.6344 19.4348L84.6918 23.1748H82.8791V22.8168H82.8778ZM94.7351 10.8402V12.8542H92.8484V10.8402H94.7351ZM94.6371 23.1755H93.0211V13.8695H94.6371V23.1755ZM95.1464 13.8695H96.9038V11.3642H98.5198V13.8695H100.369L100.823 15.2335H98.5198V19.6855C98.5198 20.2935 98.5044 20.7442 98.4744 21.0368C98.4444 21.3295 98.4298 21.5055 98.4298 21.5648C98.4298 21.6488 98.4531 21.7142 98.5011 21.7615C98.5491 21.8095 98.6144 21.8328 98.6991 21.8328C98.7584 21.8328 98.9351 21.8182 99.2285 21.7882C99.5211 21.7582 99.9731 21.7435 100.584 21.7435H101.212V23.1748H99.9558C98.9264 23.1748 98.1604 22.9248 97.6584 22.4228C97.1564 21.9215 96.9044 21.1588 96.9044 20.1322V15.2328H95.1478V13.8688L95.1464 13.8695ZM100.856 13.8695H102.502L105.176 21.6768C105.213 21.7728 105.27 21.8988 105.453 21.8988C105.636 21.8988 105.693 21.7722 105.729 21.6768L108.403 13.8695H109.939V14.2275L106.594 24.2668C106.306 25.1262 105.903 25.7255 105.383 26.0655C104.862 26.4055 104.258 26.5755 103.252 26.5755H101.529V25.1442H102.84C103.258 25.1442 103.599 25.1588 103.862 25.1888C104.125 25.2188 104.293 25.2335 104.365 25.2335C104.568 25.2335 104.706 25.1442 104.778 24.9655L105.281 23.6055C105.341 23.4628 105.346 23.3555 105.299 23.2828C105.275 23.2348 105.246 23.2048 105.21 23.1935C105.174 23.1815 105.12 23.1755 105.048 23.1755H103.954L100.857 13.8702L100.856 13.8695ZM45.4145 21.2308C44.9898 21.9762 44.4391 22.5342 43.7631 22.9035C43.0871 23.2728 42.3598 23.4582 41.5825 23.4582C40.0511 23.4582 38.9738 22.8502 38.3518 21.6328C38.3038 21.5382 38.2438 21.4902 38.1724 21.4902C38.1011 21.4902 38.0645 21.5262 38.0645 21.5975V26.5902H36.4491V13.8855H38.0645V15.4782C38.0645 15.5495 38.1004 15.5855 38.1724 15.5855C38.2444 15.5855 38.3038 15.5375 38.3518 15.4428C38.9731 14.2255 40.0511 13.6175 41.5825 13.6175C42.3598 13.6175 43.0871 13.8028 43.7631 14.1722C44.4391 14.5415 44.9891 15.0995 45.4145 15.8448C45.8391 16.5902 46.0518 17.4888 46.0518 18.5382C46.0518 19.5875 45.8391 20.4855 45.4145 21.2308ZM43.5478 15.9695C42.9551 15.3548 42.1745 15.0475 41.2058 15.0475C40.2371 15.0475 39.4558 15.3548 38.8638 15.9695C38.2711 16.5842 38.0538 17.4402 38.0538 18.5375C38.0538 19.6348 38.2711 20.4915 38.8638 21.1055C39.4565 21.7202 40.2371 22.0275 41.2058 22.0275C42.1745 22.0275 42.9558 21.7208 43.5478 21.1055C44.1404 20.4908 44.4365 19.6348 44.4365 18.5375C44.4365 17.4402 44.1404 16.5842 43.5478 15.9695Z" fill="currentColor"/> </svg></div><div id="w-node-f0d5e641-5f69-0757-0e20-7ff71103cdc0-1103cdba" class="logo-wrap lg-cloud w-embed"><svg width="100" height="auto" viewBox="0 0 154 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6710_10900)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M29.0627 7.54564C29.0735 7.58555 29.079 7.6267 29.0791 7.66804V14.0936C29.0791 14.1761 29.0573 14.2571 29.016 14.3285C28.9747 14.3998 28.9152 14.459 28.8437 14.5001L23.4506 17.6051V23.7595C23.4506 23.927 23.3616 24.0816 23.2163 24.166L11.9587 30.6466C11.9329 30.6612 11.9048 30.6706 11.8767 30.6806C11.8661 30.6841 11.8562 30.6905 11.845 30.6934C11.7664 30.7142 11.6836 30.7142 11.6049 30.6934C11.5921 30.6899 11.5803 30.6829 11.568 30.6782C11.5423 30.6688 11.5153 30.6606 11.4907 30.6466L0.235425 24.166C0.163923 24.1249 0.104513 24.0657 0.0631809 23.9943C0.0218491 23.923 5.66539e-05 23.842 0 23.7595L0 4.48277C0 4.44061 0.00585635 4.39961 0.0163978 4.35979C0.0199116 4.34632 0.0281105 4.33402 0.0327955 4.32055C0.0415801 4.29596 0.049779 4.27077 0.0626629 4.24793C0.0714474 4.23271 0.0843314 4.22041 0.0948728 4.20635C0.108342 4.18761 0.120641 4.16829 0.136453 4.15189C0.149922 4.13842 0.167492 4.12846 0.182718 4.11675C0.199701 4.1027 0.214928 4.08747 0.234254 4.07634L5.86279 0.836025C5.93405 0.795019 6.01483 0.773438 6.09704 0.773438C6.17926 0.773438 6.26004 0.795019 6.3313 0.836025L11.9592 4.07634H11.9604C11.9792 4.08805 11.995 4.1027 12.012 4.11617C12.0272 4.12788 12.0442 4.13842 12.0576 4.1513C12.074 4.16829 12.0857 4.18761 12.0998 4.20635C12.1098 4.22041 12.1232 4.23271 12.1314 4.24793C12.1449 4.27136 12.1525 4.29596 12.1619 4.32055C12.1666 4.33402 12.1748 4.34632 12.1783 4.36038C12.1891 4.40028 12.1946 4.44143 12.1947 4.48277V16.5228L16.8844 13.8225V7.66745C16.8844 7.62646 16.8903 7.58488 16.9008 7.54564C16.9049 7.53159 16.9125 7.51929 16.9172 7.50582C16.9266 7.48122 16.9348 7.45604 16.9477 7.4332C16.9565 7.41797 16.9694 7.40568 16.9793 7.39162C16.9934 7.37288 17.0051 7.35355 17.0215 7.33716C17.0349 7.32369 17.0519 7.31373 17.0672 7.30202C17.0847 7.28796 17.1 7.27274 17.1187 7.26161L22.7478 4.02129C22.8191 3.98023 22.8998 3.95861 22.9821 3.95861C23.0643 3.95861 23.1451 3.98023 23.2163 4.02129L28.8443 7.26161C28.8642 7.27332 28.8794 7.28796 28.897 7.30143C28.9116 7.31315 28.9286 7.32369 28.9421 7.33657C28.9585 7.35355 28.9702 7.37288 28.9842 7.39162C28.9948 7.40568 29.0077 7.41797 29.0159 7.4332C29.0293 7.45604 29.0369 7.48122 29.0463 7.50582C29.0516 7.51929 29.0592 7.53159 29.0627 7.54564ZM28.1409 13.8225V8.47914L26.1714 9.61293L23.4506 11.1795V16.5228L28.1415 13.8225H28.1409ZM22.513 23.4884V18.1415L19.8366 19.67L12.1941 24.0318V29.4291L22.513 23.4884ZM0.938187 5.29388V23.4884L11.2559 29.4285V24.0324L5.86572 20.9819L5.86396 20.9807L5.86162 20.9795C5.84346 20.969 5.82824 20.9538 5.81125 20.9409C5.79661 20.9292 5.77963 20.9198 5.76675 20.9069L5.76557 20.9051C5.75035 20.8905 5.73981 20.8723 5.72692 20.8559C5.71521 20.8401 5.70115 20.8267 5.69178 20.8103L5.6912 20.8085C5.68066 20.7909 5.67422 20.7699 5.6666 20.7499C5.65899 20.7324 5.64903 20.716 5.64435 20.6972C5.63849 20.675 5.63732 20.651 5.63498 20.6281C5.63264 20.6106 5.62795 20.593 5.62795 20.5754V20.5743V7.99424L2.90768 6.42708L0.938187 5.29388ZM6.09763 1.78358L1.40845 4.48277L6.09646 7.18196L10.7851 4.48219L6.09646 1.78358H6.09763ZM8.53621 18.6288L11.2565 17.0628V5.29388L9.287 6.42767L6.56614 7.99424V19.7632L8.53621 18.6288ZM22.9821 4.96885L18.2935 7.66804L22.9821 10.3672L27.6701 7.66745L22.9821 4.96885ZM22.513 11.1795L19.7921 9.61293L17.8226 8.47914V13.8225L20.5429 15.3885L22.513 16.5228V11.1795ZM11.7244 23.2207L18.6015 19.2946L22.0392 17.3328L17.3541 14.6353L11.9598 17.741L7.04343 20.5713L11.7244 23.2207Z" fill="CurrentColor"/> </g> <g clip-path="url(#clip1_6710_10900)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M44.0547 2.41699V25.463H52.3927V29.439H39.6147V2.41699H44.0547ZM68.0647 13.882V11.45H72.2727V29.44H68.0657V27.007C67.4987 27.908 66.6957 28.616 65.6527 29.13C64.6107 29.645 63.5617 29.902 62.5067 29.902C61.1417 29.902 59.8937 29.652 58.7617 29.15C57.6584 28.6689 56.6661 27.9656 55.8467 27.084C55.0349 26.207 54.3939 25.1862 53.9567 24.074C53.5011 22.9184 53.2713 21.6861 53.2797 20.444C53.2797 19.184 53.5047 17.98 53.9557 16.834C54.3901 15.7142 55.0317 14.6862 55.8467 13.804C56.6664 12.9229 57.6586 12.2199 58.7617 11.739C59.8937 11.237 61.1417 10.987 62.5067 10.987C63.5617 10.987 64.6107 11.244 65.6527 11.759C66.6947 12.274 67.4977 12.981 68.0647 13.882ZM67.6787 22.645C67.9379 21.9406 68.069 21.1955 68.0657 20.445C68.0657 19.672 67.9357 18.939 67.6787 18.245C67.4376 17.5768 67.071 16.9607 66.5987 16.43C66.1274 15.9094 65.556 15.4891 64.9187 15.194C64.2627 14.886 63.5357 14.731 62.7387 14.731C61.9397 14.731 61.2187 14.886 60.5757 15.194C59.9464 15.4927 59.3823 15.9127 58.9157 16.43C58.4451 16.958 58.0847 17.5747 57.8557 18.244C57.6084 18.9509 57.4839 19.695 57.4877 20.444C57.4877 21.216 57.6097 21.95 57.8547 22.644C58.0987 23.34 58.4527 23.944 58.9167 24.459C59.3831 24.9765 59.9473 25.3966 60.5767 25.695C61.2187 26.004 61.9397 26.158 62.7377 26.158C63.5357 26.158 64.2627 26.004 64.9187 25.695C65.5562 25.4002 66.1276 24.9798 66.5987 24.459C67.071 23.9286 67.4376 23.3129 67.6787 22.645ZM75.5927 29.439V11.45H87.0197V15.591H79.7997V29.441H75.5927V29.439ZM102.268 13.882V11.45H106.476V29.44H102.268V27.007C101.702 27.908 100.898 28.616 99.8547 29.13C98.8127 29.645 97.7647 29.902 96.7087 29.902C95.3447 29.902 94.0967 29.652 92.9647 29.15C91.8614 28.6689 90.8691 27.9656 90.0497 27.084C89.2375 26.2071 88.5962 25.1863 88.1587 24.074C87.7035 22.9183 87.474 21.6861 87.4827 20.444C87.4827 19.184 87.7077 17.98 88.1587 16.834C88.5928 15.7142 89.234 14.6863 90.0487 13.804C90.8687 12.9228 91.8613 12.2198 92.9647 11.739C94.0967 11.237 95.3447 10.987 96.7087 10.987C97.7637 10.987 98.8127 11.244 99.8547 11.759C100.898 12.274 101.702 12.981 102.268 13.882ZM101.882 22.645C102.141 21.9405 102.271 21.1955 102.268 20.445C102.268 19.672 102.138 18.939 101.882 18.245C101.641 17.5768 101.274 16.9607 100.802 16.43C100.33 15.9094 99.759 15.4891 99.1217 15.194C98.4657 14.886 97.7377 14.731 96.9407 14.731C96.1427 14.731 95.4217 14.886 94.7787 15.194C94.1494 15.4927 93.5853 15.9127 93.1187 16.43C92.6477 16.9579 92.287 17.5746 92.0577 18.244C91.8107 18.951 91.6866 19.6951 91.6907 20.444C91.6907 21.216 91.8117 21.95 92.0577 22.644C92.3017 23.34 92.6557 23.944 93.1187 24.459C93.5851 24.9765 94.1493 25.3966 94.7787 25.695C95.4217 26.004 96.1427 26.158 96.9407 26.158C97.7377 26.158 98.4657 26.004 99.1217 25.695C99.7592 25.4002 100.331 24.9798 100.802 24.459C101.274 23.9286 101.641 23.3129 101.882 22.645ZM123.345 11.45H127.607L120.702 29.44H115.412L108.506 11.45H112.768L118.057 25.226L123.345 11.45ZM136.785 10.987C142.514 10.987 146.421 16.065 145.687 22.008H131.728C131.728 23.56 133.295 26.56 137.016 26.56C140.216 26.56 142.361 23.745 142.362 23.743L145.205 25.943C142.663 28.656 140.582 29.903 137.323 29.903C131.5 29.903 127.553 26.219 127.553 20.445C127.553 15.222 131.633 10.987 136.785 10.987ZM131.739 18.881H141.823C141.792 18.535 141.245 14.329 136.751 14.329C132.256 14.329 131.771 18.535 131.739 18.881ZM148.427 29.439V2.41699H152.635V29.439H148.427Z" fill="CurrentColor"/> </g> <defs> <clipPath id="clip0_6710_10900"> <rect width="29.2817" height="30.453" fill="white" transform="translate(0 0.773438)"/> </clipPath> <clipPath id="clip1_6710_10900"> <rect width="114" height="29" fill="white" transform="translate(39.2817 1.5)"/> </clipPath> </defs> </svg></div><div id="w-node-f0d5e641-5f69-0757-0e20-7ff71103cdc1-1103cdba" class="logo-wrap lg-cloud w-embed"><svg width="110" height="48" viewBox="0 0 110 48" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M30.9951 40.5057C28.7147 40.5057 26.555 40.0496 24.5831 39.2313C21.6319 37.9972 19.11 35.9314 17.3259 33.3291C15.5418 30.7267 14.5089 27.6011 14.5089 24.2207C14.5089 21.9671 14.965 19.8343 15.8101 17.8758C17.0576 14.9515 19.1503 12.4698 21.7795 10.7125C24.4087 8.95526 27.5744 7.93578 30.9951 7.93578V5.48096C28.3793 5.48096 25.8842 6.00411 23.6038 6.95653C20.1966 8.37845 17.2991 10.7528 15.2601 13.7442C13.2077 16.7356 12.0139 20.344 12.0139 24.2207C12.0139 26.8097 12.5504 29.2779 13.5028 31.5181C14.9382 34.8851 17.3527 37.7424 20.371 39.7679C23.4026 41.7935 27.0513 42.9739 30.9817 42.9739V40.5057H30.9951Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M22.5441 34.2144C21.0014 32.9266 19.8478 31.3705 19.0698 29.6669C18.2918 27.9633 17.8893 26.1255 17.8893 24.2744C17.8893 22.7988 18.1442 21.3232 18.6405 19.9147C19.1503 18.5062 19.9015 17.1648 20.9344 15.9441C22.2221 14.4148 23.7916 13.2612 25.4952 12.4832C27.1989 11.7052 29.0634 11.3161 30.9146 11.3161C32.3902 11.3161 33.8792 11.571 35.2877 12.0673C36.7096 12.5771 38.051 13.3283 39.2717 14.3478L40.868 12.4564C39.4193 11.2491 37.8096 10.3369 36.1194 9.74667C34.4292 9.14302 32.6719 8.84791 30.9146 8.84791C28.7013 8.84791 26.5013 9.31741 24.4623 10.243C22.4234 11.1686 20.5588 12.5503 19.0295 14.3612C17.8088 15.8099 16.9101 17.4062 16.3064 19.083C15.7028 20.7598 15.4077 22.5171 15.4077 24.2744C15.4077 26.4743 15.8772 28.6743 16.8028 30.6998C17.7284 32.7254 19.1234 34.59 20.9478 36.1058L22.5441 34.2144Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M26.3671 32.6181C24.744 31.7596 23.4697 30.512 22.5977 29.0499C21.7258 27.5877 21.2697 25.8975 21.2697 24.1939C21.2697 22.6915 21.6185 21.1757 22.3831 19.7672C23.2416 18.144 24.5026 16.8831 25.9781 16.0246C27.4537 15.1527 29.1439 14.6966 30.8609 14.6966C32.3633 14.6966 33.8926 15.0453 35.3145 15.7965L36.4681 13.61C34.684 12.671 32.7524 12.2149 30.8475 12.2283C28.6878 12.2283 26.5549 12.8052 24.7038 13.8917C22.8526 14.9783 21.2563 16.588 20.1832 18.6135C19.2441 20.3977 18.7881 22.3159 18.7881 24.1939C18.7881 26.3402 19.3649 28.4596 20.4648 30.2974C21.5648 32.1486 23.1745 33.7181 25.2135 34.7912L26.3671 32.6181Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M31.0085 30.2571C30.1634 30.2571 29.3586 30.0827 28.6342 29.7742C27.5342 29.3181 26.6086 28.5401 25.9513 27.5609C25.294 26.5816 24.905 25.4146 24.905 24.1536C24.905 23.3085 25.0794 22.5037 25.3879 21.7793C25.844 20.6927 26.622 19.7537 27.6013 19.0964C28.5805 18.4391 29.7476 18.0501 31.0085 18.0501V15.5819C29.8281 15.5819 28.7013 15.8233 27.6684 16.2526C26.1257 16.9099 24.8245 17.983 23.8989 19.3513C22.9599 20.733 22.4234 22.3963 22.4234 24.167C22.4234 25.3475 22.6648 26.4743 23.0941 27.5072C23.7514 29.0498 24.8379 30.351 26.2062 31.2766C27.5745 32.1888 29.2244 32.7254 31.0085 32.7254V30.2571Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M33.0207 22.2085C32.739 21.9134 32.4304 21.672 32.1219 21.4976C31.8134 21.3232 31.4914 21.2293 31.1561 21.2293C30.7 21.2293 30.311 21.3098 29.9488 21.4707C29.6 21.6317 29.2915 21.8463 29.0366 22.128C28.7817 22.3963 28.5939 22.7183 28.4598 23.067C28.3256 23.4158 28.272 23.7914 28.272 24.167C28.272 24.5426 28.3391 24.9182 28.4598 25.267C28.5939 25.6158 28.7817 25.9377 29.0366 26.206C29.2915 26.4743 29.5866 26.7023 29.9488 26.8633C30.2975 27.0243 30.7 27.1048 31.1561 27.1048C31.5317 27.1048 31.8939 27.0243 32.2158 26.8767C32.5377 26.7157 32.8194 26.4877 33.0475 26.1926L34.684 27.9499C34.4426 28.1913 34.1609 28.4059 33.8389 28.5803C33.517 28.7547 33.195 28.9023 32.8731 29.0096C32.5511 29.1169 32.2292 29.1974 31.9341 29.2376C31.639 29.2913 31.3707 29.3047 31.1561 29.3047C30.4183 29.3047 29.7207 29.184 29.0768 28.9425C28.4195 28.7011 27.8561 28.3523 27.3866 27.8962C26.9037 27.4535 26.5281 26.9035 26.2464 26.2731C25.9647 25.6426 25.8306 24.9316 25.8306 24.167C25.8306 23.389 25.9647 22.6914 26.2464 22.061C26.5281 21.4305 26.9037 20.8939 27.3866 20.4378C27.8696 19.9952 28.433 19.6464 29.0768 19.3915C29.7341 19.1501 30.4317 19.0293 31.1561 19.0293C31.7865 19.0293 32.417 19.1501 33.0475 19.3915C33.678 19.633 34.2414 20.0086 34.7109 20.5183L33.0207 22.2085Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M41.9277 23.1877C41.9143 22.4633 41.6863 21.8999 41.257 21.4841C40.8143 21.0682 40.2107 20.867 39.4327 20.867C38.6949 20.867 38.1181 21.0817 37.6888 21.4975C37.2596 21.9133 36.9913 22.4902 36.8974 23.1877H41.9277ZM36.9108 25.0255C36.9913 25.7633 37.273 26.3267 37.7693 26.7425C38.2656 27.1449 38.8559 27.3596 39.5534 27.3596C40.1705 27.3596 40.6802 27.2388 41.0961 26.984C41.5119 26.7291 41.8741 26.4206 42.196 26.0315L43.9533 27.3596C43.3765 28.0705 42.746 28.5668 42.0351 28.8754C41.3241 29.1705 40.5863 29.318 39.8083 29.318C39.0705 29.318 38.3729 29.1973 37.7291 28.9559C37.0718 28.7144 36.5084 28.3656 36.0389 27.9095C35.5559 27.4669 35.1803 26.9169 34.8986 26.2864C34.6169 25.6559 34.4828 24.945 34.4828 24.1804C34.4828 23.4023 34.6169 22.7048 34.8986 22.0743C35.1803 21.4438 35.5559 20.9073 36.0389 20.4512C36.5218 20.0085 37.0852 19.6597 37.7291 19.4049C38.3864 19.1634 39.0839 19.0427 39.8083 19.0427C40.4924 19.0427 41.1095 19.1634 41.6729 19.4049C42.2363 19.6463 42.7192 19.9817 43.1216 20.4378C43.524 20.8804 43.8326 21.4438 44.0606 22.1011C44.2887 22.7584 44.396 23.5231 44.396 24.3816V25.0523H36.9108V25.0255Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M45.4289 19.2709H47.8837V20.8135H47.9239C48.1922 20.2367 48.5812 19.8074 49.091 19.4855C49.6007 19.177 50.1775 19.016 50.8214 19.016C50.969 19.016 51.1165 19.0294 51.2641 19.0562C51.4117 19.0831 51.5592 19.1233 51.7068 19.1635V21.5245C51.5056 21.4708 51.3043 21.4306 51.1031 21.3903C50.9019 21.3501 50.7141 21.3367 50.5263 21.3367C49.9495 21.3367 49.4934 21.444 49.1446 21.6586C48.7959 21.8732 48.5276 22.1147 48.3532 22.383C48.1654 22.6513 48.0447 22.933 47.991 23.2013C47.9239 23.4695 47.8971 23.6708 47.8971 23.8183V29.0499H45.4423V19.2709H45.4289Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M59.1786 23.1877C59.1652 22.4633 58.9371 21.8999 58.5079 21.4841C58.0652 21.0682 57.4615 20.867 56.6835 20.867C55.9457 20.867 55.3689 21.0817 54.9396 21.4975C54.5104 21.9133 54.2421 22.4902 54.1482 23.1877H59.1786ZM54.1616 25.0255C54.2421 25.7633 54.5238 26.3267 55.0201 26.7425C55.5165 27.1449 56.1067 27.3596 56.8042 27.3596C57.4213 27.3596 57.931 27.2388 58.3469 26.984C58.7627 26.7291 59.1249 26.4206 59.4469 26.0315L61.2041 27.3596C60.6273 28.0705 59.9968 28.5668 59.2859 28.8754C58.5749 29.1705 57.8371 29.318 57.0591 29.318C56.3213 29.318 55.6238 29.1973 54.9799 28.9559C54.3226 28.7144 53.7592 28.3656 53.2897 27.9095C52.8068 27.4669 52.4312 26.9169 52.1495 26.2864C51.8678 25.6559 51.7336 24.945 51.7336 24.1804C51.7336 23.4023 51.8678 22.7048 52.1495 22.0743C52.4312 21.4438 52.8068 20.9073 53.2897 20.4512C53.7726 20.0085 54.336 19.6597 54.9799 19.4049C55.6372 19.1634 56.3347 19.0427 57.0591 19.0427C57.7432 19.0427 58.3603 19.1634 58.9237 19.4049C59.4871 19.6463 59.97 19.9817 60.3724 20.4378C60.7749 20.8804 61.0834 21.4438 61.3114 22.1011C61.5395 22.7584 61.6468 23.5231 61.6468 24.3816V25.0523H54.1616V25.0255Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M70.6612 24.167C70.6612 23.7914 70.5941 23.4158 70.46 23.0671C70.3259 22.7183 70.1381 22.3964 69.8832 22.1281C69.6283 21.8598 69.3198 21.6317 68.9576 21.4708C68.5954 21.3098 68.193 21.2293 67.7369 21.2293C67.2808 21.2293 66.8784 21.3098 66.5162 21.4708C66.154 21.6317 65.8455 21.8464 65.5906 22.1281C65.3357 22.3964 65.1479 22.7183 65.0138 23.0671C64.8797 23.4158 64.8126 23.7914 64.8126 24.167C64.8126 24.5426 64.8797 24.9182 65.0138 25.267C65.1479 25.6158 65.3357 25.9377 65.5906 26.206C65.8455 26.4743 66.154 26.7023 66.5162 26.8633C66.8784 27.0243 67.2808 27.1048 67.7369 27.1048C68.193 27.1048 68.5954 27.0243 68.9576 26.8633C69.3198 26.7023 69.6283 26.4877 69.8832 26.206C70.1381 25.9377 70.3259 25.6158 70.46 25.267C70.5941 24.9182 70.6612 24.5426 70.6612 24.167ZM64.9065 13.6234V20.5049H64.9736C65.0943 20.344 65.2553 20.1696 65.4431 20.0086C65.6309 19.8342 65.8723 19.6733 66.1406 19.5257C66.4223 19.3781 66.7308 19.2574 67.093 19.1635C67.4552 19.0696 67.871 19.0159 68.3405 19.0159C69.0381 19.0159 69.6954 19.1501 70.2856 19.4184C70.8758 19.6867 71.3856 20.0488 71.8014 20.5049C72.2173 20.9744 72.5526 21.511 72.7807 22.1415C73.0087 22.772 73.1295 23.4427 73.1295 24.167C73.1295 24.8914 73.0221 25.5621 72.7941 26.1926C72.5795 26.8231 72.2441 27.3596 71.8283 27.8291C71.399 28.2986 70.8893 28.6608 70.2722 28.9157C69.6686 29.184 68.9844 29.3181 68.2198 29.3181C67.5223 29.3181 66.865 29.184 66.2479 28.9157C65.6443 28.6474 65.1614 28.2047 64.7992 27.6145H64.7589V29.0901H62.398V13.6234H64.9065Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M74.1892 19.2709H76.644V20.8135H76.6842C76.9525 20.2367 77.3415 19.8074 77.8513 19.4855C78.361 19.177 78.9378 19.016 79.5817 19.016C79.7293 19.016 79.8768 19.0294 80.0244 19.0562C80.172 19.0831 80.3195 19.1233 80.4671 19.1635V21.5245C80.2659 21.4708 80.0646 21.4306 79.8634 21.3903C79.6622 21.3501 79.4744 21.3367 79.2866 21.3367C78.7098 21.3367 78.2537 21.444 77.9049 21.6586C77.5562 21.8732 77.2879 22.1147 77.1135 22.383C76.9257 22.6513 76.805 22.933 76.7513 23.2013C76.6842 23.4695 76.6574 23.6708 76.6574 23.8183V29.0499H74.2026V19.2709H74.1892Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M86.9462 24.6767H86.423C86.0742 24.6767 85.6852 24.6901 85.256 24.7169C84.8267 24.7438 84.4243 24.8108 84.0353 24.9047C83.6597 25.0121 83.3377 25.1596 83.0694 25.3474C82.8011 25.5486 82.6804 25.8169 82.6804 26.1791C82.6804 26.4071 82.7341 26.6084 82.8414 26.7559C82.9487 26.9169 83.0829 27.051 83.2438 27.1583C83.4048 27.2657 83.5926 27.3461 83.8072 27.3998C84.0084 27.4535 84.2231 27.4669 84.4243 27.4669C85.2828 27.4669 85.9133 27.2657 86.3291 26.8632C86.7315 26.4608 86.9462 25.9108 86.9462 25.2267V24.6767ZM87.0267 27.7217C86.6645 28.2851 86.2084 28.6876 85.6584 28.9424C85.1084 29.1973 84.4914 29.318 83.8341 29.318C83.378 29.318 82.9353 29.251 82.4926 29.1302C82.05 29.0095 81.6743 28.8217 81.3256 28.5803C80.9902 28.3388 80.7085 28.0303 80.5073 27.6681C80.3061 27.3059 80.1988 26.8766 80.1988 26.3803C80.1988 25.8437 80.2927 25.4011 80.4939 25.0255C80.6817 24.6499 80.95 24.3413 81.2719 24.0865C81.5939 23.8316 81.9695 23.6304 82.3987 23.4828C82.828 23.3353 83.2706 23.2145 83.7402 23.1475C84.2097 23.067 84.6657 23.0267 85.1487 22.9999C85.6182 22.9731 86.0608 22.9731 86.4767 22.9731H87.0937V22.7048C87.0937 22.0877 86.8791 21.6316 86.4498 21.3231C86.0206 21.0146 85.4706 20.867 84.8133 20.867C84.2901 20.867 83.7938 20.9609 83.3377 21.1487C82.8816 21.3365 82.4792 21.578 82.1573 21.8999L80.8427 20.6122C81.3926 20.0488 82.0499 19.6597 82.7877 19.4049C83.5255 19.1634 84.2901 19.0427 85.0816 19.0427C85.7925 19.0427 86.3828 19.1232 86.8657 19.2707C87.3486 19.4317 87.751 19.6329 88.073 19.8744C88.3949 20.1158 88.6364 20.3975 88.8108 20.7195C88.9851 21.0414 89.1059 21.3634 89.1864 21.6853C89.2668 22.0072 89.3071 22.3292 89.3205 22.6377C89.3339 22.9462 89.3473 23.2145 89.3473 23.4426V29.0766H87.1071V27.7217H87.0267Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M96.0142 21.9804C95.5313 21.3097 94.8874 20.9744 94.0826 20.9744C93.7472 20.9744 93.4253 21.0548 93.1168 21.2158C92.7948 21.3768 92.6473 21.6451 92.6473 22.0073C92.6473 22.3024 92.7814 22.5304 93.0363 22.6646C93.2911 22.7987 93.6265 22.9194 94.0289 23.0133C94.4314 23.1072 94.8606 23.2011 95.3167 23.3084C95.7728 23.4158 96.202 23.5633 96.6045 23.7779C97.0069 23.9926 97.3289 24.2743 97.5971 24.6499C97.852 25.0121 97.9861 25.5218 97.9861 26.1657C97.9861 26.7559 97.8654 27.2388 97.6105 27.6413C97.3557 28.0437 97.0337 28.3656 96.6179 28.6071C96.2155 28.8486 95.7594 29.0229 95.2496 29.1437C94.7399 29.251 94.2301 29.3046 93.7338 29.3046C92.9692 29.3046 92.2582 29.1973 91.6143 28.9827C90.9705 28.7681 90.3937 28.3656 89.8839 27.8022L91.5339 26.273C91.8558 26.6218 92.1912 26.9169 92.5534 27.1449C92.9155 27.373 93.3582 27.4803 93.8814 27.4803C94.0558 27.4803 94.2436 27.4535 94.4314 27.4132C94.6192 27.373 94.807 27.3059 94.9679 27.212C95.1289 27.1181 95.263 26.9974 95.3704 26.8498C95.4777 26.7023 95.5179 26.5413 95.5179 26.3535C95.5179 26.0181 95.3838 25.7633 95.1289 25.6023C94.874 25.4413 94.5387 25.3072 94.1362 25.1999C93.7338 25.0925 93.3046 24.9986 92.8485 24.9182C92.3924 24.8243 91.9631 24.6901 91.5607 24.4889C91.1583 24.2877 90.8363 24.0194 90.568 23.6572C90.3132 23.3084 90.179 22.8121 90.179 22.1816C90.179 21.6317 90.2863 21.1622 90.5144 20.7597C90.7424 20.3573 91.0375 20.0354 91.4131 19.7671C91.7887 19.5122 92.2046 19.3244 92.6875 19.1903C93.1704 19.0695 93.6533 19.0024 94.1497 19.0024C94.807 19.0024 95.4643 19.1098 96.1081 19.3378C96.752 19.5659 97.2752 19.9415 97.6776 20.4914L96.0142 21.9804Z" fill="currentColor"/> </svg></div><div id="w-node-ffbc38d3-56f6-766c-848f-e351cc398591-1103cdba" class="logo-wrap lg-cloud w-embed"><svg width="53" height="21" viewBox="0 0 53 21" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6744_10333)"> <path d="M0 19.5376H10.3049V20.9946H0V19.5376Z" fill="currentColor"/> <path d="M0 16.7432H10.3049V18.2053H0V16.7432Z" fill="currentColor"/> <path d="M2.93994 13.9531H7.36009V15.4154H2.93994V13.9531Z" fill="currentColor"/> <path d="M2.93994 11.1636H7.36009V12.6258H2.93994V11.1636Z" fill="currentColor"/> <path d="M2.93994 8.37402H7.36009V9.83625H2.93994V8.37402Z" fill="currentColor"/> <path d="M2.93994 5.5791H7.36009V7.04133H2.93994V5.5791Z" fill="currentColor"/> <path d="M10.3049 2.78955H0V4.25178H10.3049V2.78955Z" fill="currentColor"/> <path d="M10.3049 0H0V1.46223H10.3049V0Z" fill="currentColor"/> <path d="M11.7749 18.2054H27.6234C27.8911 17.7543 28.0906 17.2617 28.2114 16.7432H11.7749V18.2054Z" fill="currentColor"/> <path d="M26.3896 11.1636H14.7197V12.6258H27.6233C27.2872 12.0658 26.8725 11.5732 26.3896 11.1636Z" fill="currentColor"/> <path d="M14.7197 8.37402V9.83625H26.3896C26.8831 9.42662 27.2977 8.93401 27.6233 8.37402H14.7197Z" fill="currentColor"/> <path d="M27.6235 2.78955H11.7749V4.25178H28.2114C28.0749 3.73326 27.8755 3.2407 27.6235 2.78955Z" fill="currentColor"/> <path d="M22.7518 0H11.7749V1.46223H26.5368C25.5499 0.559984 24.2112 0 22.7518 0Z" fill="currentColor"/> <path d="M19.1346 5.5791H14.7197V7.04133H19.1346V5.5791Z" fill="currentColor"/> <path d="M23.5552 7.04133H28.1748C28.306 6.57469 28.3743 6.08208 28.3743 5.5791H23.5552V7.04133Z" fill="currentColor"/> <path d="M14.7197 13.9531H19.1346V15.4154H14.7197V13.9531Z" fill="currentColor"/> <path d="M23.5552 13.9531V15.4154H28.3743C28.3743 14.9124 28.306 14.4198 28.1748 13.9531H23.5552Z" fill="currentColor"/> <path d="M11.7749 20.9843L22.7518 20.9998C24.2217 20.9998 25.5499 20.4398 26.542 19.5376H11.7749V20.9843Z" fill="currentColor"/> <path d="M29.4448 19.5376H36.8047V20.9946H29.4448V19.5376Z" fill="currentColor"/> <path d="M29.4448 16.7432H36.8047V18.2053H29.4448V16.7432Z" fill="currentColor"/> <path d="M32.3848 13.9531H36.8049V15.4154H32.3848V13.9531Z" fill="currentColor"/> <path d="M32.3848 11.1636H36.8049V12.6258H32.3848V11.1636Z" fill="currentColor"/> <path d="M38.8521 2.78955H29.4448V4.25178H39.3613L38.8521 2.78955Z" fill="currentColor"/> <path d="M37.8756 0H29.4448V1.46223H38.3849L37.8756 0Z" fill="currentColor"/> <path d="M45.6348 19.5376H53V20.9946H45.6348V19.5376Z" fill="currentColor"/> <path d="M45.6348 16.7432H53V18.2053H45.6348V16.7432Z" fill="currentColor"/> <path d="M45.6348 13.9531H50.0549V15.4154H45.6348V13.9531Z" fill="currentColor"/> <path d="M45.6348 11.1636H50.0549V12.6258H45.6348V11.1636Z" fill="currentColor"/> <path d="M45.6348 9.83625H50.0549V8.37402H45.6348H41.6346L41.2199 9.55629L40.8051 8.37402H36.8049H32.3848V9.83625H36.8049V8.49328L37.2722 9.83625H45.1676L45.6348 8.49328V9.83625Z" fill="currentColor"/> <path d="M50.0547 5.5791H42.6108L42.1016 7.04133H50.0547V5.5791Z" fill="currentColor"/> <path d="M44.5688 0L44.0596 1.46223H52.9997V0H44.5688Z" fill="currentColor"/> <path d="M41.2197 20.9843L41.7288 19.5376H40.7104L41.2197 20.9843Z" fill="currentColor"/> <path d="M40.2433 18.2053H42.1962L42.7212 16.7432H39.7236L40.2433 18.2053Z" fill="currentColor"/> <path d="M39.2512 15.4154H43.1884L43.7081 13.9532L38.7314 13.9531L39.2512 15.4154Z" fill="currentColor"/> <path d="M38.2641 12.6258H44.1804L44.6844 11.1636H37.7549L38.2641 12.6258Z" fill="currentColor"/> <path d="M32.3848 7.04133H40.3379L39.8287 5.5791H32.3848V7.04133Z" fill="currentColor"/> <path d="M43.0835 4.25178H53V2.78955H43.5875L43.0835 4.25178Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6744_10333"> <rect width="53" height="21" fill="white"/> </clipPath> </defs> </svg></div><div id="w-node-f0d5e641-5f69-0757-0e20-7ff71103cdc4-1103cdba" class="logo-wrap lg-cloud w-embed"><svg width="108" height="22" viewBox="0 0 108 22" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M24.3953 5.60716H29.9739C34.0062 5.60716 35.037 7.95718 35.037 9.86719C35.037 11.7771 33.9961 14.1271 29.9739 14.1271H26.5277V20.8472H24.3953V5.60716ZM26.5379 12.3271H29.3574C31.0553 12.3271 32.743 11.9472 32.743 9.87714C32.743 7.80717 31.0451 7.42715 29.3574 7.42715H26.5379V12.3271Z" fill="currentColor"/> <path d="M37.8364 5.53803C38.6448 5.53803 39.3018 6.16803 39.3119 6.93804C39.322 7.71806 38.6853 8.35803 37.8768 8.37806C37.0683 8.39803 36.4013 7.78805 36.371 7.00804C36.3609 6.61806 36.5125 6.24804 36.7854 5.96803C37.0481 5.69804 37.4321 5.53803 37.8364 5.53803ZM36.846 10.6481H38.8268V20.858H36.846V10.6481Z" fill="currentColor"/> <path d="M41.1307 10.6473H43.1418V12.2273H43.1924C43.8897 11.0273 45.2439 10.3073 46.6688 10.3973C48.7204 10.3973 50.489 11.5873 50.489 14.2973V20.8674H48.5082V14.8473C48.5082 12.9273 47.3662 12.2174 46.0928 12.2174C44.4253 12.2174 43.152 13.2474 43.152 15.6173V20.8674H41.1307V10.6473Z" fill="currentColor"/> <path d="M54.1572 16.4671C54.1572 18.2471 55.8752 19.4171 57.7247 19.4171C58.8867 19.3871 59.9681 18.8171 60.6253 17.8971L62.1514 19.0171C61.0392 20.4271 59.2809 21.2171 57.452 21.1271C54.0966 21.1271 52.0147 18.8071 52.0147 15.7671C51.9541 14.3471 52.5099 12.9671 53.5407 11.9571C54.5715 10.9471 55.9864 10.3871 57.4619 10.4071C61.1909 10.4071 62.6162 13.1571 62.6162 15.7871V16.4771H54.1572V16.4671ZM60.5037 14.9171C60.4533 13.2171 59.4731 11.9671 57.452 11.9671C55.7237 11.9571 54.2785 13.2471 54.1673 14.9171H60.5037Z" fill="currentColor"/> <path d="M71.7119 13.3677C71.0548 12.6177 70.0949 12.1977 69.0742 12.2277C66.891 12.2277 65.7696 13.9277 65.7696 15.8477C65.7187 16.7577 66.0527 17.6377 66.6994 18.2977C67.3461 18.9577 68.2452 19.3277 69.1854 19.3177C70.176 19.3477 71.1254 18.9277 71.7524 18.1777L73.1772 19.5377C72.1363 20.5977 70.671 21.1678 69.1651 21.1077C67.6796 21.1777 66.2345 20.6477 65.1831 19.6278C64.1323 18.6177 63.5661 17.2177 63.6373 15.7877C63.5661 14.3478 64.1323 12.9477 65.1831 11.9278C66.2345 10.9077 67.6796 10.3577 69.175 10.4077C70.7011 10.3677 72.1768 10.9577 73.238 12.0177L71.7119 13.3677Z" fill="currentColor"/> <path d="M79.1197 10.3884C82.1719 10.4384 84.6174 12.8584 84.5873 15.8084C84.5566 18.7584 82.0608 21.1284 78.9987 21.1084C75.9465 21.0884 73.4703 18.6984 73.4703 15.7484C73.4703 14.3084 74.0667 12.9384 75.1279 11.9284C76.1989 10.9184 77.6341 10.3684 79.1197 10.3884ZM79.1197 19.3084C81.252 19.3084 82.5963 17.8384 82.5963 15.7484C82.5963 13.6684 81.252 12.1984 79.1197 12.1984C76.9874 12.1984 75.6333 13.6684 75.6333 15.7484C75.6333 17.8284 76.977 19.3084 79.1197 19.3084Z" fill="currentColor"/> <path d="M86.3759 10.6474H88.3872V12.2274C89.0848 11.0174 90.4488 10.3074 91.8736 10.3974C93.9254 10.3974 95.6941 11.5874 95.6941 14.2974V20.8674H93.6828V14.8474C93.6828 12.9274 92.5405 12.2174 91.2773 12.2174C89.6001 12.2174 88.3368 13.2474 88.3368 15.6174V20.8674H86.3863V10.6474H86.3759Z" fill="currentColor"/> <path d="M99.423 16.4679C99.423 18.2479 101.141 19.4179 102.99 19.4179C104.152 19.3779 105.234 18.8179 105.891 17.8979L107.417 19.0179C106.305 20.4179 104.557 21.1979 102.728 21.0979C99.3825 21.0979 97.2907 18.7779 97.2907 15.7379C97.23 14.3179 97.7857 12.9279 98.8168 11.9179C99.8474 10.8979 101.272 10.3479 102.748 10.3779C106.477 10.3779 107.902 13.1279 107.902 15.7579V16.4479L99.423 16.4679ZM105.76 14.9079C105.709 13.2079 104.739 11.9579 102.707 11.9579C100.979 11.9479 99.5342 13.2379 99.423 14.9079H105.76Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M12.329 1.10816C12.1168 0.858157 11.7631 0.798156 11.4801 0.958156L11.2173 1.09815L8.35732 2.70815L9.02432 3.86816L10.8838 2.81815L10.4291 5.27815L11.753 5.51816L12.2179 3.04816L13.5923 4.66816L14.6231 3.80815L12.5413 1.34816H12.5311L12.329 1.10816ZM8.31691 21.8581C9.00412 21.8581 9.55997 21.3182 9.55997 20.6582C9.55997 19.9982 9.00412 19.4582 8.31691 19.4582C7.6297 19.4582 7.07385 19.9982 7.07385 20.6582C7.06378 21.3182 7.6297 21.8581 8.31691 21.8581ZM9.98439 15.2682L9.53976 17.7382L8.20575 17.4981L8.65038 15.0381L6.79092 16.0981L6.11378 14.9382L8.95358 13.3282L9.21636 13.1782C9.49929 13.0181 9.85303 13.0782 10.0653 13.3282L10.2674 13.5681L12.3796 16.0182L11.3487 16.8882L9.98439 15.2682ZM11.0658 9.36816L10.6211 11.8382L9.28711 11.5982L9.73174 9.14816L7.88235 10.1981L7.21535 9.03816L10.0451 7.43818V7.41815H10.0653L10.328 7.26815C10.611 7.10818 10.9647 7.16816 11.1769 7.41815L11.379 7.64817L13.4811 10.1082L12.4503 10.9782L11.0658 9.36816ZM2.34423 19.1282H2.33413L2.06127 19.0482C1.76819 18.9682 1.57617 18.6882 1.59639 18.3882L1.83893 15.0482L3.1224 15.1382L2.97081 17.1681L4.9617 15.8282L5.67922 16.8782L3.72876 18.1881L5.71964 18.7582L5.36596 19.9782L2.34423 19.1282ZM15.5528 20.5082L15.4619 20.7981C15.3709 21.0782 15.1082 21.2681 14.805 21.2482L14.522 21.2281L14.5018 21.2381L14.4917 21.2281L11.3588 21.0181L11.4397 19.7482L13.5215 19.8882L12.1572 17.9982L13.1981 17.2582L14.5928 19.1982L15.1991 17.2381L16.4219 17.6081L15.5528 20.5082ZM19.2315 13.6282L19.383 13.8981C19.5346 14.1682 19.474 14.5082 19.2315 14.7081L19.0091 14.8982V14.9082H18.999L16.5634 16.9481L15.7145 15.9581L17.3113 14.6182L14.9162 14.1981L15.1486 12.9182L17.5639 13.3382L16.5534 11.5382L17.6953 10.9082L19.2315 13.6282ZM16.7555 8.04816L14.5928 9.19818L13.9662 8.05818L16.0985 6.92813L14.1481 6.13816L14.6433 4.93816L17.6145 6.12816L17.6246 6.11815L17.6347 6.13816L17.9075 6.24816C18.2006 6.36817 18.3623 6.66818 18.3118 6.96814L18.2613 7.26815L17.7054 10.3182L16.4119 10.0881L16.7555 8.04816ZM2.24317 10.7282L4.64841 11.1282L4.42608 12.4082L2.00063 11.9981L3.03144 13.7982L1.88946 14.4382L0.333131 11.7282L0.18154 11.4682C0.0299494 11.1982 0.0905872 10.8581 0.323023 10.6582L0.545356 10.4682V10.4581H0.555465L2.9607 8.40815L3.81971 9.39815L2.24317 10.7282ZM5.87126 5.18816L7.468 6.94816L6.48772 7.81815L4.85053 6.01816L4.47661 8.06814L3.18303 7.83818L3.74897 4.79815L3.80961 4.48816C3.86014 4.18816 4.1229 3.96816 4.42608 3.95815L4.70905 3.94816L4.71916 3.93816L4.72926 3.94816L7.94297 3.81816L7.99351 5.11816L5.87126 5.18816Z" fill="currentColor"/> </svg></div><div id="w-node-f0d5e641-5f69-0757-0e20-7ff71103cdc5-1103cdba" class="logo-wrap lg-cloud w-embed"><svg width="112" height="26" viewBox="0 0 112 26" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6741_53)"> <path d="M10.701 8.40793H1.60592C0.710313 8.40793 0 7.69462 0 6.82955V1.57838C0 0.698131 0.725755 0 1.60592 0H9.09508C9.99069 0 10.701 0.713307 10.701 1.57838V8.40793Z" fill="currentColor"/> <path d="M20.4557 17.5668H10.7109V8.39453H20.4557C21.3987 8.39453 22.1763 9.17128 22.1763 10.1133V15.8481C22.1763 16.8066 21.3987 17.5668 20.4557 17.5668Z" fill="currentColor"/> <path d="M9.09508 25.9998H1.60592C0.725755 25.9998 0 25.2878 0 24.4242V19.1674C0 18.3039 0.725755 17.5918 1.60592 17.5918H10.701V24.4242C10.701 25.2878 9.97525 25.9998 9.09508 25.9998Z" fill="currentColor"/> <path d="M40.3351 7.73305L39.5949 8.42438H38.8548L38.6245 7.54869C38.5751 7.33361 38.3613 7.19534 38.1146 7.19534H33.3775C33.0814 7.19534 32.8512 7.41042 32.8512 7.65623V9.17717C32.8512 9.43834 33.0814 9.63806 33.3775 9.63806H36.1737V16.7665H32.917C32.6209 16.7665 32.3906 16.9816 32.3906 17.2274V18.7484C32.3906 19.0095 32.6209 19.2092 32.917 19.2092H43.1642C43.4603 19.2092 43.6905 18.9942 43.6905 18.7484V17.2274C43.6905 16.9662 43.4603 16.7665 43.1642 16.7665H39.3976V11.7275C39.3976 10.3141 40.2858 9.57661 42.0293 9.57661H44.8584C45.1544 9.57661 45.3847 9.36153 45.3847 9.11572V7.44115C45.3847 7.17998 45.1544 6.98026 44.8584 6.98026H43.1806C41.947 6.9649 40.9766 7.17998 40.3351 7.73305Z" fill="currentColor"/> <path d="M52.4942 6.97949C48.3595 6.97949 46.1445 9.12119 46.1445 13.4686C46.1445 17.8319 48.3431 19.9736 52.4122 19.9736C55.5624 19.9736 57.597 18.695 58.1384 16.5053C58.2204 16.2016 57.9579 15.914 57.6298 15.914H55.6609C55.4476 15.914 55.2507 16.0418 55.1687 16.2336C54.8241 17.1766 53.8396 17.6241 52.5106 17.6241C50.4433 17.6241 49.4588 16.5213 49.3276 13.9481H58.3025C58.7947 9.13718 56.7438 6.97949 52.4942 6.97949ZM49.426 11.9981C49.7378 10.1122 50.7058 9.23307 52.4778 9.23307C54.3647 9.23307 55.2507 10.2081 55.2999 11.9981H49.426Z" fill="currentColor"/> <path d="M67.9398 6.97949C66.8718 6.97949 66.1022 7.209 65.5054 7.75984L64.7672 8.44839H64.0918L63.8405 7.56093C63.7777 7.36201 63.5892 7.209 63.3536 7.209H61.9401C61.6574 7.209 61.4375 7.42322 61.4375 7.66803V23.3364C61.4375 23.5965 61.6574 23.7954 61.9401 23.7954H64.0133C64.296 23.7954 64.5159 23.5812 64.5159 23.3364V19.9395L64.2489 18.1187L64.9399 17.9657L65.6781 18.6542C66.2592 19.1745 66.966 19.4346 68.0183 19.4346C71.0653 19.4346 72.9029 17.3842 72.9029 13.2071C72.8872 9.02983 71.0653 6.97949 67.9398 6.97949ZM66.9189 16.9252C65.364 16.9252 64.5002 16.1449 64.5002 14.6607V11.7229C64.5002 10.2387 65.3483 9.45826 66.9189 9.45826C68.8193 9.45826 69.6831 10.6212 69.6831 13.1765C69.6674 15.7623 68.8193 16.9252 66.9189 16.9252Z" fill="currentColor"/> <path d="M111.119 8.77667V7.19391C111.119 6.92212 110.895 6.71428 110.607 6.71428H105.054V3.64467C105.054 3.37288 104.83 3.16504 104.542 3.16504H102.43C102.142 3.16504 101.918 3.38887 101.918 3.64467V6.71428H98.6371C98.349 6.71428 98.125 6.9381 98.125 7.19391V8.77667C98.125 9.04846 98.349 9.2563 98.6371 9.2563H101.918V13.9567C101.918 17.5539 103.614 19.2166 107.262 19.2166H110.239C110.527 19.2166 110.751 18.9927 110.751 18.7369V17.1542C110.751 16.8824 110.527 16.6745 110.239 16.6745H107.743C105.758 16.6745 105.054 15.8912 105.054 13.9407V9.27229H110.607C110.895 9.2563 111.119 9.03247 111.119 8.77667Z" fill="currentColor"/> <path d="M85.3996 16.7507H82.1912V2.86675C82.1912 2.60303 81.971 2.40137 81.6879 2.40137H75.3969C75.1138 2.40137 74.8936 2.61854 74.8936 2.86675V4.40251C74.8936 4.66623 75.1138 4.8679 75.3969 4.8679H79.1086V16.7507H74.9408C74.6577 16.7507 74.4375 16.9678 74.4375 17.2161V18.7518C74.4375 19.0155 74.6577 19.2172 74.9408 19.2172H85.3996C85.6827 19.2172 85.9029 19 85.9029 18.7518V17.2161C85.9029 16.9523 85.6827 16.7507 85.3996 16.7507Z" fill="currentColor"/> <path d="M94.4697 2.20508H91.6232C91.3386 2.20508 91.1172 2.42647 91.1172 2.67948V4.6878C91.1172 4.95663 91.3386 5.16221 91.6232 5.16221H94.4697C94.7543 5.16221 94.9757 4.94082 94.9757 4.6878V2.67948C94.9599 2.41065 94.7385 2.20508 94.4697 2.20508Z" fill="currentColor"/> <path d="M94.8537 16.8313V7.45389C94.8537 7.18506 94.6323 6.97949 94.3476 6.97949H87.9748C87.6901 6.97949 87.4688 7.20088 87.4688 7.45389V9.01943C87.4688 9.28826 87.6901 9.49383 87.9748 9.49383H91.7542V16.8313H87.9748C87.6901 16.8313 87.4688 17.0527 87.4688 17.3058V18.8713C87.4688 19.1401 87.6901 19.3457 87.9748 19.3457H98.728C99.0126 19.3457 99.234 19.1243 99.234 18.8713V17.3058C99.234 17.0369 99.0126 16.8313 98.728 16.8313H94.8537Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6741_53"> <rect width="112" height="26" fill="white"/> </clipPath> </defs> </svg></div><div class="logo-wrap lg-cloud w-embed"><svg width="140" height="31" viewBox="0 0 140 31" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M30.0802 17.0661H33.6726L34.722 17.7356H29.9217L27.7673 24.2871C25.3872 23.3789 23.1845 21.2752 22.2605 18.9108C21.2755 16.6193 21.2755 13.7405 22.2821 11.4394C23.2257 9.07411 25.4921 6.93791 27.9043 6.06038C29.8026 5.28686 32.3428 5.20495 34.3558 5.81377C36.666 6.46468 38.8472 8.09362 40.1152 10.2202C41.5336 12.5521 41.9321 15.5155 41.0698 18.1769C40.5253 19.9432 39.4033 21.6346 37.8587 22.8441L35.2073 18.4975L38.8982 20.5228C38.9189 20.5228 38.9296 20.4999 38.9189 20.4789L34.0844 16.3727L40.3372 17.3109C40.3588 17.3109 40.3676 17.3013 40.3676 17.2906L40.3265 17.2597L34.431 15.2257L40.5575 13.7704C40.5781 13.7704 40.5781 13.7512 40.5673 13.7405L34.2823 14.143L39.2035 10.4775C39.2142 10.4571 39.1712 10.4475 39.1614 10.4687L33.633 13.226L36.6847 7.92892C36.6847 7.92103 36.6847 7.89893 36.666 7.90945L32.6786 12.5134L33.4442 6.46485C33.4442 6.45345 33.4217 6.44293 33.4012 6.45345L31.5674 12.3266L29.962 6.27717C29.9513 6.26752 29.9297 6.25682 29.9181 6.27717L30.3605 12.5521L26.5737 7.70335C26.5621 7.69195 26.5521 7.70335 26.5414 7.713L29.4059 13.0789L23.9913 10.1683C23.9815 10.1683 23.9599 10.1797 23.9599 10.1893L28.7755 14.0797L22.6285 13.4409C22.6069 13.4523 22.6069 13.4709 22.6285 13.4805L28.5885 15.1958L22.6607 16.9093C22.6492 16.918 22.6492 16.9393 22.6607 16.9489L28.7755 16.2477L23.9706 20.2629C23.9599 20.2629 23.9499 20.2833 23.9706 20.2947L24.0351 20.2743L27.8828 18.2921L28.7864 16.8782H29.8135L29.1014 16.3833L31.4815 12.6242L30.0775 17.0632L30.0802 17.0661ZM47.8097 22.0131H43.0129L46.8543 8.52317H56.6859L55.7494 11.7246H50.7323L50.0885 14.0211H55.1065L54.2602 16.9678H49.2433L47.8097 22.0131ZM58.9095 22.0132H54.1682L56.9799 12.1582H61.7221L58.9095 22.0132ZM61.979 11.2182H57.2377L58.0095 8.52335H62.7508L61.979 11.2182ZM71.2112 22.0129H66.5612L66.8915 20.91C65.954 21.6879 64.9987 22.2472 63.4737 22.2472C61.929 22.2472 60.9558 21.5239 60.9558 19.9875C60.9558 18.2883 61.6363 15.7564 62.6463 13.9848C63.3814 12.6642 64.7049 11.9781 66.2674 11.9781C67.6079 11.9781 68.6009 12.556 68.9867 13.2792L70.3102 8.52388H75.0514L71.2112 22.0129ZM67.6456 15.0868C67.222 15.0868 66.8003 15.2145 66.5612 15.7925C66.212 16.624 65.8994 17.4381 65.8994 18.2512C65.8994 18.6319 66.1752 18.9569 66.6345 18.9569C67.0016 18.9569 67.2406 18.8485 67.443 18.7225L68.3993 15.485C68.2339 15.25 67.9393 15.0868 67.6456 15.0868ZM84.5988 17.7096H78.0569C77.928 18.2328 77.8 18.595 77.8 19.0107C77.8 19.2098 77.8367 19.7164 78.4975 19.7164C79.1593 19.7164 79.4537 19.4626 79.7286 18.505H84.3786C83.7906 21.3073 80.4092 22.2649 78.3327 22.2649C75.5201 22.2649 73.3337 21.8677 73.3337 19.2098C73.3337 17.7449 74.0867 15.3222 75.0797 14.0386C76.2743 12.5014 78.3507 11.9235 80.2625 11.9235C83.2032 11.9235 85.1136 12.5199 85.1136 14.9786C85.1136 15.5758 84.8568 16.8956 84.5988 17.7096ZM79.8576 14.4007C79.2692 14.4007 78.8654 14.7979 78.6076 15.7927H80.5561C80.6116 15.5936 80.685 15.2861 80.685 15.1045C80.685 14.5627 80.3537 14.4007 79.8576 14.4007ZM89.3646 22.0131H84.6228L88.464 8.52317H93.2064L89.3646 22.0131ZM95.6298 22.0132H90.8874L93.6996 12.1582H98.4414L95.6298 22.0132ZM98.6982 11.2182H93.957L94.7286 8.52335H99.4704L98.6982 11.2182ZM107.223 12.1582L107.636 14.3826H104.006L102.941 18.1248C102.848 18.4147 102.775 18.7759 102.775 19.0111C102.775 19.4445 102.959 19.5899 103.601 19.5899H104.612L103.914 22.0134H99.687C98.2902 22.0134 97.7574 21.3439 97.7574 20.3308C97.7574 19.9158 97.8126 19.4631 97.9602 18.9565L100.533 9.97006H105.274L104.649 12.1584L107.223 12.1582ZM42.9158 23.5282L44.0979 23.5273L43.3448 25.9534H42.1664L42.9158 23.5282ZM47.0411 23.5301L48.7702 23.5293L49.2134 25.1466H49.2251L49.7256 23.5284L50.7518 23.5275L49.9934 25.9483L48.3385 25.9536L47.8595 24.2252H47.8514L47.3268 25.9501L46.3006 25.951L47.0411 23.5301ZM52.9926 23.5312L54.2935 23.5303L54.5219 25.0552L55.712 23.5285L56.9162 23.5276L54.9311 25.9494L53.4859 25.9512L52.9926 23.5312ZM59.1821 23.532L61.8711 23.5294L61.7197 24.0211L60.1733 24.0219L60.0239 24.5196L61.4735 24.5187L61.3284 24.9856L59.8788 24.9865L59.7292 25.4667L61.2917 25.4656L61.1341 25.9564L58.4309 25.9582L59.1821 23.532ZM70.7296 24.1226L69.8092 24.1237L69.991 23.535L73.0129 23.5324L72.8312 24.121L71.9108 24.1218L71.3467 25.9471L70.1656 25.948L70.7296 24.1226ZM75.4583 23.5289L77.2491 23.5271L77.335 25.1464H77.3431L78.4114 23.5263L80.2093 23.5245L79.4625 25.9515L78.3675 25.9524L78.9289 24.1252H78.9209L77.5901 25.9533L76.4486 25.9542L76.2866 24.1272H76.2748L75.7143 25.9489L74.7114 25.9498L75.4583 23.5289ZM87.7332 23.5301L89.4606 23.5293L89.9058 25.1466H89.9172L90.4176 23.5275H91.443L90.693 25.9536L89.0166 25.9492L88.5516 24.2252H88.5438L88.0074 25.9501L86.9802 25.951L87.7332 23.5301ZM94.2768 24.1189L93.3552 24.1198L93.537 23.5305L96.5598 23.5287L96.378 24.1172L95.457 24.118L94.8936 25.9496L93.7116 25.9504L94.2768 24.1189ZM114.808 20.0308C114.098 20.0308 113.519 20.5999 113.519 21.2994C113.519 21.998 114.098 22.5679 114.808 22.5679C115.519 22.5679 116.098 21.9978 116.098 21.2994C116.098 20.5999 115.519 20.0308 114.808 20.0308ZM114.808 22.3425C114.527 22.3425 114.257 22.2326 114.059 22.037C113.86 21.8414 113.748 21.5761 113.748 21.2995C113.748 21.0228 113.86 20.7575 114.059 20.5619C114.257 20.3663 114.527 20.2564 114.808 20.2564C115.09 20.2564 115.359 20.3663 115.558 20.5619C115.757 20.7575 115.868 21.0228 115.868 21.2995C115.868 21.5761 115.757 21.8414 115.558 22.037C115.359 22.2326 115.09 22.3425 114.808 22.3425Z" fill="currentColor"/> <path d="M115.325 21.0362C115.325 20.7844 115.175 20.6425 114.857 20.6425H114.355V21.9497H114.587V21.4149H114.766L115.097 21.9497H115.354L115.006 21.3965C115.187 21.3746 115.325 21.2636 115.325 21.0362ZM114.587 21.2115V20.8451H114.766C114.915 20.8424 115.082 20.8512 115.082 21.0266C115.082 21.2029 114.915 21.2117 114.766 21.2117L114.587 21.2115ZM65.4936 24.2648C65.4676 24.2376 65.4658 24.1917 65.4776 24.1547C65.5161 24.0314 65.6719 23.9504 65.9217 23.9504C66.0686 23.9495 66.295 23.9661 66.3595 24.0174C66.3913 24.0381 66.4152 24.0687 66.4274 24.1043C66.4396 24.1398 66.4393 24.1783 66.4268 24.2138H67.4734C67.597 23.7804 67.3194 23.5011 66.1374 23.5029C65.0146 23.5038 64.3779 23.7407 64.2141 24.2694C64.172 24.4069 64.1667 24.5769 64.2831 24.6905C64.5723 24.9741 65.8779 25.0869 65.988 25.2402C65.9998 25.2558 66.0075 25.274 66.0105 25.2932C66.0135 25.3125 66.0115 25.3321 66.0049 25.3504C65.9449 25.5451 65.6646 25.5953 65.4202 25.5953C65.2644 25.5953 65.062 25.5626 65.0039 25.4993C64.9494 25.436 64.9494 25.3381 64.9806 25.2755L63.8847 25.2773C63.7753 25.6535 63.7279 26.0445 65.251 26.0438C66.5287 26.042 67.1144 25.7345 67.2612 25.2562C67.3337 25.0219 67.262 24.8916 67.1788 24.8088C66.8949 24.5211 65.6305 24.4155 65.4936 24.2648ZM82.6153 23.5322L85.3039 23.5296L85.1527 24.0212L83.6065 24.0221L83.4565 24.5199L84.9055 24.519L84.7603 24.9859L83.3119 24.9866L83.1625 25.4678L84.7237 25.466L84.5665 25.9566L81.8641 25.9583L82.6153 23.5322ZM113.624 12.1578L111.05 17.6187L111.124 12.1578H106.328L107.246 22.0129C107.129 22.5899 106.935 22.9149 106.567 23.0753C106.164 23.2515 105.254 23.2198 104.934 23.2021L104.876 23.2056L104.119 25.8836L107.356 25.8863C109.268 25.8863 110.205 24.941 111.566 22.8443L118.475 12.1575L113.624 12.1578ZM99.6259 24.2589C99.5995 24.2317 99.5989 24.1848 99.6097 24.1487C99.6481 24.0254 99.8047 23.9444 100.054 23.9444C100.201 23.9435 100.427 23.9602 100.492 24.0114C100.523 24.0321 100.547 24.0627 100.559 24.0982C100.571 24.1338 100.571 24.1724 100.559 24.2078H101.606C101.729 23.7744 101.452 23.4952 100.27 23.4969C99.1477 23.4978 98.5099 23.7348 98.3473 24.2634C98.3041 24.401 98.2987 24.5709 98.4151 24.6846C98.7043 24.9682 100.01 25.081 100.12 25.2343C100.132 25.2498 100.139 25.2681 100.142 25.2873C100.145 25.3065 100.144 25.3261 100.137 25.3445C100.078 25.5391 99.7969 25.5893 99.5521 25.5893C99.3967 25.5893 99.1939 25.5567 99.1357 25.4934C99.0811 25.43 99.0811 25.3322 99.1123 25.2695L98.0167 25.2713C97.9075 25.6475 97.8601 26.0385 99.3829 26.0378C100.661 26.036 101.246 25.7286 101.394 25.2503C101.465 25.0159 101.394 24.8856 101.311 24.8028C101.028 24.5153 99.7627 24.4095 99.6259 24.2589Z" fill="currentColor"/> </svg></div><div id="w-node-f0d5e641-5f69-0757-0e20-7ff71103cdc8-1103cdba" class="logo-wrap lg-cloud w-embed"><svg width="120" height="auto" viewBox="0 0 153 36" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M30.2287 2.56226L15.3848 17.9999L30.2287 33.4376C30.5628 33.0901 30.7694 32.6101 30.7694 32.0799V3.9199C30.7694 3.38971 30.5628 2.90971 30.2287 2.56226Z" fill="#555555"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M30.2283 2.56235L15.3844 18L0.540527 2.56235C0.874618 2.2149 1.33616 2 1.84596 2H28.9229C29.4327 2 29.8942 2.2149 30.2283 2.56235Z" fill="#555555"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M0.540726 2.56226L15.3846 17.9999L0.540726 33.4376C0.206638 33.0901 0 32.6101 0 32.0799V3.9199C0 3.38971 0.206638 2.90971 0.540726 2.56226Z" fill="#555555"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M30.2283 33.4377L15.3844 18L0.540527 33.4377C0.874618 33.7851 1.33616 34 1.84596 34H28.9229C29.4327 34 29.8942 33.7851 30.2283 33.4377Z" fill="#555555"/> <path d="M26.7693 6H4.00004C3.91507 6 3.84619 6.07163 3.84619 6.16V29.84C3.84619 29.9284 3.91507 30 4.00004 30H26.7693C26.8542 30 26.9231 29.9284 26.9231 29.84V6.16C26.9231 6.07163 26.8542 6 26.7693 6Z" fill="#555555"/> <path d="M9.29238 25.2095C7.78777 25.2095 7.03546 24.4271 7.03546 22.8623V19.5071C7.03546 18.9215 6.75854 18.6287 6.20469 18.6287C6.00161 18.6287 5.83084 18.5615 5.69238 18.4271C5.56315 18.2927 5.49854 18.1199 5.49854 17.9087C5.49854 17.6879 5.56315 17.5103 5.69238 17.3759C5.83084 17.2415 6.00161 17.1743 6.20469 17.1743C6.75854 17.1743 7.03546 16.8815 7.03546 16.2959V12.9407C7.03546 11.3759 7.78777 10.5935 9.29238 10.5935C9.49546 10.5935 9.66161 10.6655 9.79084 10.8095C9.92007 10.9535 9.98469 11.1311 9.98469 11.3423C9.98469 11.5535 9.92007 11.7263 9.79084 11.8607C9.66161 11.9951 9.49546 12.0623 9.29238 12.0623C8.7293 12.0623 8.44777 12.3551 8.44777 12.9407V16.2959C8.44777 16.6319 8.41084 16.9343 8.337 17.2031C8.26315 17.4719 8.15238 17.7071 8.00469 17.9087C8.30007 18.3023 8.44777 18.8351 8.44777 19.5071V22.8623C8.44777 23.4479 8.7293 23.7407 9.29238 23.7407C9.49546 23.7407 9.66161 23.8079 9.79084 23.9423C9.92007 24.0767 9.98469 24.2543 9.98469 24.4751C9.98469 24.6863 9.92007 24.8591 9.79084 24.9935C9.66161 25.1375 9.49546 25.2095 9.29238 25.2095ZM12.0565 22.0703C11.798 22.0703 11.5718 21.9743 11.378 21.7823C11.1934 21.5807 11.1011 21.3455 11.1011 21.0767C11.1011 20.7983 11.1934 20.5631 11.378 20.3711C11.5718 20.1695 11.798 20.0687 12.0565 20.0687C12.3242 20.0687 12.5503 20.1695 12.7349 20.3711C12.9195 20.5631 13.0118 20.7983 13.0118 21.0767C13.0118 21.3455 12.9195 21.5807 12.7349 21.7823C12.5503 21.9743 12.3242 22.0703 12.0565 22.0703ZM15.3557 22.0703C15.0972 22.0703 14.8711 21.9743 14.6772 21.7823C14.4926 21.5807 14.4003 21.3455 14.4003 21.0767C14.4003 20.7983 14.4926 20.5631 14.6772 20.3711C14.8711 20.1695 15.0972 20.0687 15.3557 20.0687C15.6234 20.0687 15.8495 20.1695 16.0341 20.3711C16.2188 20.5631 16.3111 20.7983 16.3111 21.0767C16.3111 21.3455 16.2188 21.5807 16.0341 21.7823C15.8495 21.9743 15.6234 22.0703 15.3557 22.0703ZM18.655 22.0703C18.3965 22.0703 18.1704 21.9743 17.9765 21.7823C17.7919 21.5807 17.6996 21.3455 17.6996 21.0767C17.6996 20.7983 17.7919 20.5631 17.9765 20.3711C18.1704 20.1695 18.3965 20.0687 18.655 20.0687C18.9227 20.0687 19.1488 20.1695 19.3335 20.3711C19.5181 20.5631 19.6104 20.7983 19.6104 21.0767C19.6104 21.3455 19.5181 21.5807 19.3335 21.7823C19.1488 21.9743 18.9227 22.0703 18.655 22.0703ZM21.4281 25.2095C21.225 25.2095 21.0588 25.1375 20.9296 24.9935C20.8004 24.8591 20.7358 24.6863 20.7358 24.4751C20.7358 24.2543 20.8004 24.0767 20.9296 23.9423C21.0588 23.8079 21.225 23.7407 21.4281 23.7407C21.9911 23.7407 22.2727 23.4479 22.2727 22.8623V19.5071C22.2727 18.8351 22.4204 18.3023 22.7158 17.9087C22.5681 17.7071 22.4573 17.4719 22.3835 17.2031C22.3096 16.9343 22.2727 16.6319 22.2727 16.2959V12.9407C22.2727 12.3551 21.9911 12.0623 21.4281 12.0623C21.225 12.0623 21.0588 11.9951 20.9296 11.8607C20.8004 11.7263 20.7358 11.5535 20.7358 11.3423C20.7358 11.1311 20.8004 10.9535 20.9296 10.8095C21.0588 10.6655 21.225 10.5935 21.4281 10.5935C22.9327 10.5935 23.685 11.3759 23.685 12.9407V16.2959C23.685 16.8815 23.9619 17.1743 24.5158 17.1743C24.7188 17.1743 24.885 17.2415 25.0142 17.3759C25.1527 17.5103 25.2219 17.6879 25.2219 17.9087C25.2219 18.1199 25.1527 18.2927 25.0142 18.4271C24.885 18.5615 24.7188 18.6287 24.5158 18.6287C23.9619 18.6287 23.685 18.9215 23.685 19.5071V22.8623C23.685 24.4271 22.9327 25.2095 21.4281 25.2095Z" fill="white"/> <path d="M45.5537 29.088C44.206 29.088 42.9968 28.7424 41.926 28.0512C40.8737 27.36 40.0337 26.4192 39.406 25.2288C38.7968 24.0384 38.4922 22.704 38.4922 21.2256C38.4922 19.7472 38.7968 18.4128 39.406 17.2224C40.0337 16.032 40.8737 15.0912 41.926 14.4C42.9968 13.7088 44.206 13.3632 45.5537 13.3632C46.846 13.3632 48.0183 13.6416 49.0706 14.1984C50.1414 14.736 50.9537 15.4752 51.5076 16.416L49.9291 18.432C49.6337 17.9904 49.2553 17.5872 48.7937 17.2224C48.3322 16.8576 47.843 16.5696 47.326 16.3584C46.8091 16.1472 46.3106 16.0416 45.8306 16.0416C44.9445 16.0416 44.1507 16.272 43.4491 16.7328C42.766 17.1744 42.2214 17.7888 41.8153 18.576C41.4091 19.3632 41.206 20.2464 41.206 21.2256C41.206 22.2048 41.4183 23.088 41.843 23.8752C42.2676 24.6432 42.8306 25.2576 43.5322 25.7184C44.2337 26.1792 45.0091 26.4096 45.8583 26.4096C46.3568 26.4096 46.8368 26.3232 47.2983 26.1504C47.7783 25.9776 48.2399 25.7184 48.683 25.3728C49.126 25.0272 49.5414 24.6048 49.9291 24.1056L51.5076 26.1216C50.9168 26.9856 50.0676 27.696 48.9599 28.2528C47.8706 28.8096 46.7353 29.088 45.5537 29.088ZM60.7334 29.088C59.3119 29.088 58.038 28.752 56.9119 28.08C55.8042 27.3888 54.9273 26.4576 54.2811 25.2864C53.635 24.096 53.3119 22.7424 53.3119 21.2256C53.3119 19.7088 53.635 18.3648 54.2811 17.1936C54.9273 16.0032 55.8042 15.072 56.9119 14.4C58.038 13.7088 59.3119 13.3632 60.7334 13.3632C62.1365 13.3632 63.3919 13.7088 64.4996 14.4C65.6257 15.072 66.5119 16.0032 67.158 17.1936C67.8042 18.3648 68.1273 19.7088 68.1273 21.2256C68.1273 22.7424 67.8042 24.096 67.158 25.2864C66.5119 26.4576 65.6257 27.3888 64.4996 28.08C63.3919 28.752 62.1365 29.088 60.7334 29.088ZM60.7334 26.3808C61.6011 26.3808 62.3765 26.16 63.0596 25.7184C63.7427 25.2576 64.278 24.6432 64.6657 23.8752C65.0534 23.088 65.238 22.2048 65.2196 21.2256C65.238 20.2272 65.0534 19.344 64.6657 18.576C64.278 17.7888 63.7427 17.1744 63.0596 16.7328C62.3765 16.2912 61.6011 16.0704 60.7334 16.0704C59.8657 16.0704 59.0811 16.3008 58.3796 16.7616C57.6965 17.2032 57.1611 17.8176 56.7734 18.6048C56.3857 19.3728 56.2011 20.2464 56.2196 21.2256C56.2011 22.2048 56.3857 23.088 56.7734 23.8752C57.1611 24.6432 57.6965 25.2576 58.3796 25.7184C59.0811 26.16 59.8657 26.3808 60.7334 26.3808ZM77.2999 29.088C75.9707 29.088 74.78 28.752 73.7277 28.08C72.6938 27.3888 71.8723 26.4576 71.263 25.2864C70.6538 24.096 70.3492 22.7424 70.3492 21.2256C70.3492 19.7088 70.6446 18.3648 71.2353 17.1936C71.8446 16.0032 72.6661 15.072 73.7 14.4C74.7338 13.7088 75.9061 13.3632 77.2168 13.3632C77.9368 13.3632 78.6291 13.488 79.2937 13.7376C79.9768 13.968 80.586 14.2944 81.1214 14.7168C81.6568 15.12 82.0722 15.5712 82.3676 16.0704C82.6814 16.5504 82.8383 17.04 82.8383 17.5392L82.0076 17.5968V7.48801H84.8599V28.8H82.0076V25.2H82.5614C82.5614 25.6608 82.4137 26.1216 82.1183 26.5824C81.823 27.024 81.426 27.4368 80.9276 27.8208C80.4476 28.2048 79.8845 28.512 79.2383 28.7424C78.6106 28.9728 77.9645 29.088 77.2999 29.088ZM77.6876 26.5248C78.5553 26.5248 79.3214 26.2944 79.986 25.8336C80.6506 25.3728 81.1676 24.7488 81.5368 23.9616C81.9245 23.1552 82.1183 22.2432 82.1183 21.2256C82.1183 20.208 81.9245 19.3056 81.5368 18.5184C81.1676 17.712 80.6506 17.0784 79.986 16.6176C79.3214 16.1568 78.5553 15.9264 77.6876 15.9264C76.82 15.9264 76.0538 16.1568 75.3892 16.6176C74.7246 17.0784 74.1984 17.712 73.8107 18.5184C73.4415 19.3056 73.2569 20.208 73.2569 21.2256C73.2569 22.2432 73.4415 23.1552 73.8107 23.9616C74.1984 24.7488 74.7246 25.3728 75.3892 25.8336C76.0538 26.2944 76.82 26.5248 77.6876 26.5248ZM95.5707 29.088C94.0753 29.088 92.746 28.7616 91.583 28.1088C90.4383 27.4368 89.5337 26.5248 88.8691 25.3728C88.223 24.2208 87.8999 22.896 87.8999 21.3984C87.8999 20.208 88.0845 19.1232 88.4537 18.144C88.823 17.1648 89.3306 16.32 89.9768 15.6096C90.6414 14.88 91.426 14.3232 92.3307 13.9392C93.2537 13.536 94.2507 13.3344 95.3214 13.3344C96.263 13.3344 97.1399 13.5264 97.9522 13.9104C98.7645 14.2752 99.466 14.784 100.057 15.4368C100.666 16.0896 101.128 16.8672 101.441 17.7696C101.774 18.6528 101.931 19.6224 101.912 20.6784L101.884 21.9456H90.0045L89.3676 19.584H99.4199L99.0045 20.0736V19.3824C98.9491 18.7488 98.746 18.1824 98.3953 17.6832C98.0445 17.184 97.6014 16.7904 97.066 16.5024C96.5306 16.2144 95.9491 16.0704 95.3214 16.0704C94.3245 16.0704 93.4845 16.272 92.8014 16.6752C92.1183 17.0592 91.6014 17.6352 91.2506 18.4032C90.8999 19.152 90.7245 20.0832 90.7245 21.1968C90.7245 22.2528 90.9368 23.1744 91.3614 23.9616C91.786 24.7296 92.386 25.3248 93.1614 25.7472C93.9368 26.1696 94.8322 26.3808 95.8476 26.3808C96.5676 26.3808 97.2322 26.256 97.8414 26.0064C98.4691 25.7568 99.143 25.3056 99.863 24.6528L101.303 26.7552C100.86 27.216 100.315 27.6192 99.6691 27.9648C99.0414 28.3104 98.3676 28.5888 97.6476 28.8C96.946 28.992 96.2537 29.088 95.5707 29.088ZM105.483 28.8V13.68H108.335V28.8H105.483ZM106.868 10.3392C106.258 10.3392 105.788 10.176 105.455 9.84961C105.123 9.52321 104.957 9.06241 104.957 8.46721C104.957 7.91041 105.123 7.45921 105.455 7.11361C105.806 6.76801 106.277 6.59521 106.868 6.59521C107.477 6.59521 107.948 6.75841 108.28 7.08481C108.612 7.41121 108.778 7.87201 108.778 8.46721C108.778 9.02401 108.603 9.47521 108.252 9.82081C107.92 10.1664 107.458 10.3392 106.868 10.3392ZM117.815 29.088C116.781 29.088 115.877 28.8384 115.101 28.3392C114.344 27.84 113.754 27.1392 113.329 26.2368C112.923 25.3344 112.72 24.2592 112.72 23.0112V13.68H115.572V22.2048C115.572 23.088 115.701 23.856 115.96 24.5088C116.237 25.1424 116.624 25.632 117.123 25.9776C117.64 26.3232 118.258 26.496 118.978 26.496C119.514 26.496 120.003 26.4096 120.446 26.2368C120.889 26.0448 121.268 25.7856 121.581 25.4592C121.914 25.1328 122.172 24.7392 122.357 24.2784C122.541 23.8176 122.634 23.3184 122.634 22.7808V13.68H125.486V28.8H122.634V25.632L123.132 25.2864C122.911 25.9968 122.532 26.64 121.997 27.216C121.48 27.792 120.861 28.2528 120.141 28.5984C119.421 28.9248 118.646 29.088 117.815 29.088ZM129.431 28.8V13.68H132.311V16.9056L131.785 17.2512C131.933 16.752 132.164 16.272 132.478 15.8112C132.81 15.3504 133.207 14.9472 133.668 14.6016C134.148 14.2368 134.656 13.9488 135.191 13.7376C135.745 13.5264 136.308 13.4208 136.881 13.4208C137.711 13.4208 138.441 13.5648 139.068 13.8528C139.696 14.1408 140.213 14.5728 140.619 15.1488C141.025 15.7248 141.321 16.4448 141.505 17.3088L141.062 17.1936L141.256 16.704C141.459 16.2624 141.736 15.8496 142.087 15.4656C142.456 15.0624 142.871 14.7072 143.333 14.4C143.794 14.0928 144.284 13.8528 144.801 13.68C145.318 13.5072 145.825 13.4208 146.324 13.4208C147.413 13.4208 148.308 13.6512 149.01 14.112C149.73 14.5728 150.265 15.2736 150.616 16.2144C150.985 17.1552 151.17 18.3264 151.17 19.728V28.8H148.29V19.9008C148.29 19.0368 148.179 18.336 147.958 17.7984C147.754 17.2416 147.441 16.8288 147.016 16.56C146.591 16.2912 146.047 16.1568 145.382 16.1568C144.865 16.1568 144.376 16.2528 143.914 16.4448C143.471 16.6176 143.084 16.8672 142.751 17.1936C142.419 17.52 142.161 17.904 141.976 18.3456C141.791 18.768 141.699 19.2384 141.699 19.7568V28.8H138.819V19.8432C138.819 19.056 138.708 18.3936 138.487 17.856C138.265 17.2992 137.942 16.8768 137.518 16.5888C137.093 16.3008 136.576 16.1568 135.967 16.1568C135.45 16.1568 134.97 16.2528 134.527 16.4448C134.084 16.6176 133.696 16.8672 133.364 17.1936C133.031 17.5008 132.773 17.8752 132.588 18.3168C132.404 18.7392 132.311 19.2 132.311 19.6992V28.8H129.431Z" fill="var(--color--text-soft)"/> </svg></div><div id="w-node-f0d5e641-5f69-0757-0e20-7ff71103cdca-1103cdba" class="logo-wrap lg-cloud w-embed"><svg width="56" height="19" viewBox="0 0 56 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M2.14914 18.3532L0.221436 0.374268H3.74159L4.74735 11.7184L5.75312 0.374268H9.10564L10.0695 11.7184L11.0333 0.374268H14.5954L12.6258 18.3532H8.30943L7.40845 9.68814L6.54934 18.3532H2.14914Z" fill="currentColor"/> <path d="M15.6169 0.374268H21.1487C22.0287 0.374268 22.7062 0.576592 23.1811 0.981238C23.67 1.37194 23.9983 1.93007 24.1659 2.65564C24.3335 3.36727 24.4173 4.28122 24.4173 5.39749C24.4173 6.4161 24.2847 7.21144 24.0192 7.78353C23.7538 8.35562 23.2929 8.75327 22.6363 8.97652C23.1811 9.08817 23.5722 9.36023 23.8097 9.7928C24.0612 10.2254 24.1868 10.8114 24.1868 11.5509L24.145 18.3532H20.6248V11.3207C20.6248 10.8184 20.527 10.4975 20.3315 10.3579C20.1359 10.2184 19.7797 10.1486 19.2628 10.1486V18.3532H15.6169V0.374268ZM20.1429 7.03005C20.6458 7.03005 20.8972 6.48584 20.8972 5.39749C20.8972 4.92307 20.8762 4.56726 20.8343 4.33006C20.7925 4.09285 20.7156 3.93239 20.6039 3.84866C20.4921 3.75099 20.3315 3.70215 20.1219 3.70215H19.2838V7.03005H20.1429Z" fill="currentColor"/> <path d="M25.4352 18.3532V0.374268H28.9135V18.3532H25.4352Z" fill="currentColor"/> <path d="M31.9007 18.3532V3.82773H29.7635V0.374268H37.6419V3.82773H35.5046V18.3532H31.9007Z" fill="currentColor"/> <path d="M38.6578 18.3532V0.374268H45.8658V3.84866H42.3246V7.34397H45.7191V10.7347H42.3246V14.8579H46.0962V18.3532H38.6578Z" fill="currentColor"/> <path d="M46.9783 0.374268H52.5099C53.3898 0.374268 54.0676 0.576592 54.5423 0.981238C55.0314 1.37194 55.3595 1.93007 55.5272 2.65564C55.6948 3.36727 55.7787 4.28122 55.7787 5.39749C55.7787 6.4161 55.646 7.21144 55.3806 7.78353C55.1152 8.35562 54.6544 8.75327 53.9977 8.97652C54.5423 9.08817 54.9337 9.36023 55.1713 9.7928C55.4223 10.2254 55.5483 10.8114 55.5483 11.5509L55.5061 18.3532H51.9863V11.3207C51.9863 10.8184 51.8886 10.4975 51.6927 10.3579C51.4972 10.2184 51.1408 10.1486 50.6241 10.1486V18.3532H46.9783V0.374268ZM51.5044 7.03005C52.0069 7.03005 52.2584 6.48584 52.2584 5.39749C52.2584 4.92307 52.2378 4.56726 52.1956 4.33006C52.154 4.09285 52.0768 3.93239 51.9652 3.84866C51.8536 3.75099 51.6927 3.70215 51.4834 3.70215H50.6451V7.03005H51.5044Z" fill="currentColor"/> </svg></div><div id="w-node-f0d5e641-5f69-0757-0e20-7ff71103cdcb-1103cdba" class="logo-wrap lg-cloud w-embed"><svg width="124" height="26" viewBox="0 0 124 26" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6741_40)"> <path d="M7.10152 15.8313C7.19455 15.5604 6.99318 15.2783 6.70664 15.2783H1.06827C0.708718 15.2783 0.517331 14.854 0.755281 14.5844L11.8209 2.04909C12.1232 1.7066 12.677 2.02878 12.5288 2.4609L9.88304 10.1714C9.79005 10.4424 9.99143 10.7244 10.2779 10.7244H15.9171C16.2767 10.7244 16.468 11.1487 16.2301 11.4182L5.16316 23.9516C4.86076 24.2941 4.307 23.9718 4.45532 23.5397L7.10152 15.8313Z" fill="currentColor"/> <path d="M35.7135 20.2506C38.8239 20.2506 41.0157 18.5806 41.0157 15.846C41.0157 12.8609 38.5525 12.0885 36.2354 11.3579C34.0227 10.6899 33.4591 10.2098 33.4591 9.31217C33.4591 8.47718 34.1688 7.85093 35.3795 7.85093C36.8616 7.85093 37.6549 8.6233 38.1768 9.72966L40.5982 8.33105C39.6171 6.28532 37.7801 5.05371 35.3795 5.05371C32.8746 5.05371 30.5783 6.6402 30.5783 9.39567C30.5783 12.172 32.7493 13.1114 34.9829 13.7585C37.1539 14.3847 38.135 14.8022 38.135 15.8877C38.135 16.7018 37.5296 17.4325 35.797 17.4325C33.9809 17.4325 32.9581 16.5557 32.4362 15.1989L29.973 16.6392C30.7662 18.8102 32.7284 20.2506 35.7135 20.2506Z" fill="currentColor"/> <path d="M48.4338 12.1086V9.52013H46.0749V6.59766L43.3821 7.41177V9.52013H41.566V12.1086H43.3821V16.4506C43.3821 19.2687 44.6555 20.375 48.4338 19.9575V17.5152C46.8891 17.5987 46.0749 17.5778 46.0749 16.4506V12.1086H48.4338Z" fill="currentColor"/> <path d="M57.9387 9.52076V10.7524C57.1872 9.81301 56.0599 9.22852 54.5361 9.22852C51.7597 9.22852 49.4635 11.6291 49.4635 14.7395C49.4635 17.8498 51.7597 20.2504 54.5361 20.2504C56.0599 20.2504 57.1872 19.6659 57.9387 18.7265V19.9582H60.6315V9.52076H57.9387ZM55.0371 17.6828C53.388 17.6828 52.1564 16.4929 52.1564 14.7395C52.1564 12.986 53.388 11.7961 55.0371 11.7961C56.7071 11.7961 57.9387 12.986 57.9387 14.7395C57.9387 16.4929 56.7071 17.6828 55.0371 17.6828Z" fill="currentColor"/> <path d="M68.0416 20.2504C70.0874 20.2504 71.8617 19.1649 72.7593 17.5367L70.4214 16.2007C70.0039 17.0566 69.1063 17.5784 68.0208 17.5784C66.4134 17.5784 65.2235 16.3886 65.2235 14.7395C65.2235 13.0695 66.4134 11.8796 68.0208 11.8796C69.0854 11.8796 69.983 12.4224 70.4005 13.2782L72.7176 11.9214C71.8617 10.314 70.0874 9.22852 68.0416 9.22852C64.8687 9.22852 62.5307 11.6291 62.5307 14.7395C62.5307 17.8498 64.8687 20.2504 68.0416 20.2504Z" fill="currentColor"/> <path d="M83.8068 19.9581L79.4857 14.6767L83.6816 9.52066H80.4668L76.8764 14.1131V5.3457H74.1835V19.9581H76.8764V15.2195L80.6756 19.9581H83.8068Z" fill="currentColor"/> <path d="M94.1062 12.3805C94.962 11.6916 95.4839 10.7105 95.4839 9.45804C95.4839 7.0157 93.5008 5.3457 91.0376 5.3457H85.2761V19.9581H91.4759C94.0018 19.9581 96.0266 18.2255 96.0266 15.7205C96.0266 14.1966 95.2752 13.0485 94.1062 12.3805ZM91.0376 8.03855C91.9561 8.03855 92.6032 8.72742 92.6032 9.64591C92.6032 10.5644 91.9352 11.2533 91.0376 11.2533H88.1568V8.03855H91.0376ZM91.4759 17.2652H88.1568V13.8209H91.4759C92.4571 13.8209 93.1668 14.5515 93.1668 15.5326C93.1668 16.5346 92.4571 17.2652 91.4759 17.2652Z" fill="currentColor"/> <path d="M97.7899 19.9583H100.483V4.71973H97.7899V19.9583Z" fill="currentColor"/> <path d="M104.283 8.26831C105.202 8.26831 105.953 7.51682 105.953 6.6192C105.953 5.72159 105.202 4.94922 104.283 4.94922C103.386 4.94922 102.634 5.72159 102.634 6.6192C102.634 7.51682 103.386 8.26831 104.283 8.26831ZM102.947 19.9582H105.64V9.5208H102.947V19.9582Z" fill="currentColor"/> <path d="M114.075 12.1086V9.52013H111.716V6.59766L109.024 7.41177V9.52013H107.208V12.1086H109.024V16.4506C109.024 19.2687 110.297 20.375 114.075 19.9575V17.5152C112.531 17.5987 111.716 17.5778 111.716 16.4506V12.1086H114.075Z" fill="currentColor"/> <path d="M119.19 17.4321L123.616 11.3157V9.52051H115.787V12.0464H119.983L115.579 18.1627V19.9579H123.824V17.4321H119.19Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6741_40"> <rect width="123.857" height="25.0498" fill="white" transform="translate(0.142883 0.475586)"/> </clipPath> </defs> </svg></div></div><div class="margin-top margin-medium"><div class="button-group is-center"><a href="/customers" class="button w-button">Our customers</a><link rel="prefetch" href="/customers"/></div></div></div></div></div></section><section class="collab"><div class="padding-global"><div class="container-large"><div class="padding-section-small padding-top"><div class="margin-bottom margin-xlarge"><div class="text-align-center"><div class="max-width-medium align-center"><div class="margin-bottom margin-small"><h1 blocks-non-deletable="true" class="heading-style-h2">Built for modern teams</h1></div><p class="description align-center">Crafted with customizability and collaboration in mind. Designed to impress.</p></div></div></div><div class="swiper-component"><div class="swiper3"><div class="swiper-wrapper ft-grid"><div data-w-id="280ccfda-00e8-3a7b-0c88-75ae5290c0bf" class="swiper-slide feature-card"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5aab30db431b6a5c57768_OOTB%20-%20Light.png" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/home/overview%20features/OOTB%20-%20Light.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/overview%20features/OOTB%20-%20Dark.png" style="-webkit-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0)" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, 29vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/overview%20features/OOTB%20-%20Dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/overview%20features/OOTB%20-%20Light.png" loading="lazy" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5aab30db431b6a5c57768_OOTB%20-%20Light-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5aab30db431b6a5c57768_OOTB%20-%20Light-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5aab30db431b6a5c57768_OOTB%20-%20Light.png 948w"/></div><div class="feature-card-wrap"><h1 blocks-non-deletable="true" class="heading-style-h4">Beautiful out of the box</h1></div></div><div id="w-node-_280ccfda-00e8-3a7b-0c88-75ae5290c0c7-a49a6243" data-w-id="280ccfda-00e8-3a7b-0c88-75ae5290c0c7" class="swiper-slide feature-card"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5a9dbb2a95605b9a2cfb4_Collab%20-%20Light.png" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/home/overview%20features/Collab%20-%20Light.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/overview%20features/Collab%20-%20Dark.png" style="-webkit-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0)" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, 29vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/overview%20features/Collab%20-%20Dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/overview%20features/Collab%20-%20Light.png" loading="lazy" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5a9dbb2a95605b9a2cfb4_Collab%20-%20Light-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5a9dbb2a95605b9a2cfb4_Collab%20-%20Light-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5a9dbb2a95605b9a2cfb4_Collab%20-%20Light.png 970w"/></div><div class="feature-card-wrap"><h1 blocks-non-deletable="true" class="heading-style-h4">Built for collaboration</h1></div></div><div id="w-node-_280ccfda-00e8-3a7b-0c88-75ae5290c0cd-a49a6243" data-w-id="280ccfda-00e8-3a7b-0c88-75ae5290c0cd" class="swiper-slide feature-card"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5aa67849e034afe751325_Conversion%20-%20Light.png" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/home/overview%20features/Conversion%20-%20Light.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/overview%20features/Conversion%20-%20Darks.png" style="-webkit-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0)" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, 29vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/overview%20features/Conversion%20-%20Darks.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/overview%20features/Conversion%20-%20Light.png" loading="lazy" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5aa67849e034afe751325_Conversion%20-%20Light-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5aa67849e034afe751325_Conversion%20-%20Light-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5aa67849e034afe751325_Conversion%20-%20Light.png 948w"/></div><div class="feature-card-wrap"><h1 blocks-non-deletable="true" class="heading-style-h4">Designed for conversion</h1></div></div></div></div></div></div></div></div></section><section class="themes"><div class="padding-global"><div class="container-large"><div class="padding-section-large"><div class="swiper-component themes"><div class="swiper2 theme-swiper"><div class="swiper-wrapper theme-content"><div class="swiper-slide theme-slide"><img class="template-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6e086fe615acfdcaae_prism-new.png" alt="Product UI Mockup" data-light-src="https://mintlify-assets.b-cdn.net/website/home/themes-mockup/prism-new.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/themes-mockup/prism-new-dark.png" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, 92vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/themes-mockup/prism-new-dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/themes-mockup/prism-new.png" loading="lazy" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6e086fe615acfdcaae_prism-new-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6e086fe615acfdcaae_prism-new-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6e086fe615acfdcaae_prism-new-p-1080.png 1080w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6e086fe615acfdcaae_prism-new-p-1600.png 1600w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6e086fe615acfdcaae_prism-new-p-2000.png 2000w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6e086fe615acfdcaae_prism-new-p-2600.png 2600w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6e086fe615acfdcaae_prism-new.png 2964w"/></div><div class="swiper-slide theme-slide"><img class="template-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6fd05d425f49099ff8_quill-new.png" alt="Product UI Mockup" data-light-src="https://mintlify-assets.b-cdn.net/website/home/themes-mockup/quill-new.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/themes-mockup/quill-new-dark.png" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, 92vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/themes-mockup/quill-new-dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/themes-mockup/quill-new.png" loading="lazy" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6fd05d425f49099ff8_quill-new-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6fd05d425f49099ff8_quill-new-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6fd05d425f49099ff8_quill-new-p-1080.png 1080w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6fd05d425f49099ff8_quill-new-p-1600.png 1600w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6fd05d425f49099ff8_quill-new-p-2000.png 2000w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6fd05d425f49099ff8_quill-new-p-2600.png 2600w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6fd05d425f49099ff8_quill-new.png 2964w"/></div><div class="swiper-slide theme-slide"><img class="template-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6e7de77c34a529ef3d_venus-new.png" alt="Product UI Mockup" data-light-src="https://mintlify-assets.b-cdn.net/website/home/themes-mockup/venus-new.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/themes-mockup/venus-new-dark.png" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, 92vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/themes-mockup/venus-new-dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/themes-mockup/venus-new.png" loading="lazy" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6e7de77c34a529ef3d_venus-new-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6e7de77c34a529ef3d_venus-new-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6e7de77c34a529ef3d_venus-new-p-1080.png 1080w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6e7de77c34a529ef3d_venus-new-p-1600.png 1600w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6e7de77c34a529ef3d_venus-new-p-2000.png 2000w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6e7de77c34a529ef3d_venus-new-p-2600.png 2600w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed9a6e7de77c34a529ef3d_venus-new.png 2964w"/></div></div><div class="swiper-content"><div class="theme-overlay"></div><div class="max-width-medium"><div class="margin-bottom margin-small"><h1 blocks-non-deletable="true" class="heading-style-h2 _15ch">Documentation that converts users</h1></div><p class="description _30ch">A platform you can trust to delight your target audience.</p></div><div class="custom-pagination-2"><div class="pagination-item left"><div class="left-div"></div><div>Elegant & versatile</div></div><div class="pagination-item left"><div class="left-div"></div><div>Minimal by design</div></div><div class="pagination-item left"><div class="left-div"></div><div>Highly customizable</div></div></div></div></div></div></div></div></div></section><section class="features"><div class="padding-global"><div class="container-large"><div class="padding-section-large padding-0"><div class="themes-bento bb-0"><div class="bento_card left"><div class="bento_card-content"><div class="bento_card-content-top"><div class="margin-bottom margin-small"><h1 blocks-non-deletable="true" class="heading-style-h4">Help users find answers fast</h1></div><p class="description _30ch">Everything is optimized for user discovery and engagement.</p></div></div><div id="w-node-_479d7cbe-1120-ef40-f9fc-4273c9c1a0d8-a49a6243" class="bento_image-wrapper"><img data-light-src="https://mintlify-assets.b-cdn.net/website/home/feature1/Search-U.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/feature1/Simple-Udark-up-dark.svg" alt="" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f1a07becf9982432bccfb8_Search-U.svg" loading="lazy" class="layoutimage theme-asset"/></div></div><div class="bento_card right"><div class="bento_card-content"><div class="bento_card-content-top"><div class="margin-bottom margin-small"><h1 blocks-non-deletable="true" class="heading-style-h4">Understand your audience</h1></div><p class="description _30ch">Optimize based on which pages or search terms are popular.</p></div></div><div id="w-node-_479d7cbe-1120-ef40-f9fc-4273c9c1a0ed-a49a6243" class="bento_image-wrapper"><img data-light-src="https://mintlify-assets.b-cdn.net/website/home/feature1/Chart.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/feature1/Chart-Dark-up-dark.svg" alt="" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f1a07b985a458e96c06ddd_Chart.svg" loading="lazy" class="layoutimage theme-asset"/></div></div></div></div></div></div></section><header class="hero editor on-home"><div class="background-image editor"><img class="background-image-asset theme-asset hero-image editor-image" src="https://cdn.prod.website-files.com/plugins/Basic/assets/placeholder.60f9b1840c.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/Visual%20Editor/Editor%20Hero%20Light%202.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/Visual%20Editor/Editor%20Hero%20Dark.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/Visual%20Editor/Editor%20Hero%20Dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/Visual%20Editor/Editor%20Hero%20Light%202.png" loading="lazy"/></div><div class="padding-global"><div class="container-large"><div class="padding-section-large adj"><div class="max-width-large mobile-align-center"><div class="margin-bottom margin-small add-1-5"><h1 blocks-non-deletable="true" class="heading-style-h2">Web Editor</h1></div><div class="soft-wrap"><p data-w-id="b2a096b0-565b-78a0-ceb2-405222b63e99" style="opacity:0" class="text-size-medium text-weight-medium">Create, edit, and publish documentation with a drag and drop interface. No git needed to collaborate with developers.</p></div><div class="margin-top margin-medium"><div data-w-id="b2a096b0-565b-78a0-ceb2-405222b63e9c" style="opacity:0" class="button-group v-flex mobile-align-center"><a href="/web-editor" class="button w-button">Learn more</a></div></div></div><img class="hero-mockup theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/672bacdcb61e21d7a75f1cc8_Editor%20Mockup%20Light.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/Visual%20Editor/Editor%20Mockup%20Light%20-%20updated.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/Visual%20Editor/Editor%20Mockup%20Dark%20-%20updated.png" style="opacity:0" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/Visual%20Editor/Editor%20Mockup%20Dark%20-%20updated.png" data-w-id="b2a096b0-565b-78a0-ceb2-405222b63ea1" data-light-srcset="https://mintlify-assets.b-cdn.net/website/Visual%20Editor/Editor%20Mockup%20Light%20-%20updated.png" loading="lazy"/></div></div></div></header><section class="collaboration"><div class="padding-global"><div class="container-large"><div class="padding-section-large padding-top"><div class="swiper-component swiper4-wrapper"><div class="swiper4_left-content"><div class="max-width-medium"><div class="margin-bottom margin-small"><h1 blocks-non-deletable="true" class="heading-style-h2">Built for collaboration</h1></div><p class="description _30ch">Empower your team with workflows that meet you where you are, whether you prefer git sync or WYSIWYG editors. </p></div><div class="custom-pagination-4"><div class="pagination-item left"><div class="left-div"></div><div>Codebase-syncing</div></div><div class="pagination-item left"><div class="left-div"></div><div>Web editor</div></div><div class="pagination-item left"><div class="left-div"></div><div>Preview deployments</div></div></div></div><div class="swiper4"><div class="swiper-wrapper swiper4-wrapper"><div class="swiper-slide swiper4-feature-slide"><img class="swiper4-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ea7d06ad2a41442a6b_Code-Sync.png" alt="Product UI Mockup" data-light-src="https://mintlify-assets.b-cdn.net/website/home/collab/Code-Sync.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/collab/Code-Sync-dark.png" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, (max-width: 991px) 60vw, 45vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/collab/Code-Sync-dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/collab/Code-Sync.png" loading="lazy" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ea7d06ad2a41442a6b_Code-Sync-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ea7d06ad2a41442a6b_Code-Sync-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ea7d06ad2a41442a6b_Code-Sync-p-1080.png 1080w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ea7d06ad2a41442a6b_Code-Sync-p-1600.png 1600w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ea7d06ad2a41442a6b_Code-Sync-p-2000.png 2000w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ea7d06ad2a41442a6b_Code-Sync.png 2006w"/></div><div class="swiper-slide swiper4-feature-slide"><img class="swiper4-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ebf4b95c70d65e8a6c_Web-Editor.png" alt="Product UI Mockup" data-light-src="https://mintlify-assets.b-cdn.net/website/home/collab/Web-Editor.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/collab/Web-Editor-dark.png" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, (max-width: 991px) 60vw, 45vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/collab/Web-Editor-dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/collab/Web-Editor.png" loading="lazy" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ebf4b95c70d65e8a6c_Web-Editor-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ebf4b95c70d65e8a6c_Web-Editor-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ebf4b95c70d65e8a6c_Web-Editor-p-1080.png 1080w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ebf4b95c70d65e8a6c_Web-Editor-p-1600.png 1600w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ebf4b95c70d65e8a6c_Web-Editor-p-2000.png 2000w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ebf4b95c70d65e8a6c_Web-Editor.png 2006w"/></div><div class="swiper-slide swiper4-feature-slide"><img class="swiper4-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7eb7f8140e7550f251c_Preview-Dev.png" alt="Product UI Mockup" data-light-src="https://mintlify-assets.b-cdn.net/website/home/collab/Preview-Dev.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/collab/Preview-Dev-dark.png" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, (max-width: 991px) 60vw, 45vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/collab/Preview-Dev-dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/collab/Preview-Dev.png" loading="lazy" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7eb7f8140e7550f251c_Preview-Dev-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7eb7f8140e7550f251c_Preview-Dev-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7eb7f8140e7550f251c_Preview-Dev-p-1080.png 1080w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7eb7f8140e7550f251c_Preview-Dev-p-1600.png 1600w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7eb7f8140e7550f251c_Preview-Dev-p-2000.png 2000w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7eb7f8140e7550f251c_Preview-Dev.png 2006w"/></div></div></div></div></div></div></div></section><section class="features"><div class="padding-global"><div class="container-large"><div class="padding-section-large padding-bottom tablet-0"><div class="grid-wrap"><div class="_4-col-grid border-top-down gaps bdt"><div class="grid-item gaps left"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5397_25890)"> <path d="M13.2368 1.94434H3.90343C2.55498 1.94434 1.45898 3.04034 1.45898 4.38878V11.9443C1.45898 13.2928 2.55498 14.3888 3.90343 14.3888H13.2368C14.5852 14.3888 15.6812 13.2928 15.6812 11.9443V4.38878C15.6812 3.04034 14.5852 1.94434 13.2368 1.94434ZM6.79232 3.72211C7.28298 3.72211 7.68121 4.12034 7.68121 4.611C7.68121 5.10167 7.28298 5.49989 6.79232 5.49989C6.30165 5.49989 5.90343 5.10167 5.90343 4.611C5.90343 4.12034 6.30165 3.72211 6.79232 3.72211ZM3.23676 4.611C3.23676 4.12034 3.63498 3.72211 4.12565 3.72211C4.61632 3.72211 5.01454 4.12034 5.01454 4.611C5.01454 5.10167 4.61632 5.49989 4.12565 5.49989C3.63498 5.49989 3.23676 5.10167 3.23676 4.611ZM7.48565 10.5843C7.7461 10.8448 7.7461 11.267 7.48565 11.5274C7.35587 11.6572 7.18521 11.723 7.01454 11.723C6.84387 11.723 6.67321 11.6581 6.54343 11.5274L4.54343 9.52745C4.28298 9.267 4.28298 8.84478 4.54343 8.58434L6.54343 6.58434C6.80387 6.32389 7.2261 6.32389 7.48654 6.58434C7.74698 6.84478 7.74698 7.267 7.48654 7.52745L5.95765 9.05634L7.48654 10.5852L7.48565 10.5843ZM12.5968 9.52656L10.5968 11.5266C10.467 11.6563 10.2963 11.7221 10.1257 11.7221C9.95498 11.7221 9.78432 11.6572 9.65454 11.5266C9.3941 11.2661 9.3941 10.8439 9.65454 10.5834L11.1834 9.05456L9.65454 7.52567C9.3941 7.26522 9.3941 6.843 9.65454 6.58256C9.91498 6.32211 10.3372 6.32211 10.5977 6.58256L12.5977 8.58256C12.8581 8.843 12.8581 9.26522 12.5977 9.52567L12.5968 9.52656Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5397_25890"> <rect width="16" height="16" fill="white" transform="translate(0.570312 0.166504)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">API Playground</p></div></div><p class="description _30ch">Test and explore APIs directly in your docs</p></div><div id="w-node-eff5f214-9c9e-24e3-f60a-6b113e62df96-a49a6243" class="grid-item gaps"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5397_25911)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1.37598 6.16645C1.37598 4.77115 2.50707 3.63867 3.90375 3.63867H13.2371C14.6338 3.63867 15.7649 4.77115 15.7649 6.16645V8.14156C15.7649 8.55577 15.4291 8.89156 15.0149 8.89156C14.6007 8.89156 14.2649 8.55577 14.2649 8.14156V6.16645C14.2649 5.59909 13.8049 5.13867 13.2371 5.13867H3.90375C3.33599 5.13867 2.87598 5.59909 2.87598 6.16645V10.1664C2.87598 10.7338 3.33599 11.1942 3.90375 11.1942H7.73487C8.14908 11.1942 8.48487 11.53 8.48487 11.9442C8.48487 12.3584 8.14908 12.6942 7.73487 12.6942H3.90375C2.50707 12.6942 1.37598 11.5618 1.37598 10.1664V6.16645ZM5.3482 8.16645C5.3482 8.10509 5.39794 8.05534 5.45931 8.05534C5.52068 8.05534 5.57042 8.10509 5.57042 8.16645C5.57042 8.22781 5.52068 8.27756 5.45931 8.27756C5.39794 8.27756 5.3482 8.22781 5.3482 8.16645ZM5.45931 9.05534C5.95023 9.05534 6.3482 8.65737 6.3482 8.16645C6.3482 7.67553 5.95023 7.27756 5.45931 7.27756C4.96839 7.27756 4.57042 7.67553 4.57042 8.16645C4.57042 8.65737 4.96839 9.05534 5.45931 9.05534ZM8.45931 8.16645C8.45931 8.10508 8.50906 8.05534 8.57042 8.05534C8.63179 8.05534 8.68153 8.10508 8.68153 8.16645C8.68153 8.22781 8.63179 8.27756 8.57042 8.27756C8.50906 8.27756 8.45931 8.22781 8.45931 8.16645ZM8.57042 9.05534C9.06134 9.05534 9.45931 8.65737 9.45931 8.16645C9.45931 7.67553 9.06134 7.27756 8.57042 7.27756C8.0795 7.27756 7.68153 7.67553 7.68153 8.16645C7.68153 8.65737 8.0795 9.05534 8.57042 9.05534ZM12.793 8.74976C13.2072 8.74976 13.543 9.08554 13.543 9.49976V10.208C13.6326 10.2388 13.7196 10.275 13.8038 10.3161L14.305 9.81494C14.5979 9.52205 15.0728 9.52205 15.3657 9.81494C15.6586 10.1078 15.6586 10.5827 15.3657 10.8756L14.8647 11.3766C14.9061 11.4611 14.9425 11.5486 14.9735 11.6387H15.6815C16.0957 11.6387 16.4315 11.9745 16.4315 12.3887C16.4315 12.8029 16.0957 13.1387 15.6815 13.1387H14.9735C14.9426 13.2285 14.9063 13.3159 14.865 13.4003L15.3657 13.9011C15.6586 14.194 15.6586 14.6688 15.3657 14.9617C15.0728 15.2546 14.5979 15.2546 14.305 14.9617L13.8043 14.461C13.72 14.5023 13.6327 14.5385 13.543 14.5694V15.2776C13.543 15.6918 13.2072 16.0276 12.793 16.0276C12.3788 16.0276 12.043 15.6918 12.043 15.2776V14.5696C11.9532 14.5388 11.866 14.5025 11.7816 14.4613L11.2813 14.9616C10.9884 15.2545 10.5135 15.2545 10.2206 14.9616C9.92775 14.6687 9.92775 14.1938 10.2206 13.901L10.7206 13.401C10.6792 13.3163 10.6428 13.2288 10.6118 13.1387H9.90332C9.48911 13.1387 9.15332 12.8029 9.15332 12.3887C9.15332 11.9745 9.48911 11.6387 9.90332 11.6387H10.6118C10.6427 11.5488 10.679 11.4615 10.7203 11.377L10.2206 10.8773C9.92775 10.5844 9.92775 10.1096 10.2206 9.81667C10.5135 9.52378 10.9884 9.52378 11.2813 9.81667L11.781 10.3163C11.8655 10.275 11.953 10.2387 12.043 10.2077V9.49976C12.043 9.08554 12.3788 8.74976 12.793 8.74976ZM11.9871 12.3887C11.9871 11.9438 12.3477 11.5831 12.7926 11.5831C13.2375 11.5831 13.5982 11.9438 13.5982 12.3887C13.5982 12.8336 13.2375 13.1942 12.7926 13.1942C12.3477 13.1942 11.9871 12.8336 11.9871 12.3887Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5397_25911"> <rect width="16" height="16" fill="white" transform="translate(0.570312 0.166504)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Visitor authentication</p></div></div><p class="description _30ch">Secure your docs with customizable access controls</p></div><div id="w-node-e14d1f9a-1e72-b861-da90-b3773ee631d9-a49a6243" class="grid-item gaps left"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5397_25940)"> <path d="M12.3482 15.2777H4.79264C4.42464 15.2777 4.12598 14.979 4.12598 14.611C4.12598 14.243 4.42464 13.9443 4.79264 13.9443H12.3482C12.7162 13.9443 13.0149 14.243 13.0149 14.611C13.0149 14.979 12.7162 15.2777 12.3482 15.2777Z" fill="currentColor"/> <path d="M12.7922 1.94434H4.34776C2.99932 1.94434 1.90332 3.04034 1.90332 4.38878V10.1666C1.90332 11.515 2.99932 12.611 4.34776 12.611H12.7922C14.1407 12.611 15.2367 11.515 15.2367 10.1666V4.38878C15.2367 3.04034 14.1407 1.94434 12.7922 1.94434ZM11.8509 8.06967C11.3709 8.68745 10.3069 9.72211 8.56999 9.72211C6.8331 9.72211 5.7691 8.68745 5.2891 8.07056C4.92199 7.59678 4.92199 6.96034 5.2891 6.48656C5.7691 5.86878 6.8331 4.83411 8.56999 4.83411C10.3069 4.83411 11.3709 5.86878 11.8509 6.48567C12.2189 6.96034 12.2189 7.59678 11.8509 8.07056V8.06967Z" fill="currentColor"/> <path d="M8.56966 8.611C9.30604 8.611 9.90299 8.01405 9.90299 7.27767C9.90299 6.54129 9.30604 5.94434 8.56966 5.94434C7.83328 5.94434 7.23633 6.54129 7.23633 7.27767C7.23633 8.01405 7.83328 8.611 8.56966 8.611Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5397_25940"> <rect width="16" height="16" fill="white" transform="translate(0.570312 0.166504)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">User feedback</p></div></div><p class="description _30ch">Keep docs and code in perfect harmony</p></div><div id="w-node-_844da3c7-ffa3-6a80-5f7b-681e861e7f57-a49a6243" class="grid-item gaps"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5397_25963)"> <path d="M6.12543 1.94434H3.90321C3.04543 1.94434 2.34766 2.64211 2.34766 3.49989V11.7221C2.34766 13.1923 3.5441 14.3888 5.01432 14.3888C6.48455 14.3888 7.68099 13.1923 7.68099 11.7221V3.49989C7.68099 2.64211 6.98321 1.94434 6.12543 1.94434ZM5.01432 12.3888C4.64632 12.3888 4.34766 12.0901 4.34766 11.7221C4.34766 11.3541 4.64632 11.0554 5.01432 11.0554C5.38232 11.0554 5.68099 11.3541 5.68099 11.7221C5.68099 12.0901 5.38232 12.3888 5.01432 12.3888Z" fill="currentColor"/> <path d="M12.7131 5.59421L11.1416 4.02265C10.5771 3.45732 9.61003 3.44132 9.0127 3.96487V11.4929L12.7123 7.79332C13.0065 7.4991 13.1683 7.10887 13.1683 6.69376C13.1683 6.27865 13.0074 5.88754 12.7131 5.59421Z" fill="currentColor"/> <path d="M13.3284 9.06445L8.00391 14.3889H13.2368C14.0946 14.3889 14.7924 13.6911 14.7924 12.8333V10.6111C14.7924 9.78534 14.1426 9.11334 13.3284 9.06445Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5397_25963"> <rect width="16" height="16" fill="white" transform="translate(0.570312 0.166504)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Fully customizable</p></div></div><p class="description _30ch">Tailor your docs with custom components and JS + CSS</p></div></div></div></div></div></div></section><div class="gradient-wrap"><section class="ai"><div class="padding-global"><div class="container-large"><div class="padding-section-large padding-top"><div class="w-layout-grid header_content"><h1 blocks-non-deletable="true" class="heading-style-h2">Elevate content with intelligent features</h1><div class="header_content-right"><p class="description">Create documentation that is smarter, more accessible, and continuously improving.</p></div></div></div></div></div></section><section class="ai"><div class="padding-global"><div class="container-large extra-large"><div class="padding-section-large padding-0"><img class="is-image-full-width theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ebd4ad4f1def9529f5_AI-Iso.png" alt="Product UI Mockup" data-light-src="https://mintlify-assets.b-cdn.net/website/home/ai/AI-Iso.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/ai/AI-Iso-dark.png" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, 92vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/ai/AI-Iso-dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/ai/AI-Iso.png" loading="lazy" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ebd4ad4f1def9529f5_AI-Iso-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ebd4ad4f1def9529f5_AI-Iso-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ebd4ad4f1def9529f5_AI-Iso-p-1080.png 1080w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ebd4ad4f1def9529f5_AI-Iso-p-1600.png 1600w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ebd4ad4f1def9529f5_AI-Iso-p-2000.png 2000w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ebd4ad4f1def9529f5_AI-Iso-p-2600.png 2600w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ebd4ad4f1def9529f5_AI-Iso-p-3200.png 3200w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eea7ebd4ad4f1def9529f5_AI-Iso.png 3864w"/></div></div></div></section><section class="features"><div class="padding-global"><div class="container-large"><div class="padding-section-large padding-0"><div class="grid-wrap"><div class="_4-col-grid border-top-down gaps bdt"><div class="grid-item gaps left"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5397_25900)"> <path d="M6.5701 4.09625H5.01454V2.54069C5.01454 2.17269 4.71587 1.87402 4.34787 1.87402C3.97987 1.87402 3.68121 2.17269 3.68121 2.54069V4.09625H2.12565C1.75765 4.09625 1.45898 4.39491 1.45898 4.76291C1.45898 5.13091 1.75765 5.42958 2.12565 5.42958H3.68121V6.98513C3.68121 7.35313 3.97987 7.6518 4.34787 7.6518C4.71587 7.6518 5.01454 7.35313 5.01454 6.98513V5.42958H6.5701C6.9381 5.42958 7.23676 5.13091 7.23676 4.76291C7.23676 4.39491 6.9381 4.09625 6.5701 4.09625Z" fill="currentColor"/> <path d="M12.3563 11.5256C12.0363 11.5256 11.6852 11.5052 11.2968 11.4643C10.9306 11.4261 10.6657 11.0972 10.7039 10.7309C10.7421 10.3647 11.0675 10.0989 11.4372 10.1381C12.6861 10.2705 13.3555 10.1532 13.8328 9.86161C14.279 9.49005 14.6319 8.9745 14.8248 8.23405C14.9483 7.69005 15.0275 7.16383 15.103 6.65539C15.223 5.8545 15.3359 5.09894 15.5928 4.65005C15.7163 4.43494 15.7101 4.16827 15.5759 3.95939C15.4426 3.7505 15.2052 3.62783 14.9563 3.6545C4.58923 4.56116 3.25412 15.2465 3.24168 15.3541C3.1999 15.7194 3.46212 16.0492 3.82746 16.0918C3.85323 16.0945 3.87901 16.0963 3.90479 16.0963C4.23812 16.0963 4.52701 15.8456 4.56612 15.5061C4.58123 15.3789 4.72079 14.3301 5.19812 12.9461C5.91812 13.2687 6.63101 13.4109 6.67279 13.4181C7.4319 13.5567 8.13323 13.6261 8.77679 13.6261C10.1163 13.6261 11.2035 13.3256 12.0212 12.7283C12.471 12.3994 12.8195 11.9754 13.0861 11.4785C12.8603 11.5061 12.6221 11.5247 12.3555 11.5247L12.3563 11.5256Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5397_25900"> <rect width="16" height="16" fill="white" transform="translate(0.570312 0.985352)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Edit suggestions</p></div></div><p class="description _30ch">AI analyzes your docs and suggests enhancements for clarity and completeness</p></div><div id="w-node-_635a5bd6-344f-ddb7-a331-f0b4b11555b4-a49a6243" class="grid-item gaps"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5397_25929)"> <path d="M7.60202 10.4593C7.66069 10.4753 7.71936 10.4824 7.77713 10.4824C8.07047 10.4824 8.33891 10.2877 8.4198 9.99085C8.51669 9.63618 8.30691 9.26907 7.95136 9.17307C7.43669 9.03263 6.96291 8.81218 6.53891 8.52774C7.20647 7.75262 7.72025 6.73663 7.92113 5.42996H9.11047C9.47847 5.42996 9.77713 5.13129 9.77713 4.76329C9.77713 4.39529 9.47847 4.09663 9.11047 4.09663H6.22158V2.98551C6.22158 2.61751 5.92291 2.31885 5.55491 2.31885C5.18691 2.31885 4.88825 2.61751 4.88825 2.98551V4.09663H1.99936C1.63136 4.09663 1.33269 4.39529 1.33269 4.76329C1.33269 5.13129 1.63136 5.42996 1.99936 5.42996H3.18425C3.34691 6.59263 3.82513 7.65218 4.55491 8.51351C3.34513 9.30996 2.05091 9.42463 1.95402 9.43174C1.58691 9.45663 1.30869 9.77396 1.33358 10.142C1.35758 10.494 1.65002 10.7642 1.99847 10.7642C2.01358 10.7642 2.02869 10.7642 2.0438 10.7633C2.98602 10.7002 4.35847 10.326 5.55136 9.44418C6.15491 9.89485 6.83847 10.2522 7.60202 10.4602V10.4593ZM6.57269 5.42996C6.3958 6.36596 6.01802 7.08151 5.55225 7.63174C5.03047 7.00863 4.67047 6.25663 4.52202 5.42996H6.57269Z" fill="currentColor"/> <path d="M14.6233 14.752L11.9566 7.6409C11.8589 7.38045 11.61 7.20801 11.3326 7.20801H10.8882C10.6109 7.20801 10.362 7.38045 10.2642 7.6409L7.59752 14.752C7.46774 15.0969 7.64286 15.4809 7.98774 15.6098C8.33086 15.7387 8.71663 15.5645 8.84552 15.2196L9.51663 13.4302H12.7042L13.3753 15.2196C13.4757 15.4871 13.7291 15.6525 13.9993 15.6525C14.0766 15.6525 14.1566 15.6391 14.2331 15.6098C14.578 15.48 14.7522 15.096 14.6233 14.752ZM10.0171 12.0969L11.1104 9.18045L12.2037 12.0969H10.0162H10.0171Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5397_25929"> <rect width="16" height="16" fill="white" transform="translate(0 0.985352)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Automatic translations</p></div></div><p class="description _30ch">Expand global reach with one-click multi-language support</p></div><div id="w-node-_635a5bd6-344f-ddb7-a331-f0b4b11555bc-a49a6243" class="grid-item gaps left"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5397_25952)"> <path d="M14.1181 7.61465C13.3136 7.61465 12.6025 7.10265 12.3474 6.33999L12.1083 5.62354L11.3936 5.38443C10.6327 5.13287 10.1181 4.42087 10.1181 3.61376C10.1181 3.30621 10.2123 3.02265 10.3474 2.76221H5.00694C3.6585 2.76221 2.5625 3.85821 2.5625 5.20665V12.7631C2.5625 14.1115 3.6585 15.2075 5.00694 15.2075H12.5625C13.9109 15.2075 15.0069 14.1115 15.0069 12.7631V7.36487C14.7376 7.51332 14.4398 7.61465 14.1181 7.61465ZM10.2585 8.06087L9.13583 8.43776L8.76161 9.56843C8.70028 9.75065 8.5305 9.87421 8.33939 9.87421C8.14828 9.87421 7.97761 9.75065 7.91717 9.56843L7.54294 8.43776L6.42028 8.06087C6.23894 8.00043 6.11628 7.82887 6.11628 7.63687C6.11628 7.44487 6.23894 7.27332 6.42028 7.21287L7.54294 6.83598L7.91717 5.70532C8.03894 5.33998 8.63894 5.33998 8.76072 5.70532L9.13494 6.83598L10.2576 7.21287C10.4389 7.27421 10.5616 7.44487 10.5616 7.63687C10.5616 7.82887 10.4389 8.00043 10.2576 8.06087H10.2585ZM11.2292 11.652C10.8612 11.652 10.5625 11.3533 10.5625 10.9853C10.5625 10.6173 10.8612 10.3187 11.2292 10.3187C11.5972 10.3187 11.8958 10.6173 11.8958 10.9853C11.8958 11.3533 11.5972 11.652 11.2292 11.652Z" fill="currentColor"/> <path d="M16.4192 3.10797L15.0725 2.6582L14.6236 1.31153C14.4778 0.875974 13.7569 0.875974 13.6112 1.31153L13.1623 2.6582L11.8156 3.10797C11.5978 3.17997 11.4512 3.38442 11.4512 3.61375C11.4512 3.84309 11.5978 4.04753 11.8156 4.11953L13.1623 4.56931L13.6112 5.91597C13.6841 6.13375 13.8885 6.28042 14.1178 6.28042C14.3472 6.28042 14.5507 6.13375 14.6245 5.91597L15.0734 4.56931L16.4201 4.11953C16.6378 4.04753 16.7845 3.84309 16.7845 3.61375C16.7845 3.38442 16.637 3.18086 16.4192 3.10797Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5397_25952"> <rect width="16" height="16" fill="white" transform="translate(0.785156 0.985352)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Writing assistance</p></div></div><p class="description _30ch">Craft clearer, more engaging documentation with real-time Improvements</p></div><div id="w-node-_635a5bd6-344f-ddb7-a331-f0b4b11555c4-a49a6243" class="grid-item gaps"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5397_25975)"> <path d="M7.99904 6.76291C8.9946 6.76291 9.84971 6.16291 10.231 5.30691C11.5093 5.96647 12.4595 7.17002 12.7724 8.59225C12.8408 8.90336 13.1173 9.11491 13.4222 9.11491C13.4702 9.11491 13.5182 9.11047 13.567 9.09891C13.9262 9.0198 14.1528 8.66336 14.0737 8.30425C13.639 6.33802 12.2479 4.70336 10.4026 3.92647C10.2133 2.76558 9.21149 1.87402 7.99815 1.87402C6.64971 1.87402 5.55371 2.97002 5.55371 4.31847C5.55371 5.66691 6.64971 6.76291 7.99815 6.76291H7.99904Z" fill="currentColor"/> <path d="M5.49844 11.0945C5.00067 10.2332 4.05311 9.79137 3.12156 9.89004C3.05311 8.45271 3.62022 7.02871 4.694 6.04648C4.966 5.79848 4.98467 5.37626 4.73667 5.10426C4.48778 4.83315 4.06644 4.8136 3.79444 5.06248C2.30822 6.4216 1.58822 8.44382 1.838 10.4296C1.44244 10.7514 1.15444 11.1825 1.01933 11.6847C0.851333 12.3149 0.937555 12.9745 1.26378 13.5389C1.59 14.1043 2.11711 14.5096 2.74822 14.6785C2.958 14.7345 3.17222 14.7629 3.38467 14.7629C3.80867 14.7629 4.22555 14.6518 4.60244 14.434C5.76867 13.7612 6.17133 12.2634 5.49755 11.0954L5.49844 11.0945Z" fill="currentColor"/> <path d="M14.9797 11.6857C14.8109 11.0554 14.4055 10.5274 13.8411 10.2012C12.6749 9.52656 11.1753 9.92923 10.5015 11.0963C10.0037 11.9586 10.0962 12.9986 10.6473 13.7559C9.43842 14.5337 7.92286 14.7541 6.53086 14.315C6.17797 14.2048 5.80553 14.3994 5.6953 14.7497C5.58419 15.1008 5.77886 15.475 6.12997 15.5861C6.73708 15.7781 7.36375 15.8714 7.98775 15.8714C9.34331 15.8714 10.6829 15.4261 11.7771 14.5914C12.0482 14.6928 12.3282 14.7621 12.6153 14.7621C12.8277 14.7621 13.0411 14.7346 13.2517 14.6777C13.8829 14.5088 14.41 14.1034 14.7362 13.539C15.0624 12.9746 15.1495 12.315 14.9806 11.6848L14.9797 11.6857Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5397_25975"> <rect width="16" height="16" fill="white" transform="translate(0 0.985352)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Integrations</p></div></div><p class="description _30ch">Connect your favorite tools and workflows to streamline documentation</p></div></div></div></div></div></div></section></div><section class="stories"><div class="padding-global"><div class="container-large"><div class="padding-section-large padding-top"><div class="w-layout-grid header_content margin-bottom margin-xxlarge blog"><h1 blocks-non-deletable="true" class="heading-style-h2">How we enable next-gen companies succeed</h1><div class="header_content-right"><div class="button-group is-right mobile-center"><a href="/customers" class="button w-button">More case studies</a><link rel="prefetch" href="/customers"/><a href="/love" class="button is-secondary w-button">Wall of love</a><link rel="prefetch" href="/love"/></div></div></div><div class="splide"><div class="splide__track w-dyn-list"><div fs-cmsslider-element="list" role="list" class="splide__list w-dyn-items"><div role="listitem" class="splide__slide w-dyn-item"><a href="/customers/captions" class="blog-inner w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ec73b68a7b6a73b26cfe6b_light.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/captions/captions%20-%20light%20mode%20update%201-2.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/captions/captions%20-%20dark%20mode%20update%201-2.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/captions/captions%20-%20dark%20mode%20update%201-2.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/captions/captions%20-%20light%20mode%20update%201-2.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action"><div class="text-style-2lines">How Captions scaled global support by putting documentation first</div></div></a></div><div role="listitem" class="splide__slide w-dyn-item"><a href="/customers/anthropic" class="blog-inner w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ec73b68a7b6a73b26cfe6b_light.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/anthropic/Anthropic%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/anthropic/Anthropic%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/anthropic/Anthropic%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/anthropic/Anthropic%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action"><div class="text-style-2lines">How Anthropic provides a better developer experience with Mintlify</div></div></a></div><div role="listitem" class="splide__slide w-dyn-item"><a href="/customers/loops" class="blog-inner w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ec73b68a7b6a73b26cfe6b_light.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/loops/Loops3%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/loops/Loops3%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/loops/Loops3%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/loops/Loops3%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action"><div class="text-style-2lines">How Loops scales a better developer experience with Mintlify</div></div></a></div><div role="listitem" class="splide__slide w-dyn-item"><a href="/customers/turso" class="blog-inner w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ec73b68a7b6a73b26cfe6b_light.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/turso/turso%20-%20light%20mode%20update%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/turso/turso%20-%20dark%20mode%20update%201.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/turso/turso%20-%20dark%20mode%20update%201.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/turso/turso%20-%20light%20mode%20update%201.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action"><div class="text-style-2lines">Up-leveling Turso’s developer experience with Mintlify</div></div></a></div><div role="listitem" class="splide__slide w-dyn-item"><a href="/customers/resend" class="blog-inner w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ec73b68a7b6a73b26cfe6b_light.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/resend/Resend%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/resend/Resend%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/resend/Resend%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/resend/Resend%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action"><div class="text-style-2lines">Why Resend partners with Mintlify to create world-class documentation</div></div></a></div><div role="listitem" class="splide__slide w-dyn-item"><a href="/customers/perplexity" class="blog-inner w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ec73b68a7b6a73b26cfe6b_light.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/perplexity/Perplexity%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/perplexity/Perplexity%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/perplexity/Perplexity%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/perplexity/Perplexity%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action"><div class="text-style-2lines">How Perplexity leverages Mintlify for interactive documentation</div></div></a></div><div role="listitem" class="splide__slide w-dyn-item"><a href="/customers/cursor" class="blog-inner w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ec73b68a7b6a73b26cfe6b_light.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/cursor/Scale%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/cursor/Scale%20Light-1.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/cursor/Scale%20Light-1.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/cursor/Scale%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action"><div class="text-style-2lines">How Cursor leverages Mintlify to simplify documentation management</div></div></a></div><div role="listitem" class="splide__slide w-dyn-item"><a href="/customers/fidelity-investment" class="blog-inner w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ec73b68a7b6a73b26cfe6b_light.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/fidelity/Fidelity%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/fidelity/Fidelity%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/fidelity/Fidelity%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/fidelity/Fidelity%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action"><div class="text-style-2lines">How Fidelity levels up financial documentation with Mintlify</div></div></a></div><div role="listitem" class="splide__slide w-dyn-item"><a href="/customers/pinecone" class="blog-inner w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ec73b68a7b6a73b26cfe6b_light.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/pinecone/Pinecone%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/pinecone/Pinecone%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/pinecone/Pinecone%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/pinecone/Pinecone%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action"><div class="text-style-2lines">How Pinecone unifies their support ecosystem with Mintlify</div></div></a></div><div role="listitem" class="splide__slide w-dyn-item"><a href="/customers/plain" class="blog-inner w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ec73b68a7b6a73b26cfe6b_light.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/plain/Plaiun%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/plain/Plain%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/plain/Plain%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/plain/Plaiun%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action"><div class="text-style-2lines">Why Plain migrated from Docusaurus to Mintlify</div></div></a></div><div role="listitem" class="splide__slide w-dyn-item"><a href="/customers/dub" class="blog-inner w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ec73b68a7b6a73b26cfe6b_light.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/dub/Dub%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/dub/Dub%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/dub/Dub%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/dub/Dub%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action"><div class="text-style-2lines">Dub scales support for 48,000+ customers with Mintlify</div></div></a></div><div role="listitem" class="splide__slide w-dyn-item"><a href="/customers/flatfile" class="blog-inner w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ec73b68a7b6a73b26cfe6b_light.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/flatfile/Flatfile%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/flatfile/Flatfile%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/flatfile/Flatfile%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/flatfile/Flatfile%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action"><div class="text-style-2lines">How Flatfile upgraded their developer experience with Mintlify</div></div></a></div></div></div></div><div class="testimonial24_component"><div data-delay="4000" data-animation="slide" class="testimonial24_slider w-slider" data-autoplay="false" data-easing="ease" data-hide-arrows="false" data-disable-swipe="false" data-autoplay-limit="0" data-nav-spacing="3" data-duration="500" data-infinite="true" fs-cmsslider-element="slider"><div class="testimonial24_mask w-slider-mask"><div class="testimonial24_slide w-slide"></div></div><div class="testimonial24_arrow is-left w-slider-arrow-left"><div class="testimonial24_arrow-icon w-embed"><svg width="100%" height="100%" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M3.31066 8.75001L9.03033 14.4697L7.96967 15.5303L0.439339 8.00001L7.96967 0.469676L9.03033 1.53034L3.31066 7.25001L15.5 7.25L15.5 8.75L3.31066 8.75001Z" fill="currentColor"/> </svg></div></div><div class="testimonial24_arrow w-slider-arrow-right"><div class="testimonial24_arrow-icon w-embed"><svg width="100%" height="100%" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M12.6893 7.25L6.96967 1.53033L8.03033 0.469666L15.5607 8L8.03033 15.5303L6.96967 14.4697L12.6893 8.75H0.5V7.25H12.6893Z" fill="currentColor"/> </svg></div></div></div></div></div></div></div></section><section class="cta gradient1"><div class="padding-global"><div class="container-large"><div class="padding-section-small padding-top"><div class="section-divider margin-bottom margin-xxlarge"><div class="divider-inner-line"></div></div><div class="margin-bottom margin-xxlarge"><div class="text-align-center"><div class="max-width-medium align-center"><h1 blocks-non-deletable="true" class="heading-style-h2">The documentation you want, available today</h1></div><div class="margin-top margin-large"><div class="button-group is-center"><a href="https://dashboard.mintlify.com/signup" class="button w-button">Get started</a><a data-cal-namespace="demo-with-mintlify" data-cal-link="team/mintlify/demo-with-mintlify" href="#" class="button is-secondary w-button">Get a demo</a></div></div></div></div></div><img src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f29d9b066343224a22e4b1_footer%20CTA%20-%20updated%201.svg" loading="lazy" data-light-src="https://mintlify-assets.b-cdn.net/website/home/cta/footer%20CTA%20-%20updated%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/cta/Footer%20CTA%20Updated%201%20-%20dark.svg" alt="" class="cta-illust theme-asset hide-mobile-portrait"/><img src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed32d350cf8baabd44e39f_mobile%20illust.svg" loading="lazy" data-light-src="https://mintlify-assets.b-cdn.net/website/home/cta/cta-mobile.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/cta/cta-mobile-dark.png" alt="" class="cta-illust theme-asset mobile-only"/></div></div></section></main><footer class="footer"><div class="padding-global"><div class="container-large lines"><div class="padding-section-medium"><div class="padding-bottom padding-section-medium"><div class="w-layout-grid footer_top-wrapper"><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a442-3cb3a43c" class="footer_left-wrapper"><a href="#" aria-label="Footer link" class="footer_logo-link w-nav-brand"><div class="brand-logo w-embed"><svg width="110" height="24" viewBox="0 0 110 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M31.3809 3.06182H36.2383L40.3588 13.1095H40.549L44.6695 3.06182H49.5269V19.2902H45.7075V9.32179H45.5728L41.6742 19.1872H39.2336L35.335 9.26635H35.2003V19.2902H31.3809V3.06182ZM51.0807 19.2902V7.1189H54.9559V19.2902H51.0807ZM53.0221 5.70052C52.4781 5.70052 52.0105 5.52091 51.6198 5.16171C51.229 4.79718 51.0331 4.35872 51.0331 3.8463C51.0331 3.33916 51.229 2.90598 51.6198 2.54676C52.0105 2.18225 52.4781 2 53.0221 2C53.5715 2 54.0391 2.18225 54.4249 2.54676C54.8156 2.90598 55.011 3.33916 55.011 3.8463C55.011 4.35872 54.8156 4.79718 54.4249 5.16171C54.0391 5.52091 53.5715 5.70052 53.0221 5.70052ZM60.4045 12.3488V19.2902H56.5293V7.1189H60.2141V9.35348H60.349C60.6183 8.60863 61.0779 8.0249 61.7275 7.60227C62.3776 7.17438 63.1512 6.96042 64.0492 6.96042C64.905 6.96042 65.6474 7.15326 66.2761 7.5389C66.9098 7.91923 67.4012 8.45278 67.7498 9.13956C68.1039 9.82103 68.2784 10.6187 68.273 11.5326V19.2902H64.3983V12.2933C64.4032 11.6171 64.2317 11.0889 63.8831 10.7085C63.5394 10.3282 63.0614 10.138 62.4485 10.138C62.0419 10.138 61.6829 10.2278 61.371 10.4074C61.0645 10.5817 60.827 10.8326 60.6579 11.1602C60.4943 11.4877 60.4095 11.8839 60.4045 12.3488ZM76.6497 7.1189V9.97158H68.9712V7.1189H76.6497ZM70.5798 4.20288H74.4545V15.4629C74.4545 15.7006 74.4917 15.8935 74.5655 16.0414C74.6449 16.184 74.7584 16.287 74.9062 16.3504C75.054 16.4085 75.231 16.4376 75.4373 16.4376C75.585 16.4376 75.7407 16.4244 75.9044 16.398C76.0735 16.3662 76.2004 16.3399 76.2852 16.3187L76.8713 19.1159C76.6864 19.1687 76.425 19.2347 76.0869 19.314C75.7541 19.3932 75.3554 19.4434 74.8903 19.4646C73.9819 19.5068 73.2024 19.4011 72.5528 19.1476C71.9082 18.8887 71.4143 18.4873 71.0712 17.9431C70.733 17.399 70.5693 16.7149 70.5798 15.8908V4.20288ZM81.8702 3.06182V19.2902H77.9954V3.06182H81.8702ZM83.444 19.2902V7.1189H87.3188V19.2902H83.444ZM85.3854 5.70052C84.8414 5.70052 84.3738 5.52091 83.9831 5.16171C83.5918 4.79718 83.3964 4.35872 83.3964 3.8463C83.3964 3.33916 83.5918 2.90598 83.9831 2.54676C84.3738 2.18225 84.8414 2 85.3854 2C85.9348 2 86.4024 2.18225 86.7882 2.54676C87.1789 2.90598 87.3743 3.33916 87.3743 3.8463C87.3743 4.35872 87.1789 4.79718 86.7882 5.16171C86.4024 5.52091 85.9348 5.70052 85.3854 5.70052ZM95.8105 7.1189V9.97158H87.9812V7.1189H95.8105ZM89.6136 19.2902V6.50085C89.6136 5.56053 89.7907 4.78133 90.1447 4.16326C90.4988 3.5399 90.9902 3.07503 91.6184 2.76863C92.2472 2.45695 92.9736 2.30111 93.7978 2.30111C94.3368 2.30111 94.8436 2.34337 95.3191 2.4279C95.8001 2.50714 96.1566 2.57845 96.3887 2.64185L95.7708 5.47867C95.628 5.43111 95.454 5.39149 95.2477 5.35981C95.0469 5.32807 94.8569 5.31225 94.6774 5.31225C94.2227 5.31225 93.9113 5.41262 93.7422 5.61334C93.5731 5.81412 93.4888 6.08878 93.4888 6.43748V19.2902H89.6136ZM99.1511 23.8544C98.6865 23.8544 98.2477 23.8175 97.8356 23.7435C97.4241 23.6748 97.07 23.5824 96.774 23.4662L97.6298 20.6532C98.0102 20.78 98.3538 20.8539 98.6597 20.875C98.9716 20.8961 99.2384 20.846 99.4601 20.7245C99.6877 20.6082 99.8617 20.3996 99.9832 20.0985L100.134 19.734L95.8075 7.1189H99.8642L102.107 15.8037H102.233L104.508 7.1189H108.589L104.001 20.4551C103.779 21.1207 103.465 21.707 103.058 22.2142C102.656 22.7266 102.136 23.1281 101.497 23.4186C100.863 23.7092 100.081 23.8544 99.1511 23.8544Z" fill="currentcolor"/> <mask id="mask0_4238_40" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="0" width="24" height="24"> <path d="M24.6348 0H1V23.6348H24.6348V0Z" fill="white"/> </mask> <g mask="url(#mask0_4238_40)"> <path d="M7.22763 8.62342C7.24415 6.37269 8.13673 4.21692 9.71609 2.61328H9.71318L3.61572 8.71074H3.61863C3.59593 8.7286 3.57453 8.74804 3.55459 8.76894C2.0717 10.2499 1.17264 12.216 1.02241 14.3063C0.872184 16.3967 1.48087 18.4711 2.73675 20.149L8.89533 13.9903L8.95936 13.9292C7.81152 12.4007 7.20254 10.5348 7.22763 8.62342Z" fill="#0C8C5E"/> <path d="M22.0327 14.9336C20.8657 16.0773 19.4008 16.8701 17.805 17.2216C16.2093 17.573 14.5469 17.469 13.0074 16.9215C12.1865 16.63 11.415 16.2149 10.7197 15.6904L10.6556 15.7544L4.49707 21.91C6.17554 23.1628 8.24884 23.7695 10.3379 23.6194C12.427 23.4692 14.3921 22.5721 15.8741 21.0921L15.9353 21.031L22.0327 14.9336Z" fill="#0C8C5E"/> <path d="M24.6467 8.71108V4.35893e-06H15.9356C14.7916 -0.00114182 13.6586 0.223763 12.6016 0.661799C11.5448 1.09984 10.5848 1.74238 9.77701 2.5525L9.71589 2.61362C8.6511 3.6946 7.88927 5.03658 7.50684 6.50493C8.19913 6.32565 8.91058 6.23087 9.62567 6.22262C11.5371 6.20012 13.4024 6.80995 14.9315 7.95726C16.3057 8.98207 17.3457 10.3908 17.9206 12.0058C18.5064 13.6564 18.5834 15.4449 18.1417 17.1398C19.6104 16.7581 20.9525 15.9961 22.033 14.9308L22.0942 14.8726C22.9046 14.0644 23.5474 13.104 23.9854 12.0466C24.4234 10.9892 24.6482 9.85563 24.6467 8.71108Z" fill="#18E299"/> </g> </svg></div></a><div class="w-layout-grid footer_social-list"><a aria-label="social twitter" href="https://x.com/mintlify" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4281_704)"> <path d="M12.0125 8.75562L17.9319 1.875H16.5294L11.3894 7.84938L7.28436 1.875H2.54999L8.75749 10.9094L2.54999 18.125H3.95249L9.37999 11.8156L13.715 18.125H18.45L12.0125 8.75562ZM10.0912 10.9888L9.46249 10.0894L4.45811 2.93125H6.61249L10.6512 8.70812L11.28 9.6075L16.53 17.1169H14.3756L10.0919 10.9894L10.0912 10.9888Z" fill="currentcolor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4281_704"> <rect width="20" height="20" fill="white" transform="translate(0.5)"/> </clipPath> </defs> </svg></div></a><a aria-label="social twitter" id="w-node-_2a678e1a-5e6c-fcb8-46d2-53b52fe4bc65-3cb3a43c" href="https://www.linkedin.com/company/mintlify/" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.854 11.5719V18.8895H7.46094V6.24477H10.6617L10.7183 9.40031H10.5147C10.8465 8.34469 11.3479 7.53036 12.0189 6.95731C12.6976 6.37672 13.5722 6.08643 14.6429 6.08643C15.5176 6.08643 16.2791 6.2787 16.9276 6.66324C17.5835 7.04025 18.0887 7.58691 18.4431 8.30322C18.805 9.01199 18.986 9.86026 18.986 10.848V18.8895H15.593V11.4361C15.593 10.652 15.3894 10.0374 14.9822 9.59258C14.5826 9.14771 14.0246 8.92528 13.3083 8.92528C12.8333 8.92528 12.4073 9.03084 12.0303 9.24197C11.6608 9.44555 11.3705 9.74338 11.1594 10.1355C10.9558 10.5276 10.854 11.0064 10.854 11.5719Z" fill="currentColor"/> <path d="M1.1725 18.89V6.24517H4.56556V18.89H1.1725ZM2.86903 4.59389C2.3563 4.59389 1.91897 4.42423 1.55705 4.08493C1.19512 3.74562 1.01416 3.33469 1.01416 2.85212C1.01416 2.36955 1.19512 1.95862 1.55705 1.61931C1.91897 1.28 2.3563 1.11035 2.86903 1.11035C3.38176 1.11035 3.81908 1.28 4.18101 1.61931C4.55048 1.95107 4.73521 2.36201 4.73521 2.85212C4.73521 3.33469 4.55048 3.74562 4.18101 4.08493C3.81908 4.42423 3.38176 4.59389 2.86903 4.59389Z" fill="currentColor"/> </svg></div></a><a aria-label="social github" href="https://github.com/mintlify" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4281_683)"> <path d="M10.5 1.46547C15.3344 1.46547 19.25 5.38109 19.25 10.2155C19.2488 13.9748 16.8506 17.3148 13.2894 18.5167C12.8519 18.6042 12.6875 18.3305 12.6875 18.1011C12.6875 17.8055 12.6988 16.8648 12.6988 15.6948C12.6988 14.8748 12.4256 14.3498 12.1081 14.0761C14.055 13.8573 16.1006 13.1136 16.1006 9.75609C16.1006 8.79359 15.7613 8.01672 15.2038 7.40484C15.2913 7.18609 15.5975 6.28922 15.1163 5.08609C15.1163 5.08609 14.3831 4.84547 12.71 5.98297C12.01 5.78609 11.2663 5.68797 10.5225 5.68797C9.77875 5.68797 9.035 5.78609 8.335 5.98297C6.66188 4.85672 5.92875 5.08609 5.92875 5.08609C5.4475 6.28922 5.75375 7.18609 5.84125 7.40484C5.28375 8.01734 4.94438 8.80484 4.94438 9.75609C4.94438 13.103 6.97875 13.858 8.92563 14.0767C8.67375 14.2955 8.44438 14.6786 8.3675 15.2467C7.86438 15.4767 6.60625 15.8486 5.81938 14.5248C5.655 14.2623 5.16313 13.6173 4.47438 13.628C3.74125 13.6392 4.17938 14.0436 4.485 14.2073C4.85688 14.4148 5.28313 15.1917 5.38188 15.4436C5.55688 15.9355 6.12563 16.8767 8.32375 16.4717C8.32375 17.2048 8.335 17.8936 8.335 18.1011C8.335 18.3311 8.17063 18.593 7.73313 18.5167C4.15875 17.3267 1.74813 13.9823 1.75 10.2148C1.75 5.38047 5.66563 1.46547 10.5 1.46547Z" fill="currentcolor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4281_683"> <rect width="20" height="20" fill="white" transform="translate(0.5)"/> </clipPath> </defs> </svg></div></a><a aria-label="social slack community" href="https://mintlify.com/community" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4281_723)"> <path d="M5.78948 12.1385C5.78948 13.0779 5.02198 13.8454 4.08261 13.8454C3.14323 13.8454 2.37573 13.0779 2.37573 12.1385C2.37573 11.1991 3.14323 10.4316 4.08261 10.4316H5.78948V12.1385Z" fill="currentcolor" fill-opacity="1"/> <path d="M6.64954 12.1385C6.64954 11.1991 7.41704 10.4316 8.35641 10.4316C9.29579 10.4316 10.0633 11.1991 10.0633 12.1385V16.4129C10.0633 17.3523 9.29579 18.1198 8.35641 18.1198C7.41704 18.1198 6.64954 17.3523 6.64954 16.4129V12.1385Z" fill="currentcolor" fill-opacity="1"/> <path d="M8.35641 5.2868C7.41704 5.2868 6.64954 4.5193 6.64954 3.57992C6.64954 2.64055 7.41704 1.87305 8.35641 1.87305C9.29579 1.87305 10.0633 2.64055 10.0633 3.57992V5.2868H8.35641Z" fill="currentcolor" fill-opacity="1"/> <path d="M8.35637 6.14453C9.29575 6.14453 10.0632 6.91203 10.0632 7.85141C10.0632 8.79078 9.29575 9.55828 8.35637 9.55828H4.082C3.14262 9.55828 2.37512 8.79078 2.37512 7.85141C2.37512 6.91203 3.14262 6.14453 4.082 6.14453H8.35637Z" fill="currentcolor" fill-opacity="1"/> <path d="M15.2107 7.85141C15.2107 6.91203 15.9782 6.14453 16.9176 6.14453C17.8569 6.14453 18.6244 6.91203 18.6244 7.85141C18.6244 8.79078 17.8569 9.55828 16.9176 9.55828H15.2107V7.85141Z" fill="currentcolor" fill-opacity="1"/> <path d="M14.3508 7.85234C14.3508 8.79172 13.5833 9.55922 12.6439 9.55922C11.7045 9.55922 10.937 8.79172 10.937 7.85234V3.57797C10.937 2.63859 11.7045 1.87109 12.6439 1.87109C13.5833 1.87109 14.3508 2.63859 14.3508 3.57797V7.85234Z" fill="currentcolor" fill-opacity="1"/> <path d="M12.6439 14.707C13.5833 14.707 14.3508 15.4745 14.3508 16.4139C14.3508 17.3533 13.5833 18.1208 12.6439 18.1208C11.7045 18.1208 10.937 17.3533 10.937 16.4139V14.707H12.6439Z" fill="currentcolor" fill-opacity="1"/> <path d="M12.6439 13.8454C11.7045 13.8454 10.937 13.0779 10.937 12.1385C10.937 11.1991 11.7045 10.4316 12.6439 10.4316H16.9183C17.8576 10.4316 18.6251 11.1991 18.6251 12.1385C18.6251 13.0779 17.8576 13.8454 16.9183 13.8454H12.6439Z" fill="currentcolor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4281_723"> <rect width="20" height="20" fill="white" transform="translate(0.5)"/> </clipPath> </defs> </svg></div></a></div></div><div class="w-layout-grid footer_menu-wrapper"><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a45c-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Documentation</p><a href="https://mintlify.com/docs/" class="footer_link">Getting Started</a><a href="https://mintlify.com/docs/content/components" class="footer_link">Components</a><a href="https://mintlify.com/docs/api-playground/" class="footer_link">API playground</a><a href="/pricing" class="footer_link">Pricing</a><link rel="prefetch" href="/pricing"/></div><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a465-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Resources</p><a href="/customers" class="footer_link">Customers</a><link rel="prefetch" href="/customers"/><a href="/enterprise" class="footer_link">Enterprise</a><link rel="prefetch" href="/enterprise"/><a href="/preview" class="footer_link">Request Preview</a><link rel="prefetch" href="/preview"/><a href="https://mintlify.com/docs/integrations/analytics/overview" class="footer_link">Integrations</a><a href="https://github.com/mintlify/themes" target="_blank" class="footer_link">Templates</a><a href="/love" class="footer_link">Wall of Love</a><link rel="prefetch" href="/love"/></div><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a470-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Company</p><a href="/careers" class="footer_link">Careers</a><a href="/blog" class="footer_link">Blog</a><link rel="prefetch" href="/blog"/><a href="https://feedback.mintlify.com/roadmap" class="footer_link">Public Roadmap</a><a href="https://mintlify.com/security/responsible-disclosure" class="footer_link">Security</a></div><div id="w-node-bb4edd60-b98b-a009-1d55-2aebeaf325d3-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Legal</p><a href="https://mintlify.com/legal/privacy" class="footer_link">Privacy Policy</a><a href="https://mintlify.com/legal/terms" class="footer_link">Terms of Service</a></div></div></div></div><div class="padding-section-small padding-0"><div class="footer-bottom"><a id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a47e-3cb3a43c" href="https://status.mintlify.com/" target="_blank" class="status w-inline-block"><div class="status-color"></div><div class="status-text">Status-text</div></a><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a482-3cb3a43c" class="footer_credit-text">© <span class="current-year">currentYear</span> Mintlify, Inc.</div><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a487-3cb3a43c" class="theme-switch-wrap"><a aria-label="theme light switch" tr-color-light="" id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a48a-3cb3a43c" href="#" class="theme-toggle w-inline-block"><div class="icon-flex w-embed"><svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4326_1878)"> <path d="M7 1.4375V2.60417" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M11.5376 3.31641L10.7124 4.14163" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M13.4167 7.85352H12.25" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M11.5376 12.3916L10.7124 11.5664" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M7 14.2702V13.1035" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M2.46252 12.3916L3.28775 11.5664" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M0.583374 7.85352H1.75004" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M2.46252 3.31641L3.28775 4.14163" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M7.00001 11.1599C8.82562 11.1599 10.3056 9.67999 10.3056 7.85438C10.3056 6.02878 8.82562 4.54883 7.00001 4.54883C5.17441 4.54883 3.69446 6.02878 3.69446 7.85438C3.69446 9.67999 5.17441 11.1599 7.00001 11.1599Z" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_4326_1878"> <rect width="14" height="14" fill="white" transform="translate(0 0.853516)"/> </clipPath> </defs> </svg></div></a><a aria-label="theme dark switch" tr-color-dark="" id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a48c-3cb3a43c" href="#" class="theme-toggle w-inline-block"><div class="icon-flex w-embed"><svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4326_1858)"> <path d="M10.1111 9.99267C7.42621 9.99267 5.24999 7.81645 5.24999 5.13156C5.24999 4.08001 5.58676 3.11012 6.15376 2.31445C3.53732 2.8029 1.55554 5.09501 1.55554 7.85379C1.55554 10.968 4.08021 13.4927 7.19443 13.4927C9.8171 13.4927 12.0151 11.6991 12.6459 9.27401C11.907 9.72745 11.0413 9.99267 10.1111 9.99267Z" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_4326_1858"> <rect width="14" height="14" fill="white" transform="translate(0 0.853516)"/> </clipPath> </defs> </svg></div></a></div><div id="w-node-_43bf6cdd-526c-279b-9ac7-86fd5c62ee35-3cb3a43c" class="footer-status w-embed w-script"><script> // Function to fetch and update the status function updateStatus() { fetch('https://status.mintlify.com/proxy/status.mintlify.com/incidents') .then(response => response.json()) .then(data => { const status = data.incidents[0]?.status; let statusText, statusColor; switch (status) { case 'resolved': statusText = 'All systems normal'; statusColor = '#00C853'; break; case 'partial_outage': statusText = 'Partial outage'; statusColor = '#FFD600'; break; case 'full_outage': statusText = 'Full outage'; statusColor = '#D50000'; break; default: statusText = 'Status unavailable'; statusColor = '#9E9E9E'; } // Update the status text const statusTextElement = document.querySelector('.status-text'); if (statusTextElement) { statusTextElement.textContent = statusText; } // Update the status color const statusColorElement = document.querySelector('.status-color'); if (statusColorElement) { statusColorElement.style.backgroundColor = statusColor; statusColorElement.style.outlineColor = `${statusColor}26`; // 26 is 15% opacity in hex } }) .catch(error => { console.error('Error fetching status:', error); }); } // Run the update function when the DOM is fully loaded document.addEventListener('DOMContentLoaded', updateStatus); // Optionally, update the status every 5 minutes setInterval(updateStatus, 300000); </script></div></div></div></div></div></div></footer></div><script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=66cc2bd703ccf308a49a6188" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/js/mintlify-lander.6d35839e.68fcbebc6184cb62.js" type="text/javascript"></script><script> document.addEventListener('DOMContentLoaded', function() { const currentYear = new Date().getFullYear(); const elements = document.getElementsByClassName('current-year'); for (let element of elements) { element.textContent = currentYear; } }); </script> <script> document.addEventListener('DOMContentLoaded', () => { const dropdowns = document.querySelectorAll('.dd-menu-wrap'); const glassOverlay = document.querySelector('.glass-bg'); const navbarContainer = document.querySelector('.navbar_container'); function activateDropdownState() { glassOverlay.classList.add('active'); navbarContainer.classList.add('dropdown-active'); } function deactivateDropdownState() { glassOverlay.classList.remove('active'); navbarContainer.classList.remove('dropdown-active'); } dropdowns.forEach(dropdown => { dropdown.addEventListener('mouseenter', activateDropdownState); dropdown.addEventListener('mouseleave', deactivateDropdownState); }); // Handle focus events for accessibility dropdowns.forEach(dropdown => { const focusableElements = dropdown.querySelectorAll('a, button, input, select, textarea, [tabindex]:not([tabindex="-1"])'); focusableElements.forEach(element => { element.addEventListener('focus', activateDropdownState); element.addEventListener('blur', (event) => { // Delay deactivation to check if focus moved to another element within the dropdown setTimeout(() => { if (!dropdown.contains(document.activeElement)) { deactivateDropdownState(); } }, 0); }); }); }); }); </script> <!-- LinkedIn Insight Tag --> <script type="text/javascript"> _linkedin_partner_id = "6729188"; window._linkedin_data_partner_ids = window._linkedin_data_partner_ids || []; window._linkedin_data_partner_ids.push(_linkedin_partner_id); </script><script type="text/javascript"> (function(l) { if (!l){window.lintrk = function(a,b){window.lintrk.q.push([a,b])}; window.lintrk.q=[]} var s = document.getElementsByTagName("script")[0]; var b = document.createElement("script"); b.type = "text/javascript";b.async = true; b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js"; s.parentNode.insertBefore(b, s);})(window.lintrk); </script> <noscript> <img height="1" width="1" style="display:none;" alt="" src="https://px.ads.linkedin.com/collect/?pid=6729188&fmt=gif" /> </noscript><script src="https://unpkg.com/swiper@8/swiper-bundle.min.js"></script> <style> .swiper-scrollbar { display: none !important; } .swiper-slide-active { opacity: 1 !important; } .pagination-item:hover .underline { background-color: var(--color--border-soft); } .pagination-item.active .underline-inner { transform: translateX(0); } @media (max-width: 767px) { .custom-pagination { justify-content: flex-start; overflow-x: auto; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; } .custom-pagination::-webkit-scrollbar { display: none; } .pagination-item { flex: 0 0 auto; } } .custom-pagination-2 .pagination-item.active .left-div { background-color: var(--color--border-solid); } .custom-pagination-4 .pagination-item.active .left-div { background-color: var(--color--border-solid); } </style> <script> document.addEventListener('DOMContentLoaded', function() { const swiper1 = new Swiper(".swiper1", { effect: 'fade', fadeEffect: { crossFade: true }, autoplay: { delay: 4000, disableOnInteraction: false, }, direction: "horizontal", loop: true, slidesPerView: 1, slidesPerGroup: 1, centeredSlides: false, mousewheel: { forceToAxis: true }, speed: 300, breakpoints: { 480: { slidesPerView: 1 }, 768: { slidesPerView: 1 }, 992: { slidesPerView: 1 } }, on: { init: function () { updateCustomPagination(this.realIndex); }, slideChange: function () { updateCustomPagination(this.realIndex); }, }, }); function updateCustomPagination(index) { const paginationContainer = document.querySelector('.custom-pagination'); const paginationItems = document.querySelectorAll('.pagination-item'); paginationItems.forEach((item, i) => { if (i === index) { item.classList.add('active'); item.setAttribute('aria-selected', 'true'); if (window.innerWidth <= 767) { const containerWidth = paginationContainer.offsetWidth; const itemWidth = item.offsetWidth; const scrollLeft = item.offsetLeft - (containerWidth / 2) + (itemWidth / 2); paginationContainer.scrollTo({ left: scrollLeft, behavior: 'smooth' }); } } else { item.classList.remove('active'); item.setAttribute('aria-selected', 'false'); } }); if ('vibrate' in navigator) { navigator.vibrate(50); } } document.querySelectorAll('.pagination-item').forEach((item, index) => { item.addEventListener('click', () => { swiper1.slideToLoop(index); }); }); window.addEventListener('resize', () => { updateCustomPagination(swiper1.realIndex); }); let touchStartX = 0; let touchEndX = 0; document.querySelector('.custom-pagination').addEventListener('touchstart', e => { touchStartX = e.changedTouches[0].screenX; }, false); document.querySelector('.custom-pagination').addEventListener('touchend', e => { touchEndX = e.changedTouches[0].screenX; if (touchEndX < touchStartX) swiper1.slideNext(); if (touchEndX > touchStartX) swiper1.slidePrev(); }, false); document.addEventListener('keydown', (e) => { if (e.key === 'ArrowLeft') swiper1.slidePrev(); if (e.key === 'ArrowRight') swiper1.slideNext(); }); const swiperContainer = document.querySelector('.swiper1'); swiperContainer.addEventListener('mouseenter', () => { swiper1.autoplay.stop(); }); swiperContainer.addEventListener('mouseleave', () => { swiper1.autoplay.start(); }); }); </script> <script> document.addEventListener('DOMContentLoaded', function() { function initializeSwiper(swiperClass, paginationClass) { let activeIndex = 0; const swiper = new Swiper(swiperClass, { effect: 'fade', fadeEffect: { crossFade: true }, direction: "horizontal", slidesPerView: 1, spaceBetween: 30, speed: 500, navigation: { nextEl: `${swiperClass}-button-next`, prevEl: `${swiperClass}-button-prev`, }, on: { init: function () { updateCustomPagination(activeIndex, paginationClass); }, slideChange: function () { activeIndex = this.activeIndex; updateCustomPagination(activeIndex, paginationClass); }, }, }); function updateCustomPagination(index, paginationSelector) { const paginationItems = document.querySelectorAll(`${paginationSelector} .pagination-item`); paginationItems.forEach((item, i) => { if (i === index) { item.classList.add('active'); } else { item.classList.remove('active'); } }); } const paginationContainer = document.querySelector(paginationClass); const paginationItems = paginationContainer.querySelectorAll('.pagination-item'); paginationItems.forEach((item, i) => { item.addEventListener('click', () => { activeIndex = i; swiper.slideTo(activeIndex); updateCustomPagination(activeIndex, paginationClass); }); }); // Force update pagination periodically setInterval(() => { updateCustomPagination(activeIndex, paginationClass); }, 100); return swiper; } // Initialize swiper2 const swiper2 = initializeSwiper(".swiper2", ".custom-pagination-2"); // Initialize swiper4 const swiper3 = initializeSwiper(".swiper4", ".custom-pagination-4"); }); </script></body></html>