{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/Utilities-LgUQ.js@YgTH7d8XoflBisXAiR7m", "ssg:https://framerusercontent.com/modules/iAkmv2PjmexdC4trjpTE/GJ8Hi1r34gFMIjLQd90G/Function.js", "ssg:https://framerusercontent.com/modules/bD5Xv6RWClU2UC6KBnsg/Mcz3YV9lWmFgymuIFlRx/CrehRAC0M.js", "ssg:https://framerusercontent.com/modules/62ns0YKMthc3YpQhuJ58/UTTIQ842khDGCA6mJDki/nJCVL_Ff9.js", "ssg:https://framerusercontent.com/modules/u4waOvOjVK2tlDOWAyXj/HWWOCUOj3B9nubItdnKB/usu8jeJ0w.js", "ssg:https://framerusercontent.com/modules/dhWWPcNFIBRq3gIhLmFq/mMPOQZL67cCqZbLHV0aV/x75Wn93es.js", "ssg:https://framerusercontent.com/modules/erbTL059jG27MyRNjF9q/7TDqGjOB6yuJjm951ZMT/DmT4e9mUt.js", "ssg:https://framerusercontent.com/modules/SbtoWXvdHBpabimJzLfb/Ov3vxejbLonYEDAiGtlk/mZ1fGCcxK.js", "ssg:https://framerusercontent.com/modules/777rzbTunVnbFPMWw4mR/XjJeqVPvfqI9UPxFFnOx/UUgPNqE65.js", "ssg:https://framerusercontent.com/modules/qxe2YeYkfGckPFK1wzoJ/KIJexnsKIww9XKhLptB1/etjHfn2IQ.js"],
  "sourcesContent": ["/**\n * Reusable framer utilities\n * @description This file contains utility functions which can be used in any code-overides or\n * code-components in framer.\n * @author Manjunath\n * @see {@link https://manjumjn.com/}\n *//**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/#code-components-auto-sizing\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */import{jsx as _jsx}from\"react/jsx-runtime\";export default function Utilities(props){return /*#__PURE__*/_jsx(\"div\",{});}/**\n * Get element props by tag inside the component\n * @param {Object} elementProps Component props\n * @param {String} elementTag Tag of props to be returned. Eg: a, div, p\n * @returns {Object} props of the `elementTag`\n */export const getPropertiesByTag=(elemProps,elementTag)=>{// Check if the current object is of the target type\nif(elemProps.type===elementTag){return elemProps;}// Iterate through object properties that can hold nested objects (children and props)\nfor(const key of[\"children\",\"props\"]){if(elemProps[key]&&typeof elemProps[key]===\"object\"){// Check if props has more children, if so get first one\nconst childrenProps=Array.isArray(elemProps[key])?elemProps[key][0]:elemProps[key];// Recursively search for the target type within the nested object\nconst result=getPropertiesByTag(childrenProps,elementTag);if(result){return result;}}}// Not found in current object or its children/props\nreturn null;};\nexport const __FramerMetadata__ = {\"exports\":{\"getPropertiesByTag\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Utilities\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Utilities.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{getPropertiesByTag}from\"https://framer.com/m/Utilities-LgUQ.js@YgTH7d8XoflBisXAiR7m\";const useStore=createStore({titles:[],chagedLink:false,className:\"\",pTagStyle:{},pTagClass:\"\",aTagClass:\"\"});function getSecondPart(str){return str.split(\"/\")[1];}export function getLinks(Component){return props=>{const[boolean,setBoolean]=useState(false);const[store,setStore]=useStore();const Link=useRef(null);useEffect(()=>{setBoolean(window.location.href.includes(props.link));setStore({chagedLink:true});},[]);props.className+=\" sidebar-link\";return /*#__PURE__*/_jsx(Component,{...props,variant:boolean?\"Select\":\"Default\",ref:Link});};}export function getTitles(Component){return props=>{const[store,setStore]=useStore();useEffect(()=>{var html=document.querySelector(\"html\");html.style.scrollBehavior=\"smooth\";var content=document.getElementById(\"content-data\");if(!content){return;}const ptagProps=getPropertiesByTag(props,\"p\");const atagProps=getPropertiesByTag(ptagProps||{},\"a\");var headings=content.querySelectorAll(\"h2\");var headingsArray=[];for(let i=0;i<headings.length;i++){const element=headings[i];element.style.position=\"relative\";element.insertAdjacentHTML(\"beforeend\",`<span id=\"title-${i}\" style=\"position: absolute; top:-144px;\"></span>`);headingsArray.push(element.innerText.replace(/(\\r\\n|\\n|\\r)/gm,\"\"));}setStore({titles:headingsArray,pTagStyle:ptagProps?.props?.style||{},pTagClass:ptagProps?.props?.className||\"\",aTagClass:atagProps?.props?.className||\"\"});},[]);const divStyles={display:\"flex\",flexDirection:\"column\",gap:\"12px\"};return /*#__PURE__*/_jsx(\"div\",{style:divStyles,children:Array.isArray(store.titles)?store.titles.map((element,i)=>{return element&&/*#__PURE__*/_jsx(\"p\",{className:`framer-text ${store.pTagClass}`,style:store.pTagStyle,children:/*#__PURE__*/_jsx(\"a\",{href:\"#title-\"+i,className:`framer-text ${store.aTagClass}`,children:element},i)});}):null});};}export function setActiveStateFromLink(Component){return props=>{const card=useRef(null);const[boolean,setBoolean]=useState(false);useEffect(()=>{var cardHref=card.current?.getAttribute(\"href\");if(!cardHref)return;setBoolean(String(window.location.href).includes(getSecondPart(String(cardHref))));},[]);props.className+=\" collection-card\";return /*#__PURE__*/_jsx(Component,{...props,ref:card,variant:boolean?\"Select\":\"Default\"});};}export function SearchShortcutKey(Component){function handleKeyDown(event){var e=event;console.log(e);console.log(e.keyCode);console.log(e.metaKey);console.log(e.key);if(e.keyCode===75&&e.altKey||// (e.keyCode === 75 && e.ctrlKey) ||\ne.keyCode===75&&e.metaKey){console.log(\"search\");var input=document.querySelector(\".search-input button\");console.log(input);input.click();}}return props=>{useEffect(()=>{document.addEventListener(\"keydown\",handleKeyDown);var input=document.querySelector(\".search-input\");console.log(input);console.log(\"useeffect\");},[]);props.className+=\" search-input\";return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"getTitles\":{\"type\":\"reactHoc\",\"name\":\"getTitles\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getLinks\":{\"type\":\"reactHoc\",\"name\":\"getLinks\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"setActiveStateFromLink\":{\"type\":\"reactHoc\",\"name\":\"setActiveStateFromLink\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchShortcutKey\":{\"type\":\"reactHoc\",\"name\":\"SearchShortcutKey\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Function.map", "// Generated by Framer (f712822)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Newfoundation Whyte Light\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Newfoundation Whyte Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/NgS2iaDWka6PlVW6341fKSZhBUg.woff2\"}]}];export const css=['.framer-ca8zJ .framer-styles-preset-k4rii9:not(.rich-text-wrapper), .framer-ca8zJ .framer-styles-preset-k4rii9.rich-text-wrapper p { --framer-font-family: \"Newfoundation Whyte Light\", \"Newfoundation Whyte Light Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.5px; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-8b79b4a0-48c1-4db5-bf1c-888cafce226b, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }'];export const className=\"framer-ca8zJ\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f712822)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/bD5Xv6RWClU2UC6KBnsg/Mcz3YV9lWmFgymuIFlRx/CrehRAC0M.js\";const enabledGestures={BP5FIanog:{hover:true},lu7y2za0a:{hover:true}};const cycleOrder=[\"BP5FIanog\",\"lu7y2za0a\"];const serializationHash=\"framer-5x1ae\";const variantClassNames={BP5FIanog:\"framer-v-1gszye0\",lu7y2za0a:\"framer-v-h9gcqb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"BP5FIanog\",Expanded:\"lu7y2za0a\"};const getProps=({height,id,tap,title,width,...props})=>{return{...props,omoId7Z1Z:title??props.omoId7Z1Z??\"Getting started\",qq88ZB8kZ:tap??props.qq88ZB8kZ,variant:humanReadableVariantMap[props.variant]??props.variant??\"BP5FIanog\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,qq88ZB8kZ,omoId7Z1Z,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BP5FIanog\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1gkwcf3=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(qq88ZB8kZ){const res=await qq88ZB8kZ(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1gszye0\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BP5FIanog\",onTap:onTap1gkwcf3,ref:refBinding,style:{...style},...addPropertyOverrides({\"BP5FIanog-hover\":{\"data-framer-name\":undefined},\"lu7y2za0a-hover\":{\"data-framer-name\":undefined},lu7y2za0a:{\"data-framer-name\":\"Expanded\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-k4rii9\",\"data-styles-preset\":\"CrehRAC0M\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Getting started\"})})}),className:\"framer-9xpyxx\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"C1G6tk07o\",style:{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\"},text:omoId7Z1Z,variants:{\"BP5FIanog-hover\":{\"--extracted-r6o4lv\":\"var(--token-fe9ded06-f608-4919-9137-825f8ed57e50, rgb(125, 125, 125))\"},\"lu7y2za0a-hover\":{\"--extracted-r6o4lv\":\"var(--token-fe9ded06-f608-4919-9137-825f8ed57e50, rgb(125, 125, 125))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"BP5FIanog-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-k4rii9\",\"data-styles-preset\":\"CrehRAC0M\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe9ded06-f608-4919-9137-825f8ed57e50, rgb(125, 125, 125)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Getting started\"})})})},\"lu7y2za0a-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-k4rii9\",\"data-styles-preset\":\"CrehRAC0M\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe9ded06-f608-4919-9137-825f8ed57e50, rgb(125, 125, 125)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Getting started\"})})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5x1ae.framer-iz3fik, .framer-5x1ae .framer-iz3fik { display: block; }\",\".framer-5x1ae.framer-1gszye0 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 26px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 248px; }\",\".framer-5x1ae .framer-9xpyxx { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5x1ae.framer-1gszye0 { gap: 0px; } .framer-5x1ae.framer-1gszye0 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-5x1ae.framer-1gszye0 > :first-child { margin-left: 0px; } .framer-5x1ae.framer-1gszye0 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 248\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"lu7y2za0a\":{\"layout\":[\"fixed\",\"fixed\"]},\"FXIdHY8Wm\":{\"layout\":[\"fixed\",\"fixed\"]},\"wvlJu8TvS\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"qq88ZB8kZ\":\"tap\",\"omoId7Z1Z\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramernJCVL_Ff9=withCSS(Component,css,\"framer-5x1ae\");export default FramernJCVL_Ff9;FramernJCVL_Ff9.displayName=\"Category Elements/dropdown item\";FramernJCVL_Ff9.defaultProps={height:26,width:248};addPropertyControls(FramernJCVL_Ff9,{variant:{options:[\"BP5FIanog\",\"lu7y2za0a\"],optionTitles:[\"Default\",\"Expanded\"],title:\"Variant\",type:ControlType.Enum},qq88ZB8kZ:{title:\"Tap\",type:ControlType.EventHandler},omoId7Z1Z:{defaultValue:\"Getting started\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramernJCVL_Ff9,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernJCVL_Ff9\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"26\",\"framerIntrinsicWidth\":\"248\",\"framerVariables\":\"{\\\"qq88ZB8kZ\\\":\\\"tap\\\",\\\"omoId7Z1Z\\\":\\\"title\\\"}\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lu7y2za0a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FXIdHY8Wm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wvlJu8TvS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nJCVL_Ff9.map", "// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/dhWWPcNFIBRq3gIhLmFq/mMPOQZL67cCqZbLHV0aV/x75Wn93es.js\";import LabelsAPILabel from\"https://framerusercontent.com/modules/SbtoWXvdHBpabimJzLfb/Ov3vxejbLonYEDAiGtlk/mZ1fGCcxK.js\";const LabelsAPILabelFonts=getFonts(LabelsAPILabel);const LabelsAPILabelControls=getPropertyControls(LabelsAPILabel);const enabledGestures={wWurg1H0v:{hover:true,pressed:true}};const cycleOrder=[\"wWurg1H0v\",\"RLfidoDu4\"];const serializationHash=\"framer-LtoKs\";const variantClassNames={RLfidoDu4:\"framer-v-m3vsp7\",wWurg1H0v:\"framer-v-jbtq1x\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={DELETE:\"zlWNcvTZv\",GET:\"T027oSI8j\",POST:\"cou2BynQI\",PUT:\"F2ftvEFWq\"};const humanReadableVariantMap={Default:\"wWurg1H0v\",Select:\"RLfidoDu4\"};const getProps=({aPILabel,articleTitle,height,id,link,showAPILabel,width,...props})=>{return{...props,RJFIyUX9B:humanReadableEnumMap[aPILabel]??aPILabel??props.RJFIyUX9B??\"T027oSI8j\",sl_Nty65I:showAPILabel??props.sl_Nty65I,SQkWO8lSl:articleTitle??props.SQkWO8lSl??\"Category\",variant:humanReadableVariantMap[props.variant]??props.variant??\"wWurg1H0v\",Xc11fA1IZ:link??props.Xc11fA1IZ};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,SQkWO8lSl,Xc11fA1IZ,sl_Nty65I,RJFIyUX9B,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wWurg1H0v\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:Xc11fA1IZ,motionChild:true,nodeId:\"wWurg1H0v\",scopeId:\"usu8jeJ0w\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-jbtq1x\",className,classNames)} framer-ni1935`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"wWurg1H0v\",ref:refBinding,style:{...style},...addPropertyOverrides({\"wWurg1H0v-hover\":{\"data-framer-name\":undefined},\"wWurg1H0v-pressed\":{\"data-framer-name\":undefined},RLfidoDu4:{\"data-framer-name\":\"Select\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-eir95s\",layoutDependency:layoutDependency,layoutId:\"htQjwUqlK\",style:{backgroundColor:\"var(--token-27871916-ce5c-4bcb-8c42-24334299f0b3, rgb(230, 230, 230))\",opacity:0},variants:{\"wWurg1H0v-hover\":{backgroundColor:\"var(--token-492246bc-541d-4174-a090-7ec4ac97510b, rgb(3, 3, 3))\",opacity:1},\"wWurg1H0v-pressed\":{backgroundColor:\"var(--token-492246bc-541d-4174-a090-7ec4ac97510b, rgb(3, 3, 3))\",opacity:.5},RLfidoDu4:{backgroundColor:\"var(--token-8b79b4a0-48c1-4db5-bf1c-888cafce226b, rgb(0, 0, 0))\",opacity:1}}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy9hwc\",\"data-styles-preset\":\"x75Wn93es\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 0, 0))\"},children:\"Category\"})}),className:\"framer-1yapf67\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"y3F91Mz2D\",style:{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\"},text:SQkWO8lSl,variants:{RLfidoDu4:{\"--extracted-r6o4lv\":\"var(--token-8b79b4a0-48c1-4db5-bf1c-888cafce226b, rgb(0, 0, 0))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({RLfidoDu4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy9hwc\",\"data-styles-preset\":\"x75Wn93es\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8b79b4a0-48c1-4db5-bf1c-888cafce226b, rgb(0, 0, 0)))\"},children:\"Category\"})})}},baseVariant,gestureVariant)}),sl_Nty65I&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+(0+((componentViewport?.height||34)-0-24)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11ylo0h-container\",layoutDependency:layoutDependency,layoutId:\"PGIkYt19I-container\",nodeId:\"PGIkYt19I\",rendersWithMotion:true,scopeId:\"usu8jeJ0w\",children:/*#__PURE__*/_jsx(LabelsAPILabel,{height:\"100%\",id:\"PGIkYt19I\",layoutId:\"PGIkYt19I\",style:{height:\"100%\"},variant:RJFIyUX9B,width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LtoKs.framer-ni1935, .framer-LtoKs .framer-ni1935 { display: block; }\",\".framer-LtoKs.framer-jbtq1x { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 34px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 260px; }\",\".framer-LtoKs .framer-eir95s { flex: none; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-LtoKs .framer-1yapf67 { flex: 1 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-LtoKs .framer-11ylo0h-container { flex: none; height: 24px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LtoKs.framer-jbtq1x { gap: 0px; } .framer-LtoKs.framer-jbtq1x > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-LtoKs.framer-jbtq1x > :first-child { margin-left: 0px; } .framer-LtoKs.framer-jbtq1x > :last-child { margin-right: 0px; } }\",\".framer-LtoKs.framer-v-m3vsp7.framer-jbtq1x { cursor: unset; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 34\n * @framerIntrinsicWidth 260\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"RLfidoDu4\":{\"layout\":[\"fixed\",\"fixed\"]},\"ljcBSMv9P\":{\"layout\":[\"fixed\",\"fixed\"]},\"rnUaNGrnn\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"SQkWO8lSl\":\"articleTitle\",\"Xc11fA1IZ\":\"link\",\"sl_Nty65I\":\"showAPILabel\",\"RJFIyUX9B\":\"aPILabel\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerusu8jeJ0w=withCSS(Component,css,\"framer-LtoKs\");export default Framerusu8jeJ0w;Framerusu8jeJ0w.displayName=\"Article/Docs text link\";Framerusu8jeJ0w.defaultProps={height:34,width:260};addPropertyControls(Framerusu8jeJ0w,{variant:{options:[\"wWurg1H0v\",\"RLfidoDu4\"],optionTitles:[\"Default\",\"Select\"],title:\"Variant\",type:ControlType.Enum},SQkWO8lSl:{defaultValue:\"Category\",displayTextArea:false,title:\"Article title\",type:ControlType.String},Xc11fA1IZ:{title:\"Link\",type:ControlType.Link},sl_Nty65I:{defaultValue:false,title:\"Show API Label\",type:ControlType.Boolean},RJFIyUX9B:LabelsAPILabelControls?.[\"variant\"]&&{...LabelsAPILabelControls[\"variant\"],defaultValue:\"T027oSI8j\",description:undefined,hidden:undefined,title:\"API Label\"}});addFonts(Framerusu8jeJ0w,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...LabelsAPILabelFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerusu8jeJ0w\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"SQkWO8lSl\\\":\\\"articleTitle\\\",\\\"Xc11fA1IZ\\\":\\\"link\\\",\\\"sl_Nty65I\\\":\\\"showAPILabel\\\",\\\"RJFIyUX9B\\\":\\\"aPILabel\\\"}\",\"framerIntrinsicWidth\":\"260\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"34\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RLfidoDu4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ljcBSMv9P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rnUaNGrnn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./usu8jeJ0w.map", "// Generated by Framer (f712822)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Newfoundation Whyte Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Newfoundation Whyte Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/KwFkn4E25MbXTiSmIyLpKj8yGo.woff2\"}]}];export const css=['.framer-AAz4p .framer-styles-preset-vy9hwc:not(.rich-text-wrapper), .framer-AAz4p .framer-styles-preset-vy9hwc.rich-text-wrapper p { --framer-font-family: \"Newfoundation Whyte Regular\", \"Newfoundation Whyte Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.5px; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-8b79b4a0-48c1-4db5-bf1c-888cafce226b, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }'];export const className=\"framer-AAz4p\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Black.cyrillic-ext-TU4ITVTR.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Black.cyrillic-JX7CGTYD.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Black.greek-ext-LS3GCBFI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Black.greek-ZWCJHBP5.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Black.latin-ext-BZLEUMX6.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Black.latin-TETRYDF7.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Black.vietnamese-RXQCC3EJ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BlackItalic.cyrillic-ext-TRM4ITYR.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BlackItalic.cyrillic-FPHIQVZS.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.greek-ext-JTGUUSP5.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.greek-LUNA3RFO.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.latin-ext-KU7ICFYH.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-BlackItalic.latin-FRVXWQSB.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-BlackItalic.vietnamese-2Q7MQKJX.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"}]}];export const css=['.framer-7A8jn .framer-styles-preset-cjni8h:not(.rich-text-wrapper), .framer-7A8jn .framer-styles-preset-cjni8h.rich-text-wrapper h6 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 10px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-4f1b2443-eb53-467e-851c-61f9c0769c20, #141414); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-7A8jn\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1f5f6d9)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/erbTL059jG27MyRNjF9q/7TDqGjOB6yuJjm951ZMT/DmT4e9mUt.js\";const cycleOrder=[\"T027oSI8j\",\"cou2BynQI\",\"zlWNcvTZv\",\"F2ftvEFWq\"];const serializationHash=\"framer-70kzg\";const variantClassNames={cou2BynQI:\"framer-v-1d30lo1\",F2ftvEFWq:\"framer-v-12di09p\",T027oSI8j:\"framer-v-15uomgu\",zlWNcvTZv:\"framer-v-12rwtca\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={DELETE:\"zlWNcvTZv\",GET:\"T027oSI8j\",POST:\"cou2BynQI\",PUT:\"F2ftvEFWq\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"T027oSI8j\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"T027oSI8j\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-15uomgu\",className,classNames),\"data-framer-name\":\"GET\",layoutDependency:layoutDependency,layoutId:\"T027oSI8j\",ref:refBinding,style:{backgroundColor:\"rgba(30, 204, 54, 0.1)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},variants:{cou2BynQI:{backgroundColor:\"var(--token-dfcc5577-0e98-4f09-89e1-62bbedf518fc, rgba(82, 116, 255, 0.1))\"},F2ftvEFWq:{backgroundColor:\"rgba(255, 82, 226, 0.1)\"},zlWNcvTZv:{backgroundColor:\"rgba(255, 82, 82, 0.1)\"}},...addPropertyOverrides({cou2BynQI:{\"data-framer-name\":\"POST\"},F2ftvEFWq:{\"data-framer-name\":\"PUT\"},zlWNcvTZv:{\"data-framer-name\":\"DELETE\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-cjni8h\",\"data-styles-preset\":\"DmT4e9mUt\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-9c55d78a-df37-4408-bb20-36f3970c2b02, rgb(30, 204, 54)))\"},children:\"GET\"})}),className:\"framer-kxzbu7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"G_QGgQHbP\",style:{\"--extracted-1w1cjl5\":\"var(--token-9c55d78a-df37-4408-bb20-36f3970c2b02, rgb(30, 204, 54))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{cou2BynQI:{\"--extracted-1w1cjl5\":\"var(--token-e786d274-1fd4-44b2-8bb2-53d1a18b7911, rgb(82, 116, 255))\"},F2ftvEFWq:{\"--extracted-1w1cjl5\":\"var(--token-813fe3f3-fb20-43c4-9968-422ad2ea0aa2, rgb(255, 82, 226))\"},zlWNcvTZv:{\"--extracted-1w1cjl5\":\"var(--token-b7ecdca4-08d1-4ac9-b2c9-2e0da8c43fb4, rgb(255, 82, 82))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cou2BynQI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-cjni8h\",\"data-styles-preset\":\"DmT4e9mUt\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-e786d274-1fd4-44b2-8bb2-53d1a18b7911, rgb(82, 116, 255)))\"},children:\"POST\"})})},F2ftvEFWq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-cjni8h\",\"data-styles-preset\":\"DmT4e9mUt\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-813fe3f3-fb20-43c4-9968-422ad2ea0aa2, rgb(255, 82, 226)))\"},children:\"PUT\"})})},zlWNcvTZv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-cjni8h\",\"data-styles-preset\":\"DmT4e9mUt\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-b7ecdca4-08d1-4ac9-b2c9-2e0da8c43fb4, rgb(255, 82, 82)))\"},children:\"DELETE\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-70kzg.framer-1dh9atq, .framer-70kzg .framer-1dh9atq { display: block; }\",\".framer-70kzg.framer-15uomgu { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 2px 8px 2px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-70kzg .framer-kxzbu7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-70kzg.framer-15uomgu { gap: 0px; } .framer-70kzg.framer-15uomgu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-70kzg.framer-15uomgu > :first-child { margin-left: 0px; } .framer-70kzg.framer-15uomgu > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 18\n * @framerIntrinsicWidth 36\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"cou2BynQI\":{\"layout\":[\"auto\",\"auto\"]},\"zlWNcvTZv\":{\"layout\":[\"auto\",\"auto\"]},\"F2ftvEFWq\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermZ1fGCcxK=withCSS(Component,css,\"framer-70kzg\");export default FramermZ1fGCcxK;FramermZ1fGCcxK.displayName=\"Labels/API Label\";FramermZ1fGCcxK.defaultProps={height:18,width:36};addPropertyControls(FramermZ1fGCcxK,{variant:{options:[\"T027oSI8j\",\"cou2BynQI\",\"zlWNcvTZv\",\"F2ftvEFWq\"],optionTitles:[\"GET\",\"POST\",\"DELETE\",\"PUT\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramermZ1fGCcxK,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermZ1fGCcxK\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cou2BynQI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zlWNcvTZv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"F2ftvEFWq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"36\",\"framerIntrinsicHeight\":\"18\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mZ1fGCcxK.map", "// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,PathVariablesContext,ResolveLinks,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{setActiveStateFromLink}from\"https://framerusercontent.com/modules/iAkmv2PjmexdC4trjpTE/GJ8Hi1r34gFMIjLQd90G/Function.js\";import Content from\"https://framerusercontent.com/modules/gWbLyMrp6tzIDlTARwtx/8vwtf9ge7Wz1BgnGfmZB/f_LSaNYPz.js\";import CategoryElementsDropdownItem from\"https://framerusercontent.com/modules/62ns0YKMthc3YpQhuJ58/UTTIQ842khDGCA6mJDki/nJCVL_Ff9.js\";import ArticleDocsTextLink,*as ArticleDocsTextLinkInfo from\"https://framerusercontent.com/modules/u4waOvOjVK2tlDOWAyXj/HWWOCUOj3B9nubItdnKB/usu8jeJ0w.js\";const CategoryElementsDropdownItemFonts=getFonts(CategoryElementsDropdownItem);const ArticleDocsTextLinkFonts=getFonts(ArticleDocsTextLink);const ArticleDocsTextLinkSetActiveStateFromLinki15emWithMappedReactProps1qc5lf5=withMappedReactProps(withCodeBoundaryForOverrides(ArticleDocsTextLink,{nodeId:\"MZk8aqPXr\",override:setActiveStateFromLink,scopeId:\"UUgPNqE65\"}),ArticleDocsTextLinkInfo);const ContentControls=getPropertyControls(Content);const cycleOrder=[\"NJEP2xtCH\",\"FVGFwFbjC\"];const serializationHash=\"framer-BxORT\";const variantClassNames={FVGFwFbjC:\"framer-v-16spgc5\",NJEP2xtCH:\"framer-v-5u3inl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,0,1],type:\"tween\"};const transition2={delay:.1,duration:.3,ease:[.44,0,0,1],type:\"tween\"};const transition3={delay:0,duration:.2,ease:[.44,0,0,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const query=(prequery,{YBF2TxADH})=>prequery({from:{alias:\"MqTri1RP2\",data:Content,type:\"Collection\"},orderBy:[{collection:\"MqTri1RP2\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"MqTri1RP2\",name:\"F31R8O6nz\",type:\"Identifier\"},{collection:\"MqTri1RP2\",name:\"vf7a9j703\",type:\"Identifier\"},{collection:\"MqTri1RP2\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"MqTri1RP2\",name:\"rfDsRhImx\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:YBF2TxADH},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"MINE NEWCOIN\":\"Fm_qmSIm0\",RESEARCH:\"uLsScAEMJ\",Support:\"DZBZZifoL\",SYSTEM:\"b_Yy732CW\",VISION:\"z0SHVqUQP\",VISIONX:\"benpzbH_K\"};const humanReadableVariantMap={Default:\"NJEP2xtCH\",Expanded:\"FVGFwFbjC\"};const getProps=({catFilter,height,id,title,width,...props})=>{return{...props,ha0u8ZU_J:title??props.ha0u8ZU_J??\"Getting started\",variant:humanReadableVariantMap[props.variant]??props.variant??\"NJEP2xtCH\",YBF2TxADH:humanReadableEnumMap[catFilter]??catFilter??props.YBF2TxADH??\"z0SHVqUQP\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ha0u8ZU_J,YBF2TxADH,F31R8O6nzMqTri1RP2,vf7a9j703MqTri1RP2,idMqTri1RP2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NJEP2xtCH\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const qq88ZB8kZ27obta=activeVariantCallback(async(...args)=>{setVariant(\"FVGFwFbjC\");});const qq88ZB8kZqfzq8q=activeVariantCallback(async(...args)=>{setVariant(\"NJEP2xtCH\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-5u3inl\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"NJEP2xtCH\",ref:refBinding,style:{...style},...addPropertyOverrides({FVGFwFbjC:{\"data-framer-name\":\"Expanded\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||26)-0-26)/2+0+0),...addPropertyOverrides({FVGFwFbjC:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||134)-0-66)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qcud81-container\",layoutDependency:layoutDependency,layoutId:\"uLksHZ1PI-container\",nodeId:\"uLksHZ1PI\",rendersWithMotion:true,scopeId:\"UUgPNqE65\",children:/*#__PURE__*/_jsx(CategoryElementsDropdownItem,{height:\"100%\",id:\"uLksHZ1PI\",layoutId:\"uLksHZ1PI\",omoId7Z1Z:ha0u8ZU_J,qq88ZB8kZ:qq88ZB8kZ27obta,style:{height:\"100%\",width:\"100%\"},variant:\"BP5FIanog\",width:\"100%\",...addPropertyOverrides({FVGFwFbjC:{qq88ZB8kZ:qq88ZB8kZqfzq8q,variant:\"lu7y2za0a\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(motion.nav,{className:\"framer-1xr9mqd\",layoutDependency:layoutDependency,layoutId:\"MqTri1RP2\",style:{opacity:0},variants:{FVGFwFbjC:{opacity:1}},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"MqTri1RP2\",data:Content,type:\"Collection\"},orderBy:[{collection:\"MqTri1RP2\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"MqTri1RP2\",name:\"F31R8O6nz\",type:\"Identifier\"},{collection:\"MqTri1RP2\",name:\"vf7a9j703\",type:\"Identifier\"},{collection:\"MqTri1RP2\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"MqTri1RP2\",name:\"rfDsRhImx\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:YBF2TxADH},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({F31R8O6nz:F31R8O6nzMqTri1RP2,id:idMqTri1RP2,vf7a9j703:vf7a9j703MqTri1RP2},index)=>{F31R8O6nzMqTri1RP2??=\"\";vf7a9j703MqTri1RP2??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`MqTri1RP2-${idMqTri1RP2}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{vf7a9j703:vf7a9j703MqTri1RP2},children:/*#__PURE__*/_jsx(Transition,{value:transition3,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{vf7a9j703:vf7a9j703MqTri1RP2},webPageId:\"RnwJm4tS0\"},implicitPathVariables:undefined},{href:{pathVariables:{vf7a9j703:vf7a9j703MqTri1RP2},webPageId:\"RnwJm4tS0\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,width:\"248px\",y:(componentViewport?.y||0)+22+0+0,...addPropertyOverrides({FVGFwFbjC:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||134)-0-66)/2+26+6)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i15em-container\",layoutDependency:layoutDependency,layoutId:\"MZk8aqPXr-container\",nodeId:\"MZk8aqPXr\",rendersWithMotion:true,scopeId:\"UUgPNqE65\",children:/*#__PURE__*/_jsx(ArticleDocsTextLinkSetActiveStateFromLinki15emWithMappedReactProps1qc5lf5,{height:\"100%\",id:\"MZk8aqPXr\",layoutId:\"MZk8aqPXr\",RJFIyUX9B:\"T027oSI8j\",sl_Nty65I:false,SQkWO8lSl:F31R8O6nzMqTri1RP2,style:{width:\"100%\"},variant:\"wWurg1H0v\",width:\"100%\",Xc11fA1IZ:resolvedLinks[0],...addPropertyOverrides({FVGFwFbjC:{Xc11fA1IZ:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})})})},idMqTri1RP2);})})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BxORT.framer-rpb2kl, .framer-BxORT .framer-rpb2kl { display: block; }\",\".framer-BxORT.framer-5u3inl { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 248px; }\",\".framer-BxORT .framer-1qcud81-container { flex: none; height: 26px; position: relative; width: 100%; z-index: 2; }\",\".framer-BxORT .framer-1xr9mqd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 0px; max-width: 100%; padding: 0px; position: absolute; right: 0px; top: 22px; z-index: 1; }\",\".framer-BxORT .framer-i15em-container { flex: none; height: auto; position: relative; width: 248px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BxORT.framer-5u3inl, .framer-BxORT .framer-1xr9mqd { gap: 0px; } .framer-BxORT.framer-5u3inl > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-BxORT.framer-5u3inl > :first-child, .framer-BxORT .framer-1xr9mqd > :first-child { margin-top: 0px; } .framer-BxORT.framer-5u3inl > :last-child, .framer-BxORT .framer-1xr9mqd > :last-child { margin-bottom: 0px; } .framer-BxORT .framer-1xr9mqd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-BxORT.framer-v-16spgc5.framer-5u3inl { gap: 6px; overflow: visible; }\",\".framer-BxORT.framer-v-16spgc5 .framer-1xr9mqd { left: unset; position: relative; right: unset; top: unset; width: 248px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BxORT.framer-v-16spgc5.framer-5u3inl { gap: 0px; } .framer-BxORT.framer-v-16spgc5.framer-5u3inl > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-BxORT.framer-v-16spgc5.framer-5u3inl > :first-child { margin-top: 0px; } .framer-BxORT.framer-v-16spgc5.framer-5u3inl > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 248\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FVGFwFbjC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ha0u8ZU_J\":\"title\",\"YBF2TxADH\":\"catFilter\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerUUgPNqE65=withCSS(Component,css,\"framer-BxORT\");export default FramerUUgPNqE65;FramerUUgPNqE65.displayName=\"Article/Docs dropdown\";FramerUUgPNqE65.defaultProps={height:26,width:248};addPropertyControls(FramerUUgPNqE65,{variant:{options:[\"NJEP2xtCH\",\"FVGFwFbjC\"],optionTitles:[\"Default\",\"Expanded\"],title:\"Variant\",type:ControlType.Enum},ha0u8ZU_J:{defaultValue:\"Getting started\",displayTextArea:false,title:\"Title\",type:ControlType.String},YBF2TxADH:ContentControls?.[\"rfDsRhImx\"]&&{...ContentControls[\"rfDsRhImx\"],defaultValue:\"z0SHVqUQP\",description:undefined,hidden:undefined,title:\"Cat Filter\"}});addFonts(FramerUUgPNqE65,[{explicitInter:true,fonts:[]},...CategoryElementsDropdownItemFonts,...ArticleDocsTextLinkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUUgPNqE65\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FVGFwFbjC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"26\",\"framerIntrinsicWidth\":\"248\",\"framerVariables\":\"{\\\"ha0u8ZU_J\\\":\\\"title\\\",\\\"YBF2TxADH\\\":\\\"catFilter\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/bD5Xv6RWClU2UC6KBnsg/Mcz3YV9lWmFgymuIFlRx/CrehRAC0M.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/u160wCNA75Ac1girSfCp/snkbYZ4IBje6ZFdMLEn5/ro7OPezbn.js\";import ArticleDocsDropdown from\"https://framerusercontent.com/modules/777rzbTunVnbFPMWw4mR/XjJeqVPvfqI9UPxFFnOx/UUgPNqE65.js\";const ArticleDocsDropdownFonts=getFonts(ArticleDocsDropdown);const ArticleDocsDropdownControls=getPropertyControls(ArticleDocsDropdown);const cycleOrder=[\"LxLQBDyq2\",\"Cox5Ed3yI\"];const serializationHash=\"framer-L5jyy\";const variantClassNames={Cox5Ed3yI:\"framer-v-9i7wga\",LxLQBDyq2:\"framer-v-f58f3n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Default:\"NJEP2xtCH\",Expanded:\"FVGFwFbjC\"};const humanReadableVariantMap={Desktop:\"LxLQBDyq2\",Mobile:\"Cox5Ed3yI\"};const getProps=({height,id,vrRESEARCH,vrSYSTEM,vrVISION,width,...props})=>{return{...props,eM3V5_gDO:humanReadableEnumMap[vrRESEARCH]??vrRESEARCH??props.eM3V5_gDO??\"NJEP2xtCH\",h1u_xrIka:humanReadableEnumMap[vrVISION]??vrVISION??props.h1u_xrIka??\"NJEP2xtCH\",nL19hf2ZW:humanReadableEnumMap[vrSYSTEM]??vrSYSTEM??props.nL19hf2ZW??\"NJEP2xtCH\",variant:humanReadableVariantMap[props.variant]??props.variant??\"LxLQBDyq2\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,h1u_xrIka,nL19hf2ZW,eM3V5_gDO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LxLQBDyq2\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap27obta=activeVariantCallback(async(...args)=>{setVariant(\"FVGFwFbjC\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.aside,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-f58f3n\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"LxLQBDyq2\",ref:refBinding,style:{...style},...addPropertyOverrides({Cox5Ed3yI:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jxz28s\",layoutDependency:layoutDependency,layoutId:\"eQCMLoFGL\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"n4hr6IkbQ\"},motionChild:true,nodeId:\"pfEM4oUEV\",scopeId:\"etjHfn2IQ\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-18axsqf framer-necwz8\",\"data-framer-name\":\"Group_7332\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"pfEM4oUEV\",opacity:1,style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 19\"><path d=\"M 19.226 17.899 C 22.673 10.486 20.671 3.412 19.212 0.756 L 18.357 1.222 C 19.708 3.668 21.635 10.419 18.343 17.487 L 19.226 17.898 Z M 8.829 0.791 C 5.381 8.203 7.383 15.278 8.842 17.927 L 9.698 17.461 C 8.347 15.015 6.419 8.264 9.711 1.196 Z\" fill=\"var(--token-492246bc-541d-4174-a090-7ec4ac97510b, rgb(3, 3, 3)) /* {&quot;name&quot;:&quot;neutral/1000&quot;} */\"></path><path d=\"M 24.06 15.742 C 15.019 9.836 6.71 13.283 3.519 15.769 L 4.198 16.635 C 7.138 14.344 14.923 11.087 23.455 16.661 L 24.059 15.742 Z M 3.536 3.116 C 12.591 9.663 20.927 5.839 24.124 3.09 L 23.404 2.258 C 20.465 4.792 12.706 8.38 4.188 2.23 L 3.535 3.116 Z\" fill=\"var(--token-492246bc-541d-4174-a090-7ec4ac97510b, rgb(3, 3, 3)) /* {&quot;name&quot;:&quot;neutral/1000&quot;} */\"></path><path d=\"M 14.525 17.892 L 13.425 17.892 L 13.425 0.992 L 14.525 0.992 Z\" fill=\"var(--token-492246bc-541d-4174-a090-7ec4ac97510b, rgb(3, 3, 3)) /* {&quot;name&quot;:&quot;neutral/1000&quot;} */\"></path><path d=\"M 9.041 17.344 C 4.657 17.344 1.106 13.809 1.106 9.445 C 1.106 5.079 4.657 1.545 9.042 1.545 L 18.959 1.545 C 23.343 1.545 26.893 5.08 26.893 9.445 C 26.893 13.81 23.343 17.344 18.959 17.344 Z M 0 9.438 C 0 14.411 4.046 18.439 9.041 18.439 L 18.959 18.439 C 23.948 18.439 28 14.411 28 9.438 C 28 4.465 23.955 0.438 18.959 0.438 L 9.041 0.438 C 4.045 0.445 0 4.471 0 9.438 Z\" fill=\"var(--token-492246bc-541d-4174-a090-7ec4ac97510b, rgb(3, 3, 3)) /* {&quot;name&quot;:&quot;neutral/1000&quot;} */\"></path><path d=\"M 27.274 9.992 L 0.68 9.992 L 0.68 8.897 L 27.275 8.897 L 27.275 9.992 Z\" fill=\"var(--token-492246bc-541d-4174-a090-7ec4ac97510b, rgb(3, 3, 3)) /* {&quot;name&quot;:&quot;neutral/1000&quot;} */\"></path></svg>',svgContentId:8794548432,withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:13,width:\"248px\",y:(componentViewport?.y||0)+0+86,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-123924y-container\",layoutDependency:layoutDependency,layoutId:\"FeWA0zoX8-container\",nodeId:\"FeWA0zoX8\",rendersWithMotion:true,scopeId:\"etjHfn2IQ\",children:/*#__PURE__*/_jsx(ArticleDocsDropdown,{ha0u8ZU_J:\"VISION\",height:\"100%\",id:\"FeWA0zoX8\",layoutId:\"FeWA0zoX8\",style:{width:\"100%\"},variant:h1u_xrIka,width:\"100%\",YBF2TxADH:\"z0SHVqUQP\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:13,width:\"248px\",y:(componentViewport?.y||0)+0+116,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3zujhu-container\",layoutDependency:layoutDependency,layoutId:\"rACUMBjqO-container\",nodeId:\"rACUMBjqO\",rendersWithMotion:true,scopeId:\"etjHfn2IQ\",children:/*#__PURE__*/_jsx(ArticleDocsDropdown,{ha0u8ZU_J:\"SYSTEM\",height:\"100%\",id:\"rACUMBjqO\",layoutId:\"rACUMBjqO\",style:{width:\"100%\"},variant:nL19hf2ZW,width:\"100%\",YBF2TxADH:\"b_Yy732CW\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:13,width:\"248px\",y:(componentViewport?.y||0)+0+146,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14uh8jv-container\",layoutDependency:layoutDependency,layoutId:\"OL6gt1_bX-container\",nodeId:\"OL6gt1_bX\",rendersWithMotion:true,scopeId:\"etjHfn2IQ\",children:/*#__PURE__*/_jsx(ArticleDocsDropdown,{ha0u8ZU_J:\"RESEARCH\",height:\"100%\",id:\"OL6gt1_bX\",layoutId:\"OL6gt1_bX\",style:{width:\"100%\"},variant:eM3V5_gDO,width:\"100%\",YBF2TxADH:\"uLsScAEMJ\"})})}),/*#__PURE__*/_jsx(motion.button,{className:\"framer-e0nfea\",\"data-framer-name\":\"Article/Docs dropdown\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"KX7rKoJ0i\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vw5axi\",\"data-framer-name\":\"Category Elements/dropdown item\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"eliTE5brz\",onTap:onTap27obta,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-k4rii9\",\"data-styles-preset\":\"CrehRAC0M\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-492246bc-541d-4174-a090-7ec4ac97510b, rgb(3, 3, 3)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{vf7a9j703:\"mining\"},unresolvedPathSlugs:{vf7a9j703:{collectionId:\"f_LSaNYPz\",collectionItemId:\"k3vBygqKL\"}},webPageId:\"RnwJm4tS0\"},motionChild:true,nodeId:\"VRd2rIEAp\",openInNewTab:false,scopeId:\"etjHfn2IQ\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"MINING\"})})})})}),className:\"framer-zfenjm\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"VRd2rIEAp\",style:{\"--extracted-r6o4lv\":\"var(--token-492246bc-541d-4174-a090-7ec4ac97510b, rgb(3, 3, 3))\"},verticalAlignment:\"center\",withExternalLayout:true})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-L5jyy.framer-necwz8, .framer-L5jyy .framer-necwz8 { display: block; }\",\".framer-L5jyy.framer-f58f3n { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: flex-start; overflow: hidden; overflow-y: auto; padding: 0px; position: relative; width: 248px; }\",\".framer-L5jyy .framer-jxz28s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: min-content; }\",\".framer-L5jyy .framer-18axsqf { flex: none; height: 19px; position: relative; text-decoration: none; width: 28px; }\",\".framer-L5jyy .framer-123924y-container, .framer-L5jyy .framer-3zujhu-container, .framer-L5jyy .framer-14uh8jv-container { flex: none; height: auto; position: relative; width: 248px; }\",\".framer-L5jyy .framer-e0nfea { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 248px; }\",\".framer-L5jyy .framer-1vw5axi { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 26px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-L5jyy .framer-zfenjm { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-L5jyy.framer-f58f3n, .framer-L5jyy .framer-jxz28s, .framer-L5jyy .framer-e0nfea, .framer-L5jyy .framer-1vw5axi { gap: 0px; } .framer-L5jyy.framer-f58f3n > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-L5jyy.framer-f58f3n > :first-child, .framer-L5jyy .framer-jxz28s > :first-child, .framer-L5jyy .framer-e0nfea > :first-child { margin-top: 0px; } .framer-L5jyy.framer-f58f3n > :last-child, .framer-L5jyy .framer-jxz28s > :last-child, .framer-L5jyy .framer-e0nfea > :last-child { margin-bottom: 0px; } .framer-L5jyy .framer-jxz28s > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-L5jyy .framer-e0nfea > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-L5jyy .framer-1vw5axi > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-L5jyy .framer-1vw5axi > :first-child { margin-left: 0px; } .framer-L5jyy .framer-1vw5axi > :last-child { margin-right: 0px; } }\",\".framer-L5jyy.framer-v-9i7wga.framer-f58f3n { padding: 0px 0px 32px 0px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-L5jyy[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-L5jyy [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-L5jyy[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-L5jyy [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-L5jyy[data-hide-scrollbars=\"true\"], .framer-L5jyy [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 202\n * @framerIntrinsicWidth 248\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Cox5Ed3yI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"h1u_xrIka\":\"vrVISION\",\"nL19hf2ZW\":\"vrSYSTEM\",\"eM3V5_gDO\":\"vrRESEARCH\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameretjHfn2IQ=withCSS(Component,css,\"framer-L5jyy\");export default FrameretjHfn2IQ;FrameretjHfn2IQ.displayName=\"Nav/Docs menu\";FrameretjHfn2IQ.defaultProps={height:202,width:248};addPropertyControls(FrameretjHfn2IQ,{variant:{options:[\"LxLQBDyq2\",\"Cox5Ed3yI\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},h1u_xrIka:ArticleDocsDropdownControls?.[\"variant\"]&&{...ArticleDocsDropdownControls[\"variant\"],defaultValue:\"NJEP2xtCH\",description:undefined,hidden:undefined,title:\"Vr: VISION\"},nL19hf2ZW:ArticleDocsDropdownControls?.[\"variant\"]&&{...ArticleDocsDropdownControls[\"variant\"],defaultValue:\"NJEP2xtCH\",description:undefined,hidden:undefined,title:\"Vr: SYSTEM\"},eM3V5_gDO:ArticleDocsDropdownControls?.[\"variant\"]&&{...ArticleDocsDropdownControls[\"variant\"],defaultValue:\"NJEP2xtCH\",description:undefined,hidden:undefined,title:\"Vr: RESEARCH\"}});addFonts(FrameretjHfn2IQ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...ArticleDocsDropdownFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameretjHfn2IQ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"248\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Cox5Ed3yI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"202\",\"framerVariables\":\"{\\\"h1u_xrIka\\\":\\\"vrVISION\\\",\\\"nL19hf2ZW\\\":\\\"vrSYSTEM\\\",\\\"eM3V5_gDO\\\":\\\"vrRESEARCH\\\"}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["getPropertiesByTag", "elemProps", "elementTag", "key", "childrenProps", "result", "useStore", "createStore", "getSecondPart", "str", "getTitles", "Component", "props", "store", "setStore", "useStore", "ue", "html", "content", "ptagProps", "getPropertiesByTag", "atagProps", "headings", "headingsArray", "i", "element", "p", "setActiveStateFromLink", "card", "pe", "boolean", "setBoolean", "ye", "cardHref", "window", "getSecondPart", "SearchShortcutKey", "handleKeyDown", "event", "e", "input", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "qq88ZB8kZ", "omoId7Z1Z", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1gkwcf3", "args", "scopingClassNames", "cx", "LayoutGroup", "RichText2", "css", "FramernJCVL_Ff9", "withCSS", "nJCVL_Ff9_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "usu8jeJ0w_exports", "__export", "__FramerMetadata__", "usu8jeJ0w_default", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "RichText2", "css", "FramermZ1fGCcxK", "withCSS", "mZ1fGCcxK_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LabelsAPILabelFonts", "getFonts", "mZ1fGCcxK_default", "LabelsAPILabelControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "aPILabel", "articleTitle", "height", "id", "link", "showAPILabel", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "SQkWO8lSl", "Xc11fA1IZ", "sl_Nty65I", "RJFIyUX9B", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framerusu8jeJ0w", "withCSS", "usu8jeJ0w_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__", "CategoryElementsDropdownItemFonts", "getFonts", "nJCVL_Ff9_default", "ArticleDocsTextLinkFonts", "usu8jeJ0w_default", "ArticleDocsTextLinkSetActiveStateFromLinki15emWithMappedReactProps1qc5lf5", "withMappedReactProps", "withCodeBoundaryForOverrides", "setActiveStateFromLink", "usu8jeJ0w_exports", "ContentControls", "getPropertyControls", "f_LSaNYPz_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "catFilter", "height", "id", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "ha0u8ZU_J", "YBF2TxADH", "F31R8O6nzMqTri1RP2", "vf7a9j703MqTri1RP2", "idMqTri1RP2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "qq88ZB8kZ27obta", "args", "qq88ZB8kZqfzq8q", "scopingClassNames", "cx", "serializationHash", "router", "useRouter", "p", "LayoutGroup", "Transition", "transition1", "u", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "nJCVL_Ff9_default", "transition2", "ChildrenCanSuspend", "f_LSaNYPz_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "transition3", "ResolveLinks", "resolvedLinks", "ArticleDocsTextLinkSetActiveStateFromLinki15emWithMappedReactProps1qc5lf5", "css", "FramerUUgPNqE65", "withCSS", "UUgPNqE65_default", "addPropertyControls", "ControlType", "ContentControls", "addFonts", "CategoryElementsDropdownItemFonts", "ArticleDocsTextLinkFonts", "ArticleDocsDropdownFonts", "getFonts", "UUgPNqE65_default", "ArticleDocsDropdownControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "vrRESEARCH", "vrSYSTEM", "vrVISION", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "h1u_xrIka", "nL19hf2ZW", "eM3V5_gDO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap27obta", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "Link", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FrameretjHfn2IQ", "withCSS", "etjHfn2IQ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
