{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js", "ssg:https://framerusercontent.com/modules/CbyFIs9KoRhPjTsPTKcq/T3mL3ZilewULsoT60AnN/eMAX511LU.js", "ssg:https://framerusercontent.com/modules/pzULA9ZkLlnwDMEaxqRr/lzIzC8RVlkIvrYgswI2e/Hnr02ULNi.js", "ssg:https://framerusercontent.com/modules/vuYJjvBKWw39av0kGo34/z2CyEUwQik5Zo5R29o6x/NTBX0l6Io.js", "ssg:https://framerusercontent.com/modules/2lOPS4zsuDJesE30uDxq/xxsVP58LGeLjhCdKhA0k/yEmAo6nk7.js", "ssg:https://framerusercontent.com/modules/cuKUFdzXlhvw8OVOBeAc/T08RxQJ4qrs7LLc8wx4E/border.js", "ssg:https://framerusercontent.com/modules/9muYaW1MvHoRQJ0P7dkP/V2GVvLqiMxXRSxszkCSa/focus.js", "ssg:https://framerusercontent.com/modules/YfmtnpWjJrP37sQ18QUZ/9Y2P24U2SBIbf2fPVsOX/hover.js", "ssg:https://framerusercontent.com/modules/wjZLfSMaP1TvJDu5PCwr/XQ1GMXuIqYrEN1c0R6E5/padding.js", "ssg:https://framerusercontent.com/modules/N6MwtHbWoiZJNn1xpqxu/ZEWmVGYDUhL44tluQO5y/radius.js", "ssg:https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/fW26mCIOTpHHBOBnf7GZ/LocaleSelector.js", "ssg:https://framerusercontent.com/modules/0wq0GoKSyiN9IFgFOkop/529iKgd5LYGUDw7liMv2/ScrollToggle.js", "ssg:https://framerusercontent.com/modules/6NjQzcohRcnJNy7md72W/WuBi7cgYGtIus8LzMvSy/TJtdcnIgW-0.js", "ssg:https://framerusercontent.com/modules/6NjQzcohRcnJNy7md72W/WuBi7cgYGtIus8LzMvSy/TJtdcnIgW.js", "ssg:https://framerusercontent.com/modules/koA7A8l64Nrz6c0c2TLS/v7AXMv43LvcpIxpOQZ74/Navigation_Button.js", "ssg:https://framerusercontent.com/modules/ZkUPzYmBEOFvbl6Casxt/05bLYB4H6uopChCLYdgR/FJcN2qQXX-0.js", "ssg:https://framerusercontent.com/modules/ZkUPzYmBEOFvbl6Casxt/05bLYB4H6uopChCLYdgR/FJcN2qQXX.js", "ssg:https://framerusercontent.com/modules/KR3p09L6Yg5goiriyrHL/Q4V5uE0bU8ZcrIhOFKgQ/bYhiwO7QJ.js", "ssg:https://framerusercontent.com/modules/xqyuHHKjlTOswb6nVbNI/m87PNpAQ9zzsiC1YxcXv/FJcN2qQXX.js", "ssg:https://framerusercontent.com/modules/bgyYyk6LvAOobekRcn3N/m46gWLJ45ZvApQ6FXfws/Od8026J91.js", "ssg:https://framerusercontent.com/modules/sNIHMkiSOl9hxX8J7e4k/fCZHKxa2svSFt9mJojMz/setpHQJqg.js", "ssg:https://framerusercontent.com/modules/mW4o5Eps5syt806qXsuY/v6UUJYStOW0dhRyUzmgA/xAomRXpzG.js", "ssg:https://framerusercontent.com/modules/UzVVIwc5pjlQ5Bhu5hdM/QICdoZaqZicCvu7ydgOm/TJtdcnIgW.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){// Find the circle element and update its fill attribute\nconst circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){// Update the fill attribute with the custom color\nconst updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{// If there is no fill attribute, add it with the custom color\nreplacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle});}SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true,description:\"More components at [Framer University](https://frameruni.link/cc).\"},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"24\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js\";const SVGFonts=getFonts(SVG);const enabledGestures={Bjx2_zxQl:{hover:true},DYxgkJlQB:{hover:true},Ftkwl8KrB:{hover:true},iisuRppiE:{hover:true},lrmcRZpKM:{hover:true},Q0eUCA0Dy:{hover:true},Sk5Gu91Ro:{hover:true},tz5iF1kHn:{hover:true},UkpOzrO_j:{hover:true},uYrIOXUhB:{hover:true},ybIX8v1ci:{hover:true},Z0xuvZuJ_:{hover:true},ZRJSAwbJC:{hover:true}};const cycleOrder=[\"iisuRppiE\",\"Sk5Gu91Ro\",\"Q0eUCA0Dy\",\"ZRJSAwbJC\",\"Ftkwl8KrB\",\"Z0xuvZuJ_\",\"uYrIOXUhB\",\"Bjx2_zxQl\",\"ybIX8v1ci\",\"tz5iF1kHn\",\"lrmcRZpKM\",\"DYxgkJlQB\",\"UkpOzrO_j\"];const serializationHash=\"framer-yk3LB\";const variantClassNames={Bjx2_zxQl:\"framer-v-tlnepw\",DYxgkJlQB:\"framer-v-1crdh83\",Ftkwl8KrB:\"framer-v-1tzykoy\",iisuRppiE:\"framer-v-11qgjlg\",lrmcRZpKM:\"framer-v-ri6lhk\",Q0eUCA0Dy:\"framer-v-1u150ym\",Sk5Gu91Ro:\"framer-v-28uo5d\",tz5iF1kHn:\"framer-v-1juh7hy\",UkpOzrO_j:\"framer-v-1d98xps\",uYrIOXUhB:\"framer-v-1wpsrdj\",ybIX8v1ci:\"framer-v-qtv6r8\",Z0xuvZuJ_:\"framer-v-1fznon3\",ZRJSAwbJC:\"framer-v-10cd8mb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.15,ease:[.12,.23,.5,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 Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"Blue L: Icon\":\"Z0xuvZuJ_\",\"Blue L\":\"Ftkwl8KrB\",\"Blue M: Icon\":\"DYxgkJlQB\",\"Blue M\":\"lrmcRZpKM\",\"Primary L: Icon\":\"ZRJSAwbJC\",\"Primary L\":\"iisuRppiE\",\"Primary M: Icon\":\"Bjx2_zxQl\",\"Primary M\":\"uYrIOXUhB\",\"Secondary L: Icon\":\"Sk5Gu91Ro\",\"Secondary L\":\"Q0eUCA0Dy\",\"Secondary M: Icon Only\":\"UkpOzrO_j\",\"Secondary M: Icon\":\"tz5iF1kHn\",\"Secondary M\":\"ybIX8v1ci\"};const getProps=({click,distribute,height,icon,iconColor,id,link,stroke,text,width,...props})=>{return{...props,BL_hxI2b_:link??props.BL_hxI2b_,BnmH_z3oH:icon??props.BnmH_z3oH??'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\">   <path d=\"M4.5 9L7.5 6L4.5 3\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',GxuiU3lbe:stroke??props.GxuiU3lbe??1.25,I4KuTahqi:text??props.I4KuTahqi??\"Get Started\",q8NV5vffb:humanReadableEnumMap[distribute]??distribute??props.q8NV5vffb??\"center\",r3Wpubva0:click??props.r3Wpubva0,RSajvyivS:iconColor??props.RSajvyivS??\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"iisuRppiE\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,I4KuTahqi,BL_hxI2b_,q8NV5vffb,BnmH_z3oH,RSajvyivS,GxuiU3lbe,r3Wpubva0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iisuRppiE\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1mugfga=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(r3Wpubva0){const res=await r3Wpubva0(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"UkpOzrO_j-hover\")return false;if(baseVariant===\"UkpOzrO_j\")return false;return true;};const isDisplayed1=()=>{if([\"Sk5Gu91Ro-hover\",\"ZRJSAwbJC-hover\",\"Z0xuvZuJ_-hover\",\"Bjx2_zxQl-hover\",\"tz5iF1kHn-hover\",\"DYxgkJlQB-hover\",\"UkpOzrO_j-hover\"].includes(gestureVariant))return true;if([\"Sk5Gu91Ro\",\"ZRJSAwbJC\",\"Z0xuvZuJ_\",\"Bjx2_zxQl\",\"tz5iF1kHn\",\"DYxgkJlQB\",\"UkpOzrO_j\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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:BL_hxI2b_,nodeId:\"iisuRppiE\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-11qgjlg\",className,classNames)} framer-yiae`,\"data-framer-name\":\"Primary L\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"iisuRppiE\",onTap:onTap1mugfga,ref:ref??ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",\"--lvi846\":q8NV5vffb,backgroundColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{\"Bjx2_zxQl-hover\":{backgroundColor:\"var(--token-80197f60-5b03-4245-879a-f8f7bd718bb3, rgb(229, 229, 229))\"},\"DYxgkJlQB-hover\":{backgroundColor:\"var(--token-69936fcf-3f89-40fc-aade-adfd4349bb62, rgb(61, 130, 246))\"},\"Ftkwl8KrB-hover\":{backgroundColor:\"var(--token-69936fcf-3f89-40fc-aade-adfd4349bb62, rgb(61, 130, 246))\"},\"iisuRppiE-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-80197f60-5b03-4245-879a-f8f7bd718bb3, rgb(229, 229, 229))\"},\"lrmcRZpKM-hover\":{backgroundColor:\"var(--token-69936fcf-3f89-40fc-aade-adfd4349bb62, rgb(61, 130, 246))\"},\"Q0eUCA0Dy-hover\":{backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(23, 23, 23))\"},\"Sk5Gu91Ro-hover\":{backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(23, 23, 23))\"},\"tz5iF1kHn-hover\":{backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(23, 23, 23))\"},\"UkpOzrO_j-hover\":{backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(23, 23, 23))\"},\"uYrIOXUhB-hover\":{backgroundColor:\"var(--token-80197f60-5b03-4245-879a-f8f7bd718bb3, rgb(229, 229, 229))\"},\"ybIX8v1ci-hover\":{backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(23, 23, 23))\"},\"Z0xuvZuJ_-hover\":{backgroundColor:\"var(--token-69936fcf-3f89-40fc-aade-adfd4349bb62, rgb(61, 130, 246))\"},\"ZRJSAwbJC-hover\":{backgroundColor:\"var(--token-80197f60-5b03-4245-879a-f8f7bd718bb3, rgb(229, 229, 229))\"},Bjx2_zxQl:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255))\"},DYxgkJlQB:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-6fd8621c-3c6c-4a1a-8ded-e8cccc14a2a1, rgb(38, 99, 235))\"},Ftkwl8KrB:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-6fd8621c-3c6c-4a1a-8ded-e8cccc14a2a1, rgb(38, 99, 235))\"},lrmcRZpKM:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-6fd8621c-3c6c-4a1a-8ded-e8cccc14a2a1, rgb(38, 99, 235))\"},Q0eUCA0Dy:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\"},Sk5Gu91Ro:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\"},tz5iF1kHn:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\"},UkpOzrO_j:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\"},uYrIOXUhB:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255))\"},ybIX8v1ci:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\"},Z0xuvZuJ_:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-6fd8621c-3c6c-4a1a-8ded-e8cccc14a2a1, rgb(38, 99, 235))\"},ZRJSAwbJC:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({\"Bjx2_zxQl-hover\":{\"data-framer-name\":undefined},\"DYxgkJlQB-hover\":{\"data-framer-name\":undefined},\"Ftkwl8KrB-hover\":{\"data-framer-name\":undefined},\"iisuRppiE-hover\":{\"data-framer-name\":undefined},\"lrmcRZpKM-hover\":{\"data-framer-name\":undefined},\"Q0eUCA0Dy-hover\":{\"data-framer-name\":undefined},\"Sk5Gu91Ro-hover\":{\"data-framer-name\":undefined},\"tz5iF1kHn-hover\":{\"data-framer-name\":undefined},\"UkpOzrO_j-hover\":{\"data-framer-name\":undefined},\"uYrIOXUhB-hover\":{\"data-framer-name\":undefined},\"ybIX8v1ci-hover\":{\"data-framer-name\":undefined},\"Z0xuvZuJ_-hover\":{\"data-framer-name\":undefined},\"ZRJSAwbJC-hover\":{\"data-framer-name\":undefined},Bjx2_zxQl:{\"data-framer-name\":\"Primary M: Icon\"},DYxgkJlQB:{\"data-framer-name\":\"Blue M: Icon\"},Ftkwl8KrB:{\"data-framer-name\":\"Blue L\"},lrmcRZpKM:{\"data-framer-name\":\"Blue M\"},Q0eUCA0Dy:{\"data-border\":true,\"data-framer-name\":\"Secondary L\"},Sk5Gu91Ro:{\"data-border\":true,\"data-framer-name\":\"Secondary L: Icon\"},tz5iF1kHn:{\"data-border\":true,\"data-framer-name\":\"Secondary M: Icon\"},UkpOzrO_j:{\"data-border\":true,\"data-framer-name\":\"Secondary M: Icon Only\"},uYrIOXUhB:{\"data-framer-name\":\"Primary M\"},ybIX8v1ci:{\"data-border\":true,\"data-framer-name\":\"Secondary M\"},Z0xuvZuJ_:{\"data-framer-name\":\"Blue L: Icon\"},ZRJSAwbJC:{\"data-framer-name\":\"Primary L: Icon\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10)))\"},children:\"Get Started\"})}),className:\"framer-16eogto\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"hvrN21ygW\",style:{\"--extracted-r6o4lv\":\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:I4KuTahqi,variants:{\"Q0eUCA0Dy-hover\":{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},\"Sk5Gu91Ro-hover\":{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},\"tz5iF1kHn-hover\":{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},\"ybIX8v1ci-hover\":{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},DYxgkJlQB:{\"--extracted-r6o4lv\":\"var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255))\"},Ftkwl8KrB:{\"--extracted-r6o4lv\":\"var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255))\"},lrmcRZpKM:{\"--extracted-r6o4lv\":\"var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255))\"},Q0eUCA0Dy:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\"},Sk5Gu91Ro:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\"},tz5iF1kHn:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\"},ybIX8v1ci:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\"},Z0xuvZuJ_:{\"--extracted-r6o4lv\":\"var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"Q0eUCA0Dy-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Get Started\"})})},\"Sk5Gu91Ro-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Get Started\"})})},\"tz5iF1kHn-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Get Started\"})})},\"ybIX8v1ci-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Get Started\"})})},Bjx2_zxQl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10)))\"},children:\"Get Started\"})})},DYxgkJlQB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255)))\"},children:\"Get Started\"})})},Ftkwl8KrB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255)))\"},children:\"Get Started\"})})},lrmcRZpKM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255)))\"},children:\"Get Started\"})})},Q0eUCA0Dy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Get Started\"})})},Sk5Gu91Ro:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Get Started\"})})},tz5iF1kHn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Get Started\"})})},uYrIOXUhB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10)))\"},children:\"Get Started\"})})},ybIX8v1ci:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Get Started\"})})},Z0xuvZuJ_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255)))\"},children:\"Get Started\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-znv6zr-container\",layoutDependency:layoutDependency,layoutId:\"g224jB6L3-container\",style:{opacity:1},variants:{\"Bjx2_zxQl-hover\":{opacity:1},\"Sk5Gu91Ro-hover\":{opacity:1},\"tz5iF1kHn-hover\":{opacity:1},\"UkpOzrO_j-hover\":{opacity:1},\"Z0xuvZuJ_-hover\":{opacity:1},\"ZRJSAwbJC-hover\":{opacity:1},DYxgkJlQB:{opacity:1},tz5iF1kHn:{opacity:.5},UkpOzrO_j:{opacity:.5}},children:/*#__PURE__*/_jsx(SVG,{customColor:RSajvyivS,customPadding:0,customStrokeWidth:GxuiU3lbe,customSvgCode:BnmH_z3oH,height:\"100%\",id:\"g224jB6L3\",layoutId:\"g224jB6L3\",lineCap:\"round\",lineJoin:\"round\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"Sk5Gu91Ro-hover\":{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},Bjx2_zxQl:{customColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\"},DYxgkJlQB:{customColor:\"var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255))\"},tz5iF1kHn:{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},UkpOzrO_j:{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},Z0xuvZuJ_:{customColor:\"var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255))\"},ZRJSAwbJC:{customColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yk3LB.framer-yiae, .framer-yk3LB .framer-yiae { display: block; }\",\".framer-yk3LB.framer-11qgjlg { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: var(--lvi846); padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yk3LB .framer-16eogto { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; z-index: 2; }\",\".framer-yk3LB .framer-znv6zr-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yk3LB.framer-11qgjlg { gap: 0px; } .framer-yk3LB.framer-11qgjlg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yk3LB.framer-11qgjlg > :first-child { margin-left: 0px; } .framer-yk3LB.framer-11qgjlg > :last-child { margin-right: 0px; } }\",\".framer-yk3LB.framer-v-28uo5d.framer-11qgjlg, .framer-yk3LB.framer-v-10cd8mb.framer-11qgjlg, .framer-yk3LB.framer-v-1fznon3.framer-11qgjlg { gap: 6px; padding: 12px 12px 12px 20px; }\",\".framer-yk3LB.framer-v-28uo5d .framer-znv6zr-container, .framer-yk3LB.framer-v-10cd8mb .framer-znv6zr-container, .framer-yk3LB.framer-v-1fznon3 .framer-znv6zr-container, .framer-yk3LB.framer-v-tlnepw .framer-znv6zr-container, .framer-yk3LB.framer-v-1juh7hy .framer-znv6zr-container, .framer-yk3LB.framer-v-1crdh83 .framer-znv6zr-container { height: 16px; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yk3LB.framer-v-28uo5d.framer-11qgjlg { gap: 0px; } .framer-yk3LB.framer-v-28uo5d.framer-11qgjlg > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-yk3LB.framer-v-28uo5d.framer-11qgjlg > :first-child { margin-left: 0px; } .framer-yk3LB.framer-v-28uo5d.framer-11qgjlg > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yk3LB.framer-v-10cd8mb.framer-11qgjlg { gap: 0px; } .framer-yk3LB.framer-v-10cd8mb.framer-11qgjlg > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-yk3LB.framer-v-10cd8mb.framer-11qgjlg > :first-child { margin-left: 0px; } .framer-yk3LB.framer-v-10cd8mb.framer-11qgjlg > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yk3LB.framer-v-1fznon3.framer-11qgjlg { gap: 0px; } .framer-yk3LB.framer-v-1fznon3.framer-11qgjlg > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-yk3LB.framer-v-1fznon3.framer-11qgjlg > :first-child { margin-left: 0px; } .framer-yk3LB.framer-v-1fznon3.framer-11qgjlg > :last-child { margin-right: 0px; } }\",\".framer-yk3LB.framer-v-1wpsrdj.framer-11qgjlg, .framer-yk3LB.framer-v-qtv6r8.framer-11qgjlg, .framer-yk3LB.framer-v-ri6lhk.framer-11qgjlg { padding: 10px 20px 10px 20px; }\",\".framer-yk3LB.framer-v-tlnepw.framer-11qgjlg, .framer-yk3LB.framer-v-1juh7hy.framer-11qgjlg, .framer-yk3LB.framer-v-1crdh83.framer-11qgjlg { gap: 6px; padding: 10px 14px 10px 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yk3LB.framer-v-tlnepw.framer-11qgjlg { gap: 0px; } .framer-yk3LB.framer-v-tlnepw.framer-11qgjlg > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-yk3LB.framer-v-tlnepw.framer-11qgjlg > :first-child { margin-left: 0px; } .framer-yk3LB.framer-v-tlnepw.framer-11qgjlg > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yk3LB.framer-v-1juh7hy.framer-11qgjlg { gap: 0px; } .framer-yk3LB.framer-v-1juh7hy.framer-11qgjlg > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-yk3LB.framer-v-1juh7hy.framer-11qgjlg > :first-child { margin-left: 0px; } .framer-yk3LB.framer-v-1juh7hy.framer-11qgjlg > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yk3LB.framer-v-1crdh83.framer-11qgjlg { gap: 0px; } .framer-yk3LB.framer-v-1crdh83.framer-11qgjlg > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-yk3LB.framer-v-1crdh83.framer-11qgjlg > :first-child { margin-left: 0px; } .framer-yk3LB.framer-v-1crdh83.framer-11qgjlg > :last-child { margin-right: 0px; } }\",\".framer-yk3LB.framer-v-1d98xps.framer-11qgjlg { gap: 6px; height: 40px; padding: 10px 0px 10px 0px; width: 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yk3LB.framer-v-1d98xps.framer-11qgjlg { gap: 0px; } .framer-yk3LB.framer-v-1d98xps.framer-11qgjlg > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-yk3LB.framer-v-1d98xps.framer-11qgjlg > :first-child { margin-left: 0px; } .framer-yk3LB.framer-v-1d98xps.framer-11qgjlg > :last-child { margin-right: 0px; } }\",'.framer-yk3LB[data-border=\"true\"]::after, .framer-yk3LB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 127\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Sk5Gu91Ro\":{\"layout\":[\"auto\",\"auto\"]},\"Q0eUCA0Dy\":{\"layout\":[\"auto\",\"auto\"]},\"ZRJSAwbJC\":{\"layout\":[\"auto\",\"auto\"]},\"Ftkwl8KrB\":{\"layout\":[\"auto\",\"auto\"]},\"Z0xuvZuJ_\":{\"layout\":[\"auto\",\"auto\"]},\"uYrIOXUhB\":{\"layout\":[\"auto\",\"auto\"]},\"Bjx2_zxQl\":{\"layout\":[\"auto\",\"auto\"]},\"ybIX8v1ci\":{\"layout\":[\"auto\",\"auto\"]},\"tz5iF1kHn\":{\"layout\":[\"auto\",\"auto\"]},\"lrmcRZpKM\":{\"layout\":[\"auto\",\"auto\"]},\"DYxgkJlQB\":{\"layout\":[\"auto\",\"auto\"]},\"UkpOzrO_j\":{\"layout\":[\"fixed\",\"fixed\"]},\"zXynrtG1K\":{\"layout\":[\"auto\",\"auto\"]},\"lgUOJcmt9\":{\"layout\":[\"auto\",\"auto\"]},\"kvxyJ0RJY\":{\"layout\":[\"auto\",\"auto\"]},\"gXRt1Hpl8\":{\"layout\":[\"auto\",\"auto\"]},\"xrNT9ml0k\":{\"layout\":[\"auto\",\"auto\"]},\"TgSiynH_s\":{\"layout\":[\"auto\",\"auto\"]},\"N3SH_znF8\":{\"layout\":[\"auto\",\"auto\"]},\"Nfo5ok214\":{\"layout\":[\"auto\",\"auto\"]},\"pyibDlkNx\":{\"layout\":[\"auto\",\"auto\"]},\"vjJO_gHJt\":{\"layout\":[\"auto\",\"auto\"]},\"kEUYfym6d\":{\"layout\":[\"auto\",\"auto\"]},\"UsfpTzMA_\":{\"layout\":[\"auto\",\"auto\"]},\"cLBXdtAI8\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"I4KuTahqi\":\"text\",\"BL_hxI2b_\":\"link\",\"q8NV5vffb\":\"distribute\",\"BnmH_z3oH\":\"icon\",\"RSajvyivS\":\"iconColor\",\"GxuiU3lbe\":\"stroke\",\"r3Wpubva0\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereMAX511LU=withCSS(Component,css,\"framer-yk3LB\");export default FramereMAX511LU;FramereMAX511LU.displayName=\"Buttons / Button\";FramereMAX511LU.defaultProps={height:48,width:127};addPropertyControls(FramereMAX511LU,{variant:{options:[\"iisuRppiE\",\"Sk5Gu91Ro\",\"Q0eUCA0Dy\",\"ZRJSAwbJC\",\"Ftkwl8KrB\",\"Z0xuvZuJ_\",\"uYrIOXUhB\",\"Bjx2_zxQl\",\"ybIX8v1ci\",\"tz5iF1kHn\",\"lrmcRZpKM\",\"DYxgkJlQB\",\"UkpOzrO_j\"],optionTitles:[\"Primary L\",\"Secondary L: Icon\",\"Secondary L\",\"Primary L: Icon\",\"Blue L\",\"Blue L: Icon\",\"Primary M\",\"Primary M: Icon\",\"Secondary M\",\"Secondary M: Icon\",\"Blue M\",\"Blue M: Icon\",\"Secondary M: Icon Only\"],title:\"Variant\",type:ControlType.Enum},I4KuTahqi:{defaultValue:\"Get Started\",displayTextArea:false,title:\"Text\",type:ControlType.String},BL_hxI2b_:{title:\"Link\",type:ControlType.Link},q8NV5vffb:{defaultValue:\"center\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Distribute\",type:ControlType.Enum},BnmH_z3oH:{defaultValue:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\">   <path d=\"M4.5 9L7.5 6L4.5 3\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',displayTextArea:false,title:\"Icon\",type:ControlType.String},RSajvyivS:{defaultValue:'var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)) /* {\"name\":\"Gray/400\"} */',title:\"Icon Color\",type:ControlType.Color},GxuiU3lbe:{defaultValue:1.25,displayStepper:true,min:0,step:.1,title:\"Stroke\",type:ControlType.Number},r3Wpubva0:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramereMAX511LU,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereMAX511LU\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Sk5Gu91Ro\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Q0eUCA0Dy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZRJSAwbJC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ftkwl8KrB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Z0xuvZuJ_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uYrIOXUhB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Bjx2_zxQl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ybIX8v1ci\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tz5iF1kHn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lrmcRZpKM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DYxgkJlQB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UkpOzrO_j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zXynrtG1K\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lgUOJcmt9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kvxyJ0RJY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gXRt1Hpl8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xrNT9ml0k\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TgSiynH_s\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"N3SH_znF8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Nfo5ok214\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pyibDlkNx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vjJO_gHJt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kEUYfym6d\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UsfpTzMA_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cLBXdtAI8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"I4KuTahqi\\\":\\\"text\\\",\\\"BL_hxI2b_\\\":\\\"link\\\",\\\"q8NV5vffb\\\":\\\"distribute\\\",\\\"BnmH_z3oH\\\":\\\"icon\\\",\\\"RSajvyivS\\\":\\\"iconColor\\\",\\\"GxuiU3lbe\\\":\\\"stroke\\\",\\\"r3Wpubva0\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"48\",\"framerIntrinsicWidth\":\"127\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eMAX511LU.map", "// Generated by Framer (ddd30d5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);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://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\"},{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://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.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://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.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://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.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://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.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://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{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://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{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://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{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://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{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://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-Z9S1i .framer-styles-preset-1qk663m:not(.rich-text-wrapper), .framer-Z9S1i .framer-styles-preset-1qk663m.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 20px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, #fafafa); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-Z9S1i\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38f2e7f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-MediumItalic\"]);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://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{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\"},{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://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.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://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.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://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.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://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.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://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{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://framerusercontent.com/assets/khkJkwSL66WFg8SX6Wa726c.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/0E7IMbDzcGABpBwwqNEt60wU0w.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/NTJ0nQgIF0gcDelS14zQ9NR9Q.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/QrcNhgEPfRl0LS8qz5Ln8olanl8.woff2\",weight:\"500\"},{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://framerusercontent.com/assets/JEXmejW8mXOYMtt0hyRg811kHac.woff2\",weight:\"500\"},{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://framerusercontent.com/assets/ksvR4VsLksjpSwnC2fPgHRNMw.woff2\",weight:\"500\"},{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://framerusercontent.com/assets/uy9s0iWuxiNnVt8EpTI3gzohpwo.woff2\",weight:\"500\"}]}];export const css=['.framer-swlHP .framer-styles-preset-npxqny:not(.rich-text-wrapper), .framer-swlHP .framer-styles-preset-npxqny.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 20px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-swlHP\";\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\"}}}", "// Generated by Framer (2fef4c5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-uZqBG .framer-styles-preset-yplq5h:not(.rich-text-wrapper), .framer-uZqBG .framer-styles-preset-yplq5h.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, #fafafa) /* {\"name\":\"Gray/50\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-cd19a8dc-4962-414b-82de-98ea9601eb32, #d4d4d4); --framer-link-text-decoration: none; transition: color 0.15s cubic-bezier(0.12, 0.23, 0.5, 1) 0s; }'];export const className=\"framer-uZqBG\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{ControlType as e}from\"framer\";export function getBorderStyle({color:e,width:t=0,widthPerSide:o=!1,widthTop:d=0,widthRight:r=0,widthBottom:i=0,widthLeft:l=0,style:h=\"none\"}={}){let b={};return e?(b[\"--framer-border-color\"]=e,b.borderStyle=h,o?(b.borderTopWidth=d,b.borderRightWidth=r,b.borderBottomWidth=i,b.borderLeftWidth=l):(b.borderTopWidth=t,b.borderRightWidth=t,b.borderBottomWidth=t,b.borderLeftWidth=t)):b.border=\"none\",b;}export const borderControls={color:{type:e.Color,defaultValue:\"#444\"},width:{type:e.FusedNumber,toggleKey:\"widthPerSide\",toggleTitles:[\"Width\",\"Width per side\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],defaultValue:1,min:0},style:{type:e.Enum,options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"double\"],defaultValue:\"solid\"}};\nexport const __FramerMetadata__ = {\"exports\":{\"borderControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBorderStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"BorderOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./border.map", "import{ControlType}from\"framer\";export function getFocusStyle({color,width,style,offset}={}){const result={};if(color){result[\"--framer-focus-outline\"]=`${width}px ${style} ${color}`;result[\"--framer-focus-outline-offset\"]=`${offset}px`;}return result;}export const focusControls={color:{type:ControlType.Color,defaultValue:\"#09f\"},width:{type:ControlType.Number,displayStepper:true,defaultValue:1,min:0},style:{type:ControlType.Enum,options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"double\"],defaultValue:\"solid\"},offset:{type:ControlType.Number,displayStepper:true}};\nexport const __FramerMetadata__ = {\"exports\":{\"focusControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFocusStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"FocusOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./focus.map", "import{ControlType}from\"framer\";export function getHoverStyle({fillColor,textColor,borderColor}={}){return{\"--framer-hover-background-color\":fillColor,\"--framer-hover-color\":textColor,\"--framer-hover-border-color\":borderColor};}export const hoverControls={fillColor:{type:ControlType.Color,title:\"Fill\",optional:true},textColor:{type:ControlType.Color,title:\"Text\",optional:true},borderColor:{type:ControlType.Color,title:\"Border\",optional:true}};\nexport const __FramerMetadata__ = {\"exports\":{\"HoverOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getHoverStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"hoverControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hover.map", "import{ControlType}from\"framer\";export function getPaddingStyle({padding=0,paddingPerSide=false,paddingTop=0,paddingRight=0,paddingBottom=0,paddingLeft=0}={}){if(typeof padding===\"string\"){return{padding};}if(paddingPerSide){return{paddingTop:paddingTop,paddingRight:paddingRight,paddingBottom:paddingBottom,paddingLeft:paddingLeft};}else{return{paddingTop:padding,paddingRight:padding,paddingBottom:padding,paddingLeft:padding};}}export const paddingControls={padding:{type:ControlType.Padding,defaultValue:\"10px\"}};\nexport const __FramerMetadata__ = {\"exports\":{\"paddingControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getPaddingStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./padding.map", "import{ControlType}from\"framer\";export function getRadiusStyle({radius=0,radiusPerCorner=false,radiusTopLeft=0,radiusTopRight=0,radiusBottomRight=0,radiusBottomLeft=0}={}){if(typeof radius===\"string\"){return{borderRadius:radius};}const result={};if(radiusPerCorner){result.borderTopLeftRadius=radiusTopLeft;result.borderTopRightRadius=radiusTopRight;result.borderBottomRightRadius=radiusBottomRight;result.borderBottomLeftRadius=radiusBottomLeft;}else{result.borderTopLeftRadius=radius;result.borderTopRightRadius=radius;result.borderBottomRightRadius=radius;result.borderBottomLeftRadius=radius;}return result;}export const radiusControls={radius:{type:ControlType.BorderRadius,defaultValue:\"10px\"}};\nexport const __FramerMetadata__ = {\"exports\":{\"getRadiusStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"radiusControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./radius.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,// @ts-ignore Internal function\nuseLocaleInfo,// @ts-ignore Internal function\nuseLocalesForCurrentRoute,withCSS}from\"framer\";import{useId,useState}from\"react\";import{getBorderStyle,borderControls}from\"https://framerusercontent.com/modules/cuKUFdzXlhvw8OVOBeAc/T08RxQJ4qrs7LLc8wx4E/border.js\";import{getFocusStyle,focusControls}from\"https://framerusercontent.com/modules/9muYaW1MvHoRQJ0P7dkP/V2GVvLqiMxXRSxszkCSa/focus.js\";import{getHoverStyle,hoverControls}from\"https://framerusercontent.com/modules/YfmtnpWjJrP37sQ18QUZ/9Y2P24U2SBIbf2fPVsOX/hover.js\";import{getPaddingStyle,paddingControls}from\"https://framerusercontent.com/modules/wjZLfSMaP1TvJDu5PCwr/XQ1GMXuIqYrEN1c0R6E5/padding.js\";import{getRadiusStyle,radiusControls}from\"https://framerusercontent.com/modules/N6MwtHbWoiZJNn1xpqxu/ZEWmVGYDUhL44tluQO5y/radius.js\";const className=\"framer-locale-picker\";function addPixel(value){if(typeof value===\"number\"){return`${value}px`;}return value;}var IconType;(function(IconType){IconType[\"Default\"]=\"default\";IconType[\"Custom\"]=\"custom\";})(IconType||(IconType={}));function Icon({type,color,image,size}){if(type===\"custom\"&&image){return /*#__PURE__*/_jsx(\"img\",{...image,width:size,height:size});}return /*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",width:size,height:size,fill:color,children:/*#__PURE__*/_jsx(\"path\",{d:\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm87.63,96H175.8c-1.41-28.46-10.27-55.47-25.12-77A88.2,88.2,0,0,1,215.63,120ZM128,215.89c-18.73-20.27-30.09-49-31.77-79.89h63.54C158.09,166.87,146.73,195.62,128,215.89ZM96.23,120c1.68-30.87,13-59.62,31.77-79.89,18.73,20.27,30.09,49,31.77,79.89Zm9.09-77C90.47,64.53,81.61,91.54,80.2,120H40.37A88.2,88.2,0,0,1,105.32,43ZM40.37,136H80.2c1.41,28.46,10.27,55.47,25.12,77A88.2,88.2,0,0,1,40.37,136Zm110.31,77c14.85-21.56,23.71-48.57,25.12-77h39.83A88.2,88.2,0,0,1,150.68,213Z\"})});}var CaretType;(function(CaretType){CaretType[\"Default\"]=\"default\";CaretType[\"Custom\"]=\"custom\";})(CaretType||(CaretType={}));function Caret({type,color,image,size}){if(type===\"custom\"&&image){return /*#__PURE__*/_jsx(\"img\",{...image,width:size,height:size});}return /*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 12 12\",width:size,height:size,children:/*#__PURE__*/_jsx(\"path\",{d:\"M 2 4.5 L 6 8.5 L 10 4.5\",fill:\"none\",stroke:color,strokeWidth:1.5,strokeLinecap:\"round\",strokeLinejoin:\"round\"})});}/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any\n * @framerDisableUnlink\n * @framerIntrinsicWidth 120\n * @framerIntrinsicHeight 34\n */const LocaleSelector=withCSS(({font,fillColor,textColor,icon,caret,options:{title,gap,border,hover,focus},style,...props})=>{const id=useId();const{activeLocale,locales,setLocale}=useLocaleInfo();const localesForCurrentRoute=useLocalesForCurrentRoute();const activeLocaleId=activeLocale?.id??\"default\";const[lastActiveLocaleId,setLastActiveLocaleId]=useState(activeLocaleId);// The useLocaleInfo hook updates the activeLocale variable inside\n// a startTransition to load the translations with Suspense. To make\n// the component feel responsive we update our own state without Suspense.\nconst[selectedLocaleId,setSelectedLocaleId]=useState(activeLocaleId);const selectedLocale=locales.find(locale=>locale.id===selectedLocaleId);// The active locale was updated. Ensure we update our internal state as well.\nif(lastActiveLocaleId!==activeLocaleId){setLastActiveLocaleId(activeLocaleId);if(selectedLocaleId!==activeLocaleId){setSelectedLocaleId(activeLocaleId);}}function handleChange(event){const localeId=event.target.value;setSelectedLocaleId(localeId);const locale=locales.find(locale=>locale.id===localeId);setLocale(locale);}return /*#__PURE__*/_jsxs(\"div\",{className:className,style:style,children:[/*#__PURE__*/_jsx(\"label\",{htmlFor:id,children:\"Select Language\"}),/*#__PURE__*/_jsx(\"select\",{id:id,value:selectedLocaleId,onChange:handleChange,// If a navigation occurs from switching locales\n// the browser can attempt to autofill the select to the last value\n// when you use browser back navigation. We don't want that.\nautoComplete:\"off\",children:localesForCurrentRoute.map(locale=>/*#__PURE__*/_jsx(\"option\",{value:locale.id,children:locale.name},locale.id))}),/*#__PURE__*/_jsxs(\"div\",{className:\"input\",style:{...font,\"--framer-background-color\":fillColor,\"--framer-color\":textColor,...getPaddingStyle(props),...getRadiusStyle(props),...getBorderStyle(border),...getHoverStyle(hover),...getFocusStyle(focus),gap},children:[icon&&/*#__PURE__*/_jsx(\"div\",{className:\"icon\",children:/*#__PURE__*/_jsx(Icon,{...icon})}),title&&/*#__PURE__*/_jsx(\"div\",{className:\"title\",children:selectedLocale?.name??\"English\"}),caret&&/*#__PURE__*/_jsx(\"div\",{className:\"caret\",children:/*#__PURE__*/_jsx(Caret,{...caret})})]})]});},[`\n            .${className} {\n                position: relative;\n            }\n        `,`\n            .${className} label {\n                position: absolute;\n                width: 1px;\n                height: 1px;\n                margin: -1px;\n                overflow: hidden;\n                white-space: nowrap;\n                clip: rect(0 0 0 0);\n                clip-path: inset(50%);\n            }\n        `,`\n            .${className} select {\n                appearance: none;\n                position: absolute;\n                opacity: 0;\n                top: 0;\n                right: 0;\n                bottom: 0;\n                left: 0;\n                cursor: inherit;\n                width: 100%;\n            }\n        `,`\n            .${className} .input {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                height: 100%;\n                pointer-events: none;\n                overflow: hidden;\n                background-color: var(--framer-background-color);\n                color: var(--framer-color);\n                border-color: var(--framer-border-color);\n            }\n        `,`\n            .${className} select:focus-visible + .input  {\n                outline: var(--framer-focus-outline, none);\n                outline-offset: var(--framer-focus-outline-offset);\n            }\n        `,`\n            .${className}:hover .input {\n                background-color: var(--framer-hover-background-color, var(--framer-background-color));\n                color: var(--framer-hover-color, var(--framer-color));\n                border-color: var(--framer-hover-border-color, var(--framer-border-color));\n            }\n        `,`\n            .${className} .title {\n                flex: 1 1 auto;\n                white-space: nowrap;\n                text-overflow: ellipsis;\n                overflow: hidden;\n            }\n        `,`\n            .${className} .icon, .${className} .caret {\n                display: flex;\n                align-items: center;\n            }\n        `],\"framer-library-LocalePicker\");LocaleSelector.displayName=\"Locale Selector\";addPropertyControls(LocaleSelector,{font:{// @ts-ignore\ntype:ControlType.Font,controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:\"1.5em\"}},fillColor:{type:ControlType.Color,title:\"Fill\",optional:true,defaultValue:\"#eee\"},textColor:{type:ControlType.Color,title:\"Text\",defaultValue:\"#000\"},...paddingControls,...radiusControls,icon:{type:ControlType.Object,buttonTitle:\"Size, Color\",optional:true,controls:{type:{type:ControlType.Enum,title:\"Icon\",options:Object.values(IconType),optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,defaultValue:\"default\"},color:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.type!==\"default\"},image:{type:ControlType.ResponsiveImage,title:\"File\",hidden:props=>props.type!==\"custom\"},size:{type:ControlType.Number,displayStepper:true,defaultValue:18}}},caret:{type:ControlType.Object,buttonTitle:\"Size, Color\",optional:true,controls:{type:{type:ControlType.Enum,title:\"Icon\",options:Object.values(CaretType),optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,defaultValue:\"default\"},color:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.type!==\"default\"},image:{type:ControlType.ResponsiveImage,title:\"File\",hidden:props=>props.type!==\"custom\"},size:{type:ControlType.Number,displayStepper:true,defaultValue:12}},defaultValue:{}},options:{type:ControlType.Object,title:\"Options\",buttonTitle:\"Border, Hover\",controls:{title:{type:ControlType.Boolean,defaultValue:true},gap:{type:ControlType.Number,displayStepper:true,defaultValue:5},border:{type:ControlType.Object,buttonTitle:\"Color, Width\",optional:true,controls:borderControls},hover:{type:ControlType.Object,buttonTitle:\"Fill, Border\",optional:true,controls:hoverControls},focus:{type:ControlType.Object,buttonTitle:\"Color, Width\",controls:focusControls}}}});export default LocaleSelector;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"LocaleSelector\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"* @framerIntrinsicWidth 120\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"34\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LocaleSelector.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useRef,useEffect}from\"react\";export function withToggleScroll(Component){return props=>{const bodyElement=useRef(null);useEffect(()=>{var _document;bodyElement.current=(_document=document)===null||_document===void 0?void 0:_document.getElementsByTagName(\"body\")[0];bodyElement.current.style.overflow=\"hidden scroll\";},[]);const clickEvent=()=>{if(bodyElement.current.style.overflow===\"hidden\"){bodyElement.current.style.overflow=\"hidden scroll\";}else{bodyElement.current.style.overflow=\"hidden\";}};return /*#__PURE__*/_jsx(Component,{...props,onTap:clickEvent});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withToggleScroll\":{\"type\":\"reactHoc\",\"name\":\"withToggleScroll\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ScrollToggle.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=\"Productos\";export const v1=\"Soluciones\";export const v2=\"Precios\";export const v3=\"Desarrollador\";export const v4=\"Empresa\";export const v5=\"Cont\\xe1ctanos\";export const v6=\"Iniciar sesi\\xf3n\";export const v7=\"Iniciar sesi\\xf3n\";export const v8=\"Documentaci\\xf3n\";export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Recursos\"})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Precios\"})});export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Exposici\\xf3n\"})});export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Playground\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3d3d426)\nimport*as localizedValues from\"./TJtdcnIgW-0.js\";const valuesByLocaleId={qTyE5haF3:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";export default function IconTitleButton(props){// Destructure all props at the beginning\nconst{title=\"Nebula\",subtitle=\"Powerful AI for Blockchain\",iconSvg=`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 200 200\" fill=\"none\">\n        <path d=\"M100 170C138.66 170 170 138.66 170 100C170 61.34 138.66 30 100 30C61.34 30 30 61.34 30 100C30 138.66 61.34 170 100 170Z\" stroke=\"white\" stroke-width=\"8\"/>\n        <circle cx=\"80\" cy=\"80\" r=\"10\" fill=\"white\"/>\n        <circle cx=\"120\" cy=\"80\" r=\"10\" fill=\"white\"/>\n        <path d=\"M65 130C65 130 75 110 100 110C125 110 135 130 135 130\" stroke=\"white\" stroke-width=\"8\" stroke-linecap=\"round\"/>\n        </svg>`,link=\"#\",borderRadius=6,borderColor=\"#262626\",iconSize=32,iconGap=12,textGap=2,paddingLeft=0,paddingRight=0,paddingTop=0,paddingBottom=0,titleColor=\"#FFFFFF\",subtitleColor=\"#A3A3A3\",backgroundColor=\"transparent\",trackingEvent=\"clicked_icon_title_button\",trackingProperties={},onClick,...rest}=props;// Get a direct reference to the current props\nconst propsRef=React.useRef(props);// Update the ref whenever props change\nReact.useEffect(()=>{propsRef.current=props;},[props]);// Use a div instead of button to avoid all button styling issues\nconst wrapperStyle={display:\"inline-block\",cursor:\"pointer\",background:\"transparent\",backgroundColor:\"transparent\",border:\"none\",padding:0,margin:0,textAlign:\"left\",font:\"inherit\",color:\"inherit\",outline:\"none\",width:\"auto\",position:\"relative\",// Reset any potential Framer styles\nboxShadow:\"none\",borderRadius:0};// Add inline CSS to ensure cursor style is applied\nconst cursorStyle=`\n        .icon-title-button-wrapper {\n            cursor: pointer !important;\n        }\n    `;// Button style - use a DIV instead of anchor\nconst buttonStyle={display:\"flex\",alignItems:\"center\",paddingLeft:`${paddingLeft}px`,paddingRight:`${paddingRight}px`,paddingTop:`${paddingTop}px`,paddingBottom:`${paddingBottom}px`,background:\"transparent\",backgroundColor:\"transparent\",cursor:\"pointer\"};// Icon container style\nconst iconContainerStyle={width:`${iconSize}px`,height:`${iconSize}px`,borderRadius:`${borderRadius}px`,border:`1px solid ${borderColor}`,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",overflow:\"hidden\",flexShrink:0};// Text container style\nconst textContainerStyle={display:\"flex\",flexDirection:\"column\",marginLeft:`${iconGap}px`,alignItems:\"flex-start\"};// Title style\nconst titleStyle={fontFamily:\"Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif\",fontSize:\"14px\",fontWeight:500,color:titleColor,lineHeight:\"20px\",margin:0,padding:0,textDecoration:\"none\",textAlign:\"left\",width:\"100%\"};// Hover state for subtitle color change\nconst[isHovered,setIsHovered]=React.useState(false);// Subtitle style with hover effect\nconst subtitleStyle={fontFamily:\"Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif\",fontSize:\"12px\",fontWeight:400,color:isHovered?\"#FFFFFF\":subtitleColor,lineHeight:\"16px\",margin:0,padding:0,marginTop:`${textGap}px`,transition:\"color 0.2s ease-in-out\",textDecoration:\"none\",textAlign:\"left\",width:\"100%\"};// Direct tracking function that gets the latest props\nconst trackClick=()=>{// First check if PostHog is available\nif(window.posthog){try{// Get current props from the ref\nconst currentProps=propsRef.current;// Get the event name directly from current props\nconst eventName=currentProps.trackingEvent;// Parse tracking properties\nlet properties={};const currentTrackingProps=currentProps.trackingProperties;if(typeof currentTrackingProps===\"string\"){try{properties=JSON.parse(currentTrackingProps);}catch(e){console.error(\"Failed to parse tracking properties\",e);}}else if(typeof currentTrackingProps===\"object\"){properties=currentTrackingProps;}// Add button info\nproperties.buttonTitle=currentProps.title;properties.buttonSubtitle=currentProps.subtitle;// Fire the event - use the prepared values, not hardcoded ones\nwindow.posthog.capture(eventName,properties);}catch(error){console.error(\"PostHog tracking error\",error);}}};return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:cursorStyle}),/*#__PURE__*/_jsx(\"div\",{className:\"icon-title-button-wrapper\",style:wrapperStyle,onClick:e=>{// Track the click\ntrackClick();// Handle the link directly\nif(link){// Always navigate in the same tab, regardless of link type\nif(link.startsWith(\"/\")){// For internal links starting with slash\nif(window.location.pathname!==\"/\"){window.location.href=window.location.origin+link;}else{window.location.href=link;}}else{// For all other links (including external)\nwindow.location.href=link;}}// Call any provided onClick handler\nif(onClick)onClick(e);},onMouseEnter:()=>setIsHovered(true),onMouseLeave:()=>setIsHovered(false),role:\"button\",tabIndex:0,onKeyDown:e=>{// Handle keyboard accessibility\nif(e.key===\"Enter\"||e.key===\" \"){e.preventDefault();e.target.click();}},...rest,children:/*#__PURE__*/_jsxs(\"div\",{style:buttonStyle,children:[/*#__PURE__*/_jsx(\"div\",{style:iconContainerStyle,dangerouslySetInnerHTML:{__html:iconSvg}}),/*#__PURE__*/_jsxs(\"div\",{style:textContainerStyle,children:[/*#__PURE__*/_jsx(\"div\",{style:titleStyle,children:title}),/*#__PURE__*/_jsx(\"div\",{style:subtitleStyle,children:subtitle})]})]})})]});}// Default properties\nIconTitleButton.defaultProps={title:\"Nebula\",subtitle:\"Powerful AI for Blockchain\",link:\"#\",borderRadius:6,borderColor:\"#262626\",iconSize:32,iconGap:12,textGap:2,paddingLeft:0,paddingRight:0,paddingTop:0,paddingBottom:0,titleColor:\"#FFFFFF\",subtitleColor:\"#A3A3A3\",backgroundColor:\"transparent\",trackingEvent:\"clicked_icon_title_button\",width:320,height:40};// Property controls for the Framer canvas\naddPropertyControls(IconTitleButton,{title:{type:ControlType.String,title:\"Title\",defaultValue:\"Nebula\"},subtitle:{type:ControlType.String,title:\"Subtitle\",defaultValue:\"Powerful AI for Blockchain\"},iconSvg:{type:ControlType.String,title:\"Icon SVG\",defaultValue:`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 200 200\" fill=\"none\">\n        <path d=\"M100 170C138.66 170 170 138.66 170 100C170 61.34 138.66 30 100 30C61.34 30 30 61.34 30 100C30 138.66 61.34 170 100 170Z\" stroke=\"white\" stroke-width=\"8\"/>\n        <circle cx=\"80\" cy=\"80\" r=\"10\" fill=\"white\"/>\n        <circle cx=\"120\" cy=\"80\" r=\"10\" fill=\"white\"/>\n        <path d=\"M65 130C65 130 75 110 100 110C125 110 135 130 135 130\" stroke=\"white\" stroke-width=\"8\" stroke-linecap=\"round\"/>\n        </svg>`},link:{type:ControlType.String,title:\"Link URL\",defaultValue:\"#\"},borderRadius:{type:ControlType.Number,title:\"Border Radius\",defaultValue:6,min:0,max:16,step:1},borderColor:{type:ControlType.Color,title:\"Border Color\",defaultValue:\"#262626\"},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"transparent\"},iconSize:{type:ControlType.Number,title:\"Icon Size\",defaultValue:24,min:14,max:64,step:1},iconGap:{type:ControlType.Number,title:\"Icon Gap\",defaultValue:12,min:0,max:24,step:1},textGap:{type:ControlType.Number,title:\"Text Gap\",defaultValue:2,min:0,max:16,step:1},paddingLeft:{type:ControlType.Number,title:\"Padding Left\",defaultValue:0,min:0,max:40,step:1},paddingRight:{type:ControlType.Number,title:\"Padding Right\",defaultValue:0,min:0,max:40,step:1},paddingTop:{type:ControlType.Number,title:\"Padding Top\",defaultValue:0,min:0,max:40,step:1},paddingBottom:{type:ControlType.Number,title:\"Padding Bottom\",defaultValue:0,min:0,max:40,step:1},titleColor:{type:ControlType.Color,title:\"Title Color\",defaultValue:\"#FFFFFF\"},subtitleColor:{type:ControlType.Color,title:\"Subtitle Color\",defaultValue:\"#A3A3A3\"},trackingEvent:{type:ControlType.String,title:\"Tracking Event Name\",defaultValue:\"clicked_icon_title_button\"},trackingProperties:{type:ControlType.String,title:\"Tracking Properties (JSON)\",defaultValue:'{\"location\": \"header\", \"type\": \"navigation\"}'}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"IconTitleButton\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Navigation_Button.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Recursos\"})});export const v1=\"Panel de control\";export const v2=\"Gestiona y analiza la actividad de los contratos\";export const v3=\"Herramientas para crear, desarrollar y desplegar aplicaciones web3\";export const v4=\"Simulador de Transacciones\";export const v5=\"Crea y despliega contratos inteligentes\";export const v6=\"Convertidor de Wei\";export const v7=\"Convertir Wei\";export const v8=\"Convertidor Hexadecimal\";export const v9=\"Convertir Hexadecimal\";export const v10=\"Convertidor de Tiempo Unix\";export const v11=\"Convertir tiempo Unix\";export const v12=\"Convertidor Keccak 256\";export const v13=\"Convertir Keccak 256\";export const v14=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Herramientas de Desarrollo\"})});export const v15=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Herramientas de Desarrollo\"})});export const v16=\"Integra web3 en tu aplicaci\\xf3n\";export const v17=\"Componentes y hooks para monederos\";export const v18=\"Componentes nativos de React para aplicaciones m\\xf3viles\";export const v19=\"Desarrolla juegos con blockchain y web3\";export const v20=\"Crea contratos inteligentes personalizados de manera eficiente\";export const v21=\"Construye aplicaciones .NET y juegos con Godot\";export const v22=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Producto\"})});export const v23=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Producto\"})});export const v24=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Recursos\"})});export const v25=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Recursos\"})});export const v26=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Soluciones\"})});export const v27=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Soluciones\"})});export const v28=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Herramientas de Desarrollo\"})});export const v29=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Empresa\"})});export const v30=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Empresa\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v22\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v24\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v25\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v27\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v28\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v21\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v29\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v30\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v26\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v23\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3d3d426)\nimport*as localizedValues from\"./FJcN2qQXX-0.js\";const valuesByLocaleId={qTyE5haF3:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (99f3353)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,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/vuYJjvBKWw39av0kGo34/z2CyEUwQik5Zo5R29o6x/NTBX0l6Io.js\";const enabledGestures={xNFM592PV:{hover:true}};const cycleOrder=[\"xNFM592PV\",\"I0Z7swbBW\"];const serializationHash=\"framer-VYOXg\";const variantClassNames={I0Z7swbBW:\"framer-v-2czza5\",xNFM592PV:\"framer-v-6cmprs\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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:\"xNFM592PV\",Mobile:\"I0Z7swbBW\"};const getProps=({description,height,id,image,link,title,width,...props})=>{return{...props,DZKmBZ71m:link??props.DZKmBZ71m,f_OWzkWPM:description??props.f_OWzkWPM??\"Onboard, authenticate and manage users\",sEqIccMsb:image??props.sEqIccMsb??{pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/YDgfiQR4D0XR23KHli0hzYlKsY.png\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"xNFM592PV\",x7ezT7rx8:title??props.x7ezT7rx8??\"Connect\"};};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,x7ezT7rx8,f_OWzkWPM,DZKmBZ71m,sEqIccMsb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xNFM592PV\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"I0Z7swbBW\")return false;return true;};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:DZKmBZ71m,motionChild:true,nodeId:\"xNFM592PV\",openInNewTab:false,scopeId:\"bYhiwO7QJ\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-6cmprs\",className,classNames)} framer-wg4a46`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"xNFM592PV\",ref:refBinding,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({\"xNFM592PV-hover\":{\"data-framer-name\":undefined},I0Z7swbBW:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-flzjva\",layoutDependency:layoutDependency,layoutId:\"Ipha2lmmN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ubpzgo\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"sjQ7o48r3\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-f596dd75-4366-457f-a18a-6f599542eefd, rgb(0, 0, 0))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},variants:{\"xNFM592PV-hover\":{backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(15, 15, 15))\"},I0Z7swbBW:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-182)/2)+75+0+6),sizes:\"20px\",...toResponsiveImage(sEqIccMsb),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1vg2uc0\",layoutDependency:layoutDependency,layoutId:\"tG6MigmbN\",...addPropertyOverrides({I0Z7swbBW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(12+((componentViewport?.height||48)-24-120)/2)+52+0+-2),sizes:\"20px\",...toResponsiveImage(sEqIccMsb),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a06hld\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"GX1Fja2Vp\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1etuv7b\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"DEravAgnS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-npxqny\",\"data-styles-preset\":\"NTBX0l6Io\",children:\"Connect\"})}),className:\"framer-yp09q5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RsKhhMYUk\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:x7ezT7rx8,variants:{I0Z7swbBW:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({I0Z7swbBW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Connect\"})}),fonts:[\"Inter-Medium\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Onboard, authenticate and manage users\"})}),className:\"framer-1legyuc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dy8Ziwaoc\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},text:f_OWzkWPM,variants:{\"xNFM592PV-hover\":{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"xNFM592PV-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Onboard, authenticate and manage users\"})})}},baseVariant,gestureVariant)})]})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VYOXg.framer-wg4a46, .framer-VYOXg .framer-wg4a46 { display: block; }\",\".framer-VYOXg.framer-6cmprs { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px; position: relative; text-decoration: none; width: 332px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VYOXg .framer-flzjva { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-VYOXg .framer-1ubpzgo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VYOXg .framer-1vg2uc0 { flex: none; height: 20px; overflow: hidden; position: relative; width: 20px; }\",\".framer-VYOXg .framer-1a06hld { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-VYOXg .framer-1etuv7b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VYOXg .framer-yp09q5, .framer-VYOXg .framer-1legyuc { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VYOXg.framer-6cmprs, .framer-VYOXg .framer-flzjva, .framer-VYOXg .framer-1ubpzgo, .framer-VYOXg .framer-1a06hld, .framer-VYOXg .framer-1etuv7b { gap: 0px; } .framer-VYOXg.framer-6cmprs > *, .framer-VYOXg .framer-flzjva > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-VYOXg.framer-6cmprs > :first-child, .framer-VYOXg .framer-flzjva > :first-child { margin-left: 0px; } .framer-VYOXg.framer-6cmprs > :last-child, .framer-VYOXg .framer-flzjva > :last-child { margin-right: 0px; } .framer-VYOXg .framer-1ubpzgo > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-VYOXg .framer-1ubpzgo > :first-child, .framer-VYOXg .framer-1a06hld > :first-child, .framer-VYOXg .framer-1etuv7b > :first-child { margin-top: 0px; } .framer-VYOXg .framer-1ubpzgo > :last-child, .framer-VYOXg .framer-1a06hld > :last-child, .framer-VYOXg .framer-1etuv7b > :last-child { margin-bottom: 0px; } .framer-VYOXg .framer-1a06hld > *, .framer-VYOXg .framer-1etuv7b > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",\".framer-VYOXg.framer-v-2czza5.framer-6cmprs { cursor: unset; height: 48px; }\",\".framer-VYOXg.framer-v-2czza5 .framer-1ubpzgo { height: 16px; width: 16px; will-change: unset; }\",...sharedStyle.css,'.framer-VYOXg[data-border=\"true\"]::after, .framer-VYOXg [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 62\n * @framerIntrinsicWidth 332\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"I0Z7swbBW\":{\"layout\":[\"fixed\",\"fixed\"]},\"twCjmx39u\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"x7ezT7rx8\":\"title\",\"f_OWzkWPM\":\"description\",\"DZKmBZ71m\":\"link\",\"sEqIccMsb\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerbYhiwO7QJ=withCSS(Component,css,\"framer-VYOXg\");export default FramerbYhiwO7QJ;FramerbYhiwO7QJ.displayName=\"Navigation / Navigation Dropdown Item\";FramerbYhiwO7QJ.defaultProps={height:62,width:332};addPropertyControls(FramerbYhiwO7QJ,{variant:{options:[\"xNFM592PV\",\"I0Z7swbBW\"],optionTitles:[\"Default\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},x7ezT7rx8:{defaultValue:\"Connect\",displayTextArea:false,title:\"Title\",type:ControlType.String},f_OWzkWPM:{defaultValue:\"Onboard, authenticate and manage users\",displayTextArea:false,title:\"Description\",type:ControlType.String},DZKmBZ71m:{title:\"Link\",type:ControlType.Link},sEqIccMsb:{__defaultAssetReference:\"data:framer/asset-reference,YDgfiQR4D0XR23KHli0hzYlKsY.png?originalFilename=icon-sign-in.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerbYhiwO7QJ,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbYhiwO7QJ\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"x7ezT7rx8\\\":\\\"title\\\",\\\"f_OWzkWPM\\\":\\\"description\\\",\\\"DZKmBZ71m\\\":\\\"link\\\",\\\"sEqIccMsb\\\":\\\"image\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"62\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"332\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"I0Z7swbBW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"twCjmx39u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bYhiwO7QJ.map", "// Generated by Framer (3d3d426)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js\";import IconTitleButton from\"https://framerusercontent.com/modules/koA7A8l64Nrz6c0c2TLS/v7AXMv43LvcpIxpOQZ74/Navigation_Button.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/ZkUPzYmBEOFvbl6Casxt/05bLYB4H6uopChCLYdgR/FJcN2qQXX.js\";import NavigationNavigationDropdownItem from\"https://framerusercontent.com/modules/KR3p09L6Yg5goiriyrHL/Q4V5uE0bU8ZcrIhOFKgQ/bYhiwO7QJ.js\";const IconTitleButtonFonts=getFonts(IconTitleButton);const NavigationNavigationDropdownItemFonts=getFonts(NavigationNavigationDropdownItem);const SVGFonts=getFonts(SVG);const cycleOrder=[\"bH2emI93a\",\"ScahxRD97\",\"kLcJZnmEd\",\"Nz2AbCewU\",\"dez9JJdxV\",\"rR2_PuvFN\",\"XRZmrqXWr\",\"Nn65t9o0Z\",\"R2o9ed1nb\",\"Atz5daY8g\",\"T8sMIMJ9w\",\"vNbhnXS57\",\"LAig6L3qM\",\"e3yhbEX_d\",\"jqryaPGGn\",\"xzgIV8Sif\"];const serializationHash=\"framer-9fW4m\";const variantClassNames={Atz5daY8g:\"framer-v-q38cf6\",bH2emI93a:\"framer-v-uk38wi\",dez9JJdxV:\"framer-v-stlnfj\",e3yhbEX_d:\"framer-v-qr82pp\",jqryaPGGn:\"framer-v-17qx3ra\",kLcJZnmEd:\"framer-v-zjrthp\",LAig6L3qM:\"framer-v-1a5r6r6\",Nn65t9o0Z:\"framer-v-1hhfutz\",Nz2AbCewU:\"framer-v-rg7b9k\",R2o9ed1nb:\"framer-v-l4d7s2\",rR2_PuvFN:\"framer-v-huml0j\",ScahxRD97:\"framer-v-mfldsd\",T8sMIMJ9w:\"framer-v-1ngqe30\",vNbhnXS57:\"framer-v-12ztrlz\",XRZmrqXWr:\"framer-v-1100gup\",xzgIV8Sif:\"framer-v-solkdp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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={\"Desktop: Company\":\"kLcJZnmEd\",\"Desktop: Developer\":\"Nz2AbCewU\",\"Desktop: Products\":\"bH2emI93a\",\"Desktop: Solutions\":\"ScahxRD97\",\"Mobile: Company Collapsed\":\"Atz5daY8g\",\"Mobile: Company Expanded\":\"XRZmrqXWr\",\"Mobile: Developers - Dev Tools Collapsed\":\"jqryaPGGn\",\"Mobile: Developers - Dev Tools Expanded\":\"vNbhnXS57\",\"Mobile: Developers - Resources Collapsed\":\"e3yhbEX_d\",\"Mobile: Developers - Resources Expanded\":\"T8sMIMJ9w\",\"Mobile: Developers - SDKs Collapsed\":\"xzgIV8Sif\",\"Mobile: Developers - SDKS Expanded\":\"LAig6L3qM\",\"Mobile: Products Collapsed\":\"Nn65t9o0Z\",\"Mobile: Products Expanded\":\"dez9JJdxV\",\"Mobile: Solutions Collapsed\":\"R2o9ed1nb\",\"Mobile: Solutions Expanded\":\"rR2_PuvFN\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"bH2emI93a\"};};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:\"bH2emI93a\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1geafuf=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"dez9JJdxV\");});const onTap13ae4zz=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"rR2_PuvFN\");});const onTap1do3b0p=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"XRZmrqXWr\");});const onTapdxuk8t=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"T8sMIMJ9w\");});const onTap7z0szf=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"vNbhnXS57\");});const onTap1asgkxe=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"LAig6L3qM\");});const onTapzhqlim=activeVariantCallback(async(...args)=>{setVariant(\"Nn65t9o0Z\");});const onTap10o7lfq=activeVariantCallback(async(...args)=>{setVariant(\"e3yhbEX_d\");});const onTapd1asq2=activeVariantCallback(async(...args)=>{setVariant(\"xzgIV8Sif\");});const onTap15te8ni=activeVariantCallback(async(...args)=>{setVariant(\"R2o9ed1nb\");});const onTapeylbgt=activeVariantCallback(async(...args)=>{setVariant(\"jqryaPGGn\");});const onTap1gcbvu9=activeVariantCallback(async(...args)=>{setVariant(\"Atz5daY8g\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Nn65t9o0Z\",\"R2o9ed1nb\",\"Atz5daY8g\",\"vNbhnXS57\",\"LAig6L3qM\",\"e3yhbEX_d\",\"jqryaPGGn\",\"xzgIV8Sif\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"kLcJZnmEd\",\"XRZmrqXWr\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"ScahxRD97\",\"kLcJZnmEd\",\"Nz2AbCewU\",\"rR2_PuvFN\",\"XRZmrqXWr\",\"T8sMIMJ9w\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"ScahxRD97\",\"rR2_PuvFN\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"Nz2AbCewU\",\"T8sMIMJ9w\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"Nz2AbCewU\")return true;return false;};const isDisplayed6=()=>{if([\"Nz2AbCewU\",\"vNbhnXS57\"].includes(baseVariant))return true;return false;};const isDisplayed7=()=>{if([\"Nz2AbCewU\",\"vNbhnXS57\"].includes(baseVariant))return false;return true;};const isDisplayed8=()=>{if(baseVariant===\"vNbhnXS57\")return false;return true;};const isDisplayed9=()=>{if([\"Nz2AbCewU\",\"LAig6L3qM\"].includes(baseVariant))return true;return false;};const isDisplayed10=()=>{if([\"Nz2AbCewU\",\"LAig6L3qM\"].includes(baseVariant))return false;return true;};const isDisplayed11=()=>{if(baseVariant===\"Nz2AbCewU\")return false;return true;};const isDisplayed12=()=>{if(baseVariant===\"LAig6L3qM\")return false;return true;};const isDisplayed13=()=>{if([\"dez9JJdxV\",\"Nn65t9o0Z\",\"T8sMIMJ9w\",\"LAig6L3qM\",\"e3yhbEX_d\",\"xzgIV8Sif\"].includes(baseVariant))return true;return false;};const isDisplayed14=()=>{if([\"rR2_PuvFN\",\"R2o9ed1nb\",\"vNbhnXS57\",\"jqryaPGGn\"].includes(baseVariant))return true;return false;};const isDisplayed15=()=>{if([\"XRZmrqXWr\",\"Atz5daY8g\"].includes(baseVariant))return true;return false;};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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-uk38wi\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop: Products\",layoutDependency:layoutDependency,layoutId:\"bH2emI93a\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-f596dd75-4366-457f-a18a-6f599542eefd, rgb(0, 0, 0))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{Atz5daY8g:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},dez9JJdxV:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},e3yhbEX_d:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},jqryaPGGn:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},LAig6L3qM:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},Nn65t9o0Z:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},R2o9ed1nb:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},rR2_PuvFN:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},T8sMIMJ9w:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},vNbhnXS57:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},XRZmrqXWr:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},xzgIV8Sif:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({Atz5daY8g:{\"data-framer-name\":\"Mobile: Company Collapsed\",\"data-highlight\":true,onTap:onTap1do3b0p},dez9JJdxV:{\"data-framer-name\":\"Mobile: Products Expanded\"},e3yhbEX_d:{\"data-framer-name\":\"Mobile: Developers - Resources Collapsed\",\"data-highlight\":true,onTap:onTapdxuk8t},jqryaPGGn:{\"data-framer-name\":\"Mobile: Developers - Dev Tools Collapsed\",\"data-highlight\":true,onTap:onTap7z0szf},kLcJZnmEd:{\"data-framer-name\":\"Desktop: Company\"},LAig6L3qM:{\"data-framer-name\":\"Mobile: Developers - SDKS Expanded\"},Nn65t9o0Z:{\"data-framer-name\":\"Mobile: Products Collapsed\",\"data-highlight\":true,onTap:onTap1geafuf},Nz2AbCewU:{\"data-framer-name\":\"Desktop: Developer\"},R2o9ed1nb:{\"data-framer-name\":\"Mobile: Solutions Collapsed\",\"data-highlight\":true,onTap:onTap13ae4zz},rR2_PuvFN:{\"data-framer-name\":\"Mobile: Solutions Expanded\"},ScahxRD97:{\"data-framer-name\":\"Desktop: Solutions\"},T8sMIMJ9w:{\"data-framer-name\":\"Mobile: Developers - Resources Expanded\"},vNbhnXS57:{\"data-framer-name\":\"Mobile: Developers - Dev Tools Expanded\"},XRZmrqXWr:{\"data-framer-name\":\"Mobile: Company Expanded\"},xzgIV8Sif:{\"data-framer-name\":\"Mobile: Developers - SDKs Collapsed\",\"data-highlight\":true,onTap:onTap1asgkxe}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ksf9ra\",\"data-framer-name\":\"Row 1\",layoutDependency:layoutDependency,layoutId:\"KD6XFgOHK\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-va4txx\",layoutDependency:layoutDependency,layoutId:\"aTinq8Xri\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2jy6km-container\",\"data-framer-name\":\"Careers Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"oT8Kl4Y6O-container\",name:\"Careers Tracked\",nodeId:\"oT8Kl4Y6O\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M8 21V7C8 6.07003 8 5.60504 8.10222 5.22354C8.37962 4.18827 9.18827 3.37962 10.2235 3.10222C10.605 3 11.07 3 12 3C12.93 3 13.395 3 13.7765 3.10222C14.8117 3.37962 15.6204 4.18827 15.8978 5.22354C16 5.60504 16 6.07003 16 7V21M5.2 21H18.8C19.9201 21 20.4802 21 20.908 20.782C21.2843 20.5903 21.5903 20.2843 21.782 19.908C22 19.4802 22 18.9201 22 17.8V10.2C22 9.07989 22 8.51984 21.782 8.09202C21.5903 7.71569 21.2843 7.40973 20.908 7.21799C20.4802 7 19.9201 7 18.8 7H5.2C4.07989 7 3.51984 7 3.09202 7.21799C2.71569 7.40973 2.40973 7.71569 2.21799 8.09202C2 8.51984 2 9.07989 2 10.2V17.8C2 18.9201 2 19.4802 2.21799 19.908C2.40973 20.2843 2.71569 20.5903 3.09202 20.782C3.51984 21 4.0799 21 5.2 21Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"oT8Kl4Y6O\",layoutId:\"oT8Kl4Y6O\",link:\"https://wellfound.com/company/thirdweb-1/jobs\",name:\"Careers Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Open job positions at thirdweb\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Careers\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_careers_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4lsc77-container\",\"data-framer-name\":\"Startup Program Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"WpQROKetc-container\",name:\"Startup Program Tracked\",nodeId:\"WpQROKetc\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M11 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V13M12 8H16V12M15.5 3.5V2M19.4393 4.56066L20.5 3.5M20.5103 8.5H22.0103M3 13.3471C3.65194 13.4478 4.31987 13.5 5 13.5C9.38636 13.5 13.2653 11.3276 15.6197 8\" stroke=\"#FAFAFA\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"WpQROKetc\",layoutId:\"WpQROKetc\",link:\"https://thirdweb.com/community/startup-program\",name:\"Startup Program Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Accelerator program for web3\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Startup Program\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_startupprogram_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1f44o44-container\",\"data-framer-name\":\"Ambassadors Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"Ajw5htu6Q-container\",name:\"Ambassadors Tracked\",nodeId:\"Ajw5htu6Q\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M13.5 6.5H19.7056C20.1342 6.5 20.3485 6.5 20.4776 6.59027C20.5903 6.6691 20.6655 6.79086 20.6856 6.92692C20.7086 7.08273 20.6128 7.27442 20.4211 7.65777L19.1688 10.1623C19.1068 10.2864 19.0758 10.3485 19.0626 10.4137C19.051 10.4714 19.0496 10.5308 19.0586 10.5891C19.0688 10.6548 19.097 10.7182 19.1533 10.845L20.5 13.8751C20.6667 14.25 20.75 14.4374 20.7227 14.5888C20.6988 14.721 20.6227 14.8381 20.5116 14.9136C20.3844 15 20.1793 15 19.769 15H12.1C11.5399 15 11.2599 15 11.046 14.891C10.8578 14.7951 10.7049 14.6422 10.609 14.454C10.5 14.2401 10.5 13.9601 10.5 13.4V11M3 21L3 3.5M3 11H11.9C12.4601 11 12.7401 11 12.954 10.891C13.1422 10.7951 13.2951 10.6422 13.391 10.454C13.5 10.2401 13.5 9.96005 13.5 9.4V4.1C13.5 3.53995 13.5 3.25992 13.391 3.04601C13.2951 2.85785 13.1422 2.70487 12.954 2.60899C12.7401 2.5 12.4601 2.5 11.9 2.5L4.6 2.5C4.03995 2.5 3.75992 2.5 3.54601 2.60899C3.35785 2.70487 3.20487 2.85785 3.10899 3.04601C3 3.25992 3 3.53995 3 4.1V11Z\" stroke=\"#FAFAFA\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"Ajw5htu6Q\",layoutId:\"Ajw5htu6Q\",link:\"https://thirdweb.com/community/ambassadors\",name:\"Ambassadors Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Curated builder program\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Ambassadors\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_ambassadors_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7wzewl-container\",\"data-framer-name\":\"Superchain Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"kvy2XE9Ot-container\",name:\"Superchain Tracked\",nodeId:\"kvy2XE9Ot\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M19 10L4.99997 10M19 10L20.8641 13.1069C21.2819 13.8032 21.4908 14.1514 21.5993 14.5262C21.6954 14.8582 21.7334 15.2045 21.7116 15.5495C21.687 15.9389 21.5586 16.324 21.3018 17.0944L21.094 17.7179C20.7006 18.8981 20.5039 19.4882 20.139 19.9245C19.8168 20.3098 19.4031 20.608 18.9357 20.7918C18.4064 21 17.7844 21 16.5403 21L7.45961 21C6.21554 21 5.5935 21 5.06423 20.7918C4.59684 20.608 4.18309 20.3098 3.8609 19.9245C3.49605 19.4882 3.29934 18.8981 2.90593 17.7179L2.6981 17.0944C2.44131 16.324 2.31292 15.9389 2.28832 15.5495C2.26652 15.2044 2.30452 14.8582 2.40065 14.5261C2.50914 14.1514 2.71803 13.8032 3.13581 13.1069L4.99997 10M19 10L19.4172 8.53955C19.6151 7.84717 19.714 7.50097 19.6363 7.22708C19.5682 6.98715 19.4129 6.78132 19.2009 6.64996C18.9589 6.5 18.5989 6.5 17.8788 6.5L6.12113 6.5C5.40104 6.5 5.04099 6.5 4.79898 6.64996C4.58699 6.78132 4.43173 6.98715 4.36366 7.22708C4.28596 7.50097 4.38487 7.84717 4.5827 8.53955L4.99997 10M12 6.5H8.46425C7.94329 6.5 7.44367 6.28929 7.07529 5.91421C6.70692 5.53914 6.49997 5.03043 6.49997 4.5C6.49997 3.96957 6.70692 3.46086 7.07529 3.08579C7.44367 2.71071 7.94329 2.5 8.46425 2.5C11.2143 2.5 12 6.5 12 6.5ZM12 6.5H15.5357C16.0566 6.5 16.5563 6.28929 16.9246 5.91421C17.293 5.53914 17.5 5.03043 17.5 4.5C17.5 3.96957 17.293 3.46086 16.9246 3.08579C16.5563 2.71071 16.0566 2.5 15.5357 2.5C12.7857 2.5 12 6.5 12 6.5Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"kvy2XE9Ot\",layoutId:\"kvy2XE9Ot\",link:\"https://thirdweb.com/grant/superchain\",name:\"Superchain Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"$3m fund for Superchain network\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Superchain\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_superchain_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-klpwyg-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"WrQHyqNqU-container\",nodeId:\"WrQHyqNqU\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <mask id=\"path-1-outside-1_1881_23311\" maskUnits=\"userSpaceOnUse\" x=\"1\" y=\"1.927\" width=\"22\" height=\"20\" fill=\"black\">     <rect fill=\"white\" x=\"1\" y=\"1.927\" width=\"22\" height=\"20\"/>     <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.16414 8.1629C10.1241 6.20299 12.354 4.97867 14.3195 4.53316C16.3061 4.08284 17.8037 4.45634 18.6742 5.32686C19.4724 6.12503 19.8527 7.45033 19.5633 9.1965C19.4346 9.17859 19.3032 9.16933 19.1696 9.16933C17.6064 9.16933 16.3392 10.4365 16.3392 11.9997C16.3392 12.8524 16.7162 13.617 17.3127 14.1359C16.8797 14.7163 16.3878 15.2872 15.8381 15.8369C13.8782 17.7968 11.6483 19.0211 9.68283 19.4667C7.69614 19.917 6.19861 19.5435 5.32809 18.673C4.52753 17.8724 4.14731 16.5415 4.44162 14.7876C4.56871 14.8051 4.69848 14.8141 4.83037 14.8141C6.39354 14.8141 7.66074 13.5469 7.66074 11.9837C7.66074 11.1353 7.28741 10.374 6.69606 9.85526C7.1275 9.27786 7.61718 8.70987 8.16414 8.1629ZM4.32713 19.6739C3.03516 18.3819 2.66477 16.4049 3.10596 14.2283C2.43341 13.7109 2 12.8979 2 11.9837C2 10.4206 3.2672 9.15336 4.83037 9.15336C5.02952 9.15336 5.22386 9.17393 5.4114 9.21306C5.92173 8.50728 6.50686 7.81827 7.16318 7.16195C11.4014 2.92371 17.0032 1.65397 19.6751 4.3259C20.9646 5.61538 21.3361 7.58723 20.8989 9.75889C21.5686 10.2765 21.9999 11.0877 21.9999 11.9997C21.9999 13.5629 20.7327 14.8301 19.1696 14.8301C18.9748 14.8301 18.7846 14.8104 18.6009 14.7729C18.0882 15.4835 17.4997 16.1773 16.8391 16.8379C12.6009 21.0761 6.99906 22.3458 4.32713 19.6739ZM17.7544 11.9997C17.7544 11.2181 18.388 10.5845 19.1696 10.5845C19.9511 10.5845 20.5847 11.2181 20.5847 11.9997C20.5847 12.7813 19.9511 13.4149 19.1696 13.4149C18.388 13.4149 17.7544 12.7813 17.7544 11.9997ZM4.83037 10.5685C4.04878 10.5685 3.41518 11.2021 3.41518 11.9837C3.41518 12.7653 4.04878 13.3989 4.83037 13.3989C5.61195 13.3989 6.24555 12.7653 6.24555 11.9837C6.24555 11.2021 5.61195 10.5685 4.83037 10.5685ZM13.6504 11.9838C13.6504 12.8957 12.9112 13.6349 11.9993 13.6349C11.0875 13.6349 10.3483 12.8957 10.3483 11.9838C10.3483 11.072 11.0875 10.3328 11.9993 10.3328C12.9112 10.3328 13.6504 11.072 13.6504 11.9838Z\"/>   </mask>   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.16414 8.1629C10.1241 6.20299 12.354 4.97867 14.3195 4.53316C16.3061 4.08284 17.8037 4.45634 18.6742 5.32686C19.4724 6.12503 19.8527 7.45033 19.5633 9.1965C19.4346 9.17859 19.3032 9.16933 19.1696 9.16933C17.6064 9.16933 16.3392 10.4365 16.3392 11.9997C16.3392 12.8524 16.7162 13.617 17.3127 14.1359C16.8797 14.7163 16.3878 15.2872 15.8381 15.8369C13.8782 17.7968 11.6483 19.0211 9.68283 19.4667C7.69614 19.917 6.19861 19.5435 5.32809 18.673C4.52753 17.8724 4.14731 16.5415 4.44162 14.7876C4.56871 14.8051 4.69848 14.8141 4.83037 14.8141C6.39354 14.8141 7.66074 13.5469 7.66074 11.9837C7.66074 11.1353 7.28741 10.374 6.69606 9.85526C7.1275 9.27786 7.61718 8.70987 8.16414 8.1629ZM4.32713 19.6739C3.03516 18.3819 2.66477 16.4049 3.10596 14.2283C2.43341 13.7109 2 12.8979 2 11.9837C2 10.4206 3.2672 9.15336 4.83037 9.15336C5.02952 9.15336 5.22386 9.17393 5.4114 9.21306C5.92173 8.50728 6.50686 7.81827 7.16318 7.16195C11.4014 2.92371 17.0032 1.65397 19.6751 4.3259C20.9646 5.61538 21.3361 7.58723 20.8989 9.75889C21.5686 10.2765 21.9999 11.0877 21.9999 11.9997C21.9999 13.5629 20.7327 14.8301 19.1696 14.8301C18.9748 14.8301 18.7846 14.8104 18.6009 14.7729C18.0882 15.4835 17.4997 16.1773 16.8391 16.8379C12.6009 21.0761 6.99906 22.3458 4.32713 19.6739ZM17.7544 11.9997C17.7544 11.2181 18.388 10.5845 19.1696 10.5845C19.9511 10.5845 20.5847 11.2181 20.5847 11.9997C20.5847 12.7813 19.9511 13.4149 19.1696 13.4149C18.388 13.4149 17.7544 12.7813 17.7544 11.9997ZM4.83037 10.5685C4.04878 10.5685 3.41518 11.2021 3.41518 11.9837C3.41518 12.7653 4.04878 13.3989 4.83037 13.3989C5.61195 13.3989 6.24555 12.7653 6.24555 11.9837C6.24555 11.2021 5.61195 10.5685 4.83037 10.5685ZM13.6504 11.9838C13.6504 12.8957 12.9112 13.6349 11.9993 13.6349C11.0875 13.6349 10.3483 12.8957 10.3483 11.9838C10.3483 11.072 11.0875 10.3328 11.9993 10.3328C12.9112 10.3328 13.6504 11.072 13.6504 11.9838Z\" fill=\"white\"/>   <path d=\"M14.3195 4.53316L14.3637 4.72821L14.3637 4.72821L14.3195 4.53316ZM18.6742 5.32686L18.8156 5.18543L18.8156 5.18543L18.6742 5.32686ZM19.5633 9.1965L19.5357 9.39459L19.7287 9.42145L19.7606 9.2292L19.5633 9.1965ZM17.3127 14.1359L17.473 14.2555L17.5839 14.1068L17.444 13.985L17.3127 14.1359ZM15.8381 15.8369L15.9796 15.9783L15.9796 15.9783L15.8381 15.8369ZM9.68283 19.4667L9.72704 19.6617L9.72704 19.6617L9.68283 19.4667ZM5.32809 18.673L5.18667 18.8144L5.18667 18.8144L5.32809 18.673ZM4.44162 14.7876L4.46884 14.5895L4.2765 14.5631L4.24438 14.7545L4.44162 14.7876ZM6.69606 9.85526L6.53585 9.73554L6.42517 9.88367L6.56417 10.0056L6.69606 9.85526ZM3.10596 14.2283L3.30197 14.268L3.32674 14.1458L3.22792 14.0698L3.10596 14.2283ZM4.32713 19.6739L4.46855 19.5325L4.46855 19.5325L4.32713 19.6739ZM5.4114 9.21306L5.37055 9.40884L5.49749 9.43533L5.57347 9.33025L5.4114 9.21306ZM7.16318 7.16195L7.02176 7.02053L7.02176 7.02053L7.16318 7.16195ZM19.6751 4.3259L19.5337 4.46732L19.5337 4.46732L19.6751 4.3259ZM20.8989 9.75889L20.7028 9.71942L20.6783 9.84118L20.7766 9.91714L20.8989 9.75889ZM18.6009 14.7729L18.6409 14.577L18.5143 14.5511L18.4387 14.6559L18.6009 14.7729ZM16.8391 16.8379L16.9805 16.9793L16.9805 16.9793L16.8391 16.8379ZM14.2752 4.3381C12.2676 4.79318 10.0051 6.03906 8.02272 8.02148L8.30556 8.30433C10.243 6.36691 12.4404 5.16415 14.3637 4.72821L14.2752 4.3381ZM18.8156 5.18543C17.8798 4.24959 16.302 3.87871 14.2752 4.3381L14.3637 4.72821C16.3103 4.28696 17.7276 4.66309 18.5328 5.46828L18.8156 5.18543ZM19.7606 9.2292C20.0568 7.44178 19.6734 6.04322 18.8156 5.18543L18.5328 5.46828C19.2713 6.20684 19.6486 7.45888 19.366 9.16379L19.7606 9.2292ZM19.1696 9.36933C19.2939 9.36933 19.4161 9.37795 19.5357 9.39459L19.5909 8.99841C19.4531 8.97923 19.3124 8.96933 19.1696 8.96933V9.36933ZM16.5392 11.9997C16.5392 10.547 17.7168 9.36933 19.1696 9.36933V8.96933C17.4959 8.96933 16.1392 10.3261 16.1392 11.9997H16.5392ZM17.444 13.985C16.8893 13.5024 16.5392 12.7921 16.5392 11.9997H16.1392C16.1392 12.9127 16.5432 13.7315 17.1814 14.2868L17.444 13.985ZM15.9796 15.9783C16.536 15.4219 17.0342 14.8436 17.473 14.2555L17.1524 14.0163C16.7252 14.5889 16.2397 15.1526 15.6967 15.6955L15.9796 15.9783ZM9.72704 19.6617C11.7347 19.2066 13.9971 17.9608 15.9796 15.9783L15.6967 15.6955C13.7593 17.6329 11.5619 18.8357 9.63862 19.2716L9.72704 19.6617ZM5.18667 18.8144C6.12251 19.7502 7.70032 20.1211 9.72704 19.6617L9.63862 19.2716C7.69195 19.7129 6.2747 19.3367 5.46951 18.5315L5.18667 18.8144ZM4.24438 14.7545C3.94315 16.5497 4.32631 17.954 5.18667 18.8144L5.46951 18.5315C4.72875 17.7908 4.35147 16.5334 4.63886 14.8207L4.24438 14.7545ZM4.83037 14.6141C4.70762 14.6141 4.58693 14.6057 4.46884 14.5895L4.4144 14.9858C4.55048 15.0044 4.68935 15.0141 4.83037 15.0141V14.6141ZM7.46074 11.9837C7.46074 13.4364 6.28308 14.6141 4.83037 14.6141V15.0141C6.50399 15.0141 7.86074 13.6574 7.86074 11.9837H7.46074ZM6.56417 10.0056C7.11407 10.488 7.46074 11.1953 7.46074 11.9837H7.86074C7.86074 11.0753 7.46075 10.26 6.82795 9.70491L6.56417 10.0056ZM8.02272 8.02148C7.46902 8.57518 6.97306 9.15042 6.53585 9.73554L6.85628 9.97497C7.28195 9.4053 7.76533 8.84455 8.30556 8.30433L8.02272 8.02148ZM2.90994 14.1886C2.46071 16.405 2.83023 18.4599 4.18571 19.8153L4.46855 19.5325C3.24009 18.304 2.86884 16.4049 3.30197 14.268L2.90994 14.1886ZM1.8 11.9837C1.8 12.9626 2.26436 13.8331 2.984 14.3868L3.22792 14.0698C2.60245 13.5886 2.2 12.8332 2.2 11.9837H1.8ZM4.83037 8.95336C3.15674 8.95336 1.8 10.3101 1.8 11.9837H2.2C2.2 10.531 3.37766 9.35336 4.83037 9.35336V8.95336ZM5.45225 9.01727C5.25136 8.97536 5.04333 8.95336 4.83037 8.95336V9.35336C5.01571 9.35336 5.19637 9.3725 5.37055 9.40884L5.45225 9.01727ZM7.02176 7.02053C6.358 7.68428 5.76595 8.38139 5.24933 9.09587L5.57347 9.33025C6.07751 8.63318 6.65572 7.95225 7.3046 7.30337L7.02176 7.02053ZM19.8166 4.18448C18.4148 2.78275 16.2657 2.43545 13.9623 2.95756C11.6559 3.48035 9.16337 4.87891 7.02176 7.02053L7.3046 7.30337C9.40123 5.20674 11.8287 3.85132 14.0507 3.34766C16.2758 2.84332 18.2635 3.19712 19.5337 4.46732L19.8166 4.18448ZM21.0949 9.79836C21.5401 7.58694 21.1694 5.53734 19.8166 4.18448L19.5337 4.46732C20.7598 5.69341 21.132 7.58753 20.7028 9.71942L21.0949 9.79836ZM22.1999 11.9997C22.1999 11.0232 21.7378 10.1545 21.0212 9.60064L20.7766 9.91714C21.3994 10.3985 21.7999 11.1523 21.7999 11.9997H22.1999ZM19.1696 15.0301C20.8432 15.0301 22.1999 13.6733 22.1999 11.9997H21.7999C21.7999 13.4524 20.6223 14.6301 19.1696 14.6301V15.0301ZM18.5609 14.9689C18.7577 15.009 18.9613 15.0301 19.1696 15.0301V14.6301C18.9883 14.6301 18.8115 14.6118 18.6409 14.577L18.5609 14.9689ZM16.9805 16.9793C17.6486 16.3112 18.2441 15.6093 18.7631 14.8899L18.4387 14.6559C17.9323 15.3577 17.3508 16.0433 16.6977 16.6964L16.9805 16.9793ZM4.18571 19.8153C5.58744 21.2171 7.73653 21.5644 10.04 21.0423C12.3464 20.5195 14.8389 19.1209 16.9805 16.9793L16.6977 16.6964C14.6011 18.7931 12.1736 20.1485 9.95154 20.6522C7.72653 21.1565 5.73876 20.8027 4.46855 19.5325L4.18571 19.8153ZM19.1696 10.3845C18.2775 10.3845 17.5544 11.1077 17.5544 11.9997H17.9544C17.9544 11.3286 18.4984 10.7845 19.1696 10.7845V10.3845ZM20.7847 11.9997C20.7847 11.1077 20.0616 10.3845 19.1696 10.3845V10.7845C19.8407 10.7845 20.3847 11.3286 20.3847 11.9997H20.7847ZM19.1696 13.6149C20.0616 13.6149 20.7847 12.8917 20.7847 11.9997H20.3847C20.3847 12.6708 19.8407 13.2149 19.1696 13.2149V13.6149ZM17.5544 11.9997C17.5544 12.8917 18.2775 13.6149 19.1696 13.6149V13.2149C18.4984 13.2149 17.9544 12.6708 17.9544 11.9997H17.5544ZM3.61518 11.9837C3.61518 11.3126 4.15924 10.7685 4.83037 10.7685V10.3685C3.93833 10.3685 3.21518 11.0917 3.21518 11.9837H3.61518ZM4.83037 13.1989C4.15924 13.1989 3.61518 12.6549 3.61518 11.9837H3.21518C3.21518 12.8758 3.93833 13.5989 4.83037 13.5989V13.1989ZM6.04555 11.9837C6.04555 12.6549 5.5015 13.1989 4.83037 13.1989V13.5989C5.72241 13.5989 6.44555 12.8758 6.44555 11.9837H6.04555ZM4.83037 10.7685C5.5015 10.7685 6.04555 11.3126 6.04555 11.9837H6.44555C6.44555 11.0917 5.72241 10.3685 4.83037 10.3685V10.7685ZM11.9993 13.8349C13.0216 13.8349 13.8504 13.0061 13.8504 11.9838H13.4504C13.4504 12.7852 12.8007 13.4349 11.9993 13.4349V13.8349ZM10.1483 11.9838C10.1483 13.0061 10.977 13.8349 11.9993 13.8349V13.4349C11.1979 13.4349 10.5483 12.7852 10.5483 11.9838H10.1483ZM11.9993 10.1328C10.977 10.1328 10.1483 10.9615 10.1483 11.9838H10.5483C10.5483 11.1824 11.1979 10.5328 11.9993 10.5328V10.1328ZM13.8504 11.9838C13.8504 10.9615 13.0216 10.1328 11.9993 10.1328V10.5328C12.8007 10.5328 13.4504 11.1824 13.4504 11.9838H13.8504Z\" fill=\"white\" mask=\"url(#path-1-outside-1_1881_23311)\"/> </svg>',id:\"WrQHyqNqU\",layoutId:\"WrQHyqNqU\",link:\"https://www.thirdweb.com/nebula\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Powerful AI for Blockchain\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Nebula\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_nebula_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-s3xq8q-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"B2U_uXk2D-container\",nodeId:\"B2U_uXk2D\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M20.5 7.27783L12 12.0001M12 12.0001L3.49997 7.27783M12 12.0001L12 21.5001M21 12.0001V7.94153C21 7.59889 21 7.42757 20.9495 7.27477C20.9049 7.13959 20.8318 7.01551 20.7354 6.91082C20.6263 6.79248 20.4766 6.70928 20.177 6.54288L12.777 2.43177C12.4934 2.27421 12.3516 2.19543 12.2015 2.16454C12.0685 2.13721 11.9315 2.13721 11.7986 2.16454C11.6484 2.19543 11.5066 2.27421 11.223 2.43177L3.82297 6.54288C3.52345 6.70928 3.37368 6.79248 3.26463 6.91082C3.16816 7.01551 3.09515 7.13959 3.05048 7.27477C3 7.42757 3 7.59889 3 7.94153V16.0586C3 16.4013 3 16.5726 3.05048 16.7254C3.09515 16.8606 3.16816 16.9847 3.26463 17.0893C3.37368 17.2077 3.52346 17.2909 3.82297 17.4573L11.223 21.5684C11.5066 21.726 11.6484 21.8047 11.7986 21.8356C11.9315 21.863 12.0685 21.863 12.2015 21.8356C12.3516 21.8047 12.4934 21.726 12.777 21.5684L13 21.4445M7.5 4.50008L16.5 9.50008M22 21.5001L21 20.5001M22 18.0001C22 19.6569 20.6569 21.0001 19 21.0001C17.3431 21.0001 16 19.6569 16 18.0001C16 16.3432 17.3431 15.0001 19 15.0001C20.6569 15.0001 22 16.3432 22 18.0001Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"B2U_uXk2D\",layoutId:\"B2U_uXk2D\",link:\"https://www.thirdweb.com/insight\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Instant blockchain data on any EVM\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Insight\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_insight_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-p40xqj-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"GaXWQdsGZ-container\",nodeId:\"GaXWQdsGZ\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M16 8.00007V4.50073C16 3.66899 16 3.25312 15.8248 2.99755C15.6717 2.77425 15.4346 2.62257 15.1678 2.57715C14.8623 2.52517 14.4847 2.69944 13.7295 3.04799L4.85901 7.14206C4.18551 7.45291 3.84875 7.60834 3.60211 7.84939C3.38406 8.06249 3.21762 8.32262 3.1155 8.6099C3 8.93486 3 9.30575 3 10.0475V15.0001M16.5 14.5001H16.51M3 11.2001L3 17.8001C3 18.9202 3 19.4802 3.21799 19.9081C3.40973 20.2844 3.71569 20.5903 4.09202 20.7821C4.51984 21.0001 5.07989 21.0001 6.2 21.0001H17.8C18.9201 21.0001 19.4802 21.0001 19.908 20.7821C20.2843 20.5903 20.5903 20.2844 20.782 19.9081C21 19.4802 21 18.9202 21 17.8001V11.2001C21 10.08 21 9.51992 20.782 9.09209C20.5903 8.71577 20.2843 8.40981 19.908 8.21806C19.4802 8.00007 18.9201 8.00007 17.8 8.00007L6.2 8.00007C5.0799 8.00007 4.51984 8.00007 4.09202 8.21806C3.7157 8.40981 3.40973 8.71577 3.21799 9.09209C3 9.51991 3 10.08 3 11.2001ZM17 14.5001C17 14.7762 16.7761 15.0001 16.5 15.0001C16.2239 15.0001 16 14.7762 16 14.5001C16 14.2239 16.2239 14.0001 16.5 14.0001C16.7761 14.0001 17 14.2239 17 14.5001Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"GaXWQdsGZ\",layoutId:\"GaXWQdsGZ\",link:\"https://www.thirdweb.com/connect\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Onboard, authenticate and manage users\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Connect\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_connect_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e5jc7w-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"N95_TPhIJ-container\",nodeId:\"N95_TPhIJ\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M14 11H8M10 15H8M16 7H8M20 6.8V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V6.8C4 5.11984 4 4.27976 4.32698 3.63803C4.6146 3.07354 5.07354 2.6146 5.63803 2.32698C6.27976 2 7.11984 2 8.8 2H15.2C16.8802 2 17.7202 2 18.362 2.32698C18.9265 2.6146 19.3854 3.07354 19.673 3.63803C20 4.27976 20 5.11984 20 6.8Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"N95_TPhIJ\",layoutId:\"N95_TPhIJ\",link:\"https://www.thirdweb.com/contracts\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Create, deploy, and interact with smart contracts\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Contracts\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_contracts_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1flqv9x-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"Voe7hGh98-container\",nodeId:\"Voe7hGh98\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M6.5 19C4.01472 19 2 16.9853 2 14.5C2 12.1564 3.79151 10.2313 6.07974 10.0194C6.54781 7.17213 9.02024 5 12 5C14.9798 5 17.4522 7.17213 17.9203 10.0194C20.2085 10.2313 22 12.1564 22 14.5C22 16.9853 19.9853 19 17.5 19C13.1102 19 10.3433 19 6.5 19Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"Voe7hGh98\",layoutId:\"Voe7hGh98\",link:\"https://www.thirdweb.com/engine\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Connect your apps to decentralized networks\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Engine\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_engine_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bnh30s-container\",\"data-framer-name\":\"Ecosystems Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"wSW_V3sEl-container\",name:\"Ecosystems Tracked\",nodeId:\"wSW_V3sEl\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M11.9995 12.0001H12.0095M15.535 15.5357C10.8488 20.222 5.46685 22.438 3.51423 20.4854C1.56161 18.5328 3.77769 13.1509 8.46398 8.46461C13.1503 3.77832 18.5322 1.56224 20.4848 3.51486C22.4374 5.46748 20.2213 10.8494 15.535 15.5357ZM15.535 8.46443C20.2213 13.1507 22.4374 18.5326 20.4848 20.4852C18.5321 22.4379 13.1502 20.2218 8.46394 15.5355C3.77765 10.8492 1.56157 5.4673 3.51419 3.51468C5.46681 1.56206 10.8487 3.77814 15.535 8.46443ZM12.4995 12.0001C12.4995 12.2763 12.2757 12.5001 11.9995 12.5001C11.7234 12.5001 11.4995 12.2763 11.4995 12.0001C11.4995 11.724 11.7234 11.5001 11.9995 11.5001C12.2757 11.5001 12.4995 11.724 12.4995 12.0001Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"wSW_V3sEl\",layoutId:\"wSW_V3sEl\",link:\"https://thirdweb.com/solutions/ecosystem\",name:\"Ecosystems Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Supercharge your ecosystem\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Ecosystems\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_ecosystems_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\",...addPropertyOverrides({rR2_PuvFN:{trackingEvent:\"clicked_ecosystem_navigation\"}},baseVariant,gestureVariant)})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12eu28q-container\",\"data-framer-name\":\"Gaming Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"cAN6_riT7-container\",name:\"Gaming Tracked\",nodeId:\"cAN6_riT7\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M6.00001 11H10M8.00001 9V13M15 12H15.01M18 10H18.01M10.449 5H13.5511C16.1759 5 17.4884 5 18.5186 5.49743C19.4256 5.9354 20.1792 6.63709 20.6806 7.51059C21.2502 8.5027 21.3437 9.81181 21.5307 12.43L21.7768 15.8745C21.8974 17.5634 20.5598 19 18.8666 19C18.0007 19 17.1795 18.6154 16.6252 17.9502L16.25 17.5C15.9069 17.0882 15.7353 16.8823 15.5399 16.7159C15.1303 16.3672 14.6345 16.1349 14.1044 16.0436C13.8515 16 13.5835 16 13.0475 16H10.9526C10.4165 16 10.1485 16 9.89565 16.0436C9.36551 16.1349 8.86969 16.3672 8.46012 16.7159C8.26475 16.8823 8.09317 17.0882 7.75001 17.5L7.37485 17.9502C6.82052 18.6154 5.99936 19 5.13347 19C3.44025 19 2.10263 17.5634 2.22326 15.8745L2.4693 12.43C2.65631 9.81181 2.74982 8.5027 3.31938 7.51059C3.82086 6.63709 4.57446 5.9354 5.48147 5.49743C6.51164 5 7.82408 5 10.449 5Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"cAN6_riT7\",layoutId:\"cAN6_riT7\",link:\"https://thirdweb.com/solutions/gaming\",name:\"Gaming Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Integrate web3 into games\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Gaming\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_gaming_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1r95ugs-container\",\"data-framer-name\":\"Consumer Apps Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"qlUNZtVI2-container\",name:\"Consumer Apps Tracked\",nodeId:\"qlUNZtVI2\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M10 15L6.92474 18.1137C6.49579 18.548 6.28131 18.7652 6.09695 18.7805C5.93701 18.7938 5.78042 18.7295 5.67596 18.6076C5.55556 18.4672 5.55556 18.162 5.55556 17.5515V15.9916C5.55556 15.444 5.10707 15.0477 4.5652 14.9683V14.9683C3.25374 14.7762 2.22378 13.7463 2.03168 12.4348C2 12.2186 2 11.9605 2 11.4444V6.8C2 5.11984 2 4.27976 2.32698 3.63803C2.6146 3.07354 3.07354 2.6146 3.63803 2.32698C4.27976 2 5.11984 2 6.8 2H14.2C15.8802 2 16.7202 2 17.362 2.32698C17.9265 2.6146 18.3854 3.07354 18.673 3.63803C19 4.27976 19 5.11984 19 6.8V11M19 22L16.8236 20.4869C16.5177 20.2742 16.3647 20.1678 16.1982 20.0924C16.0504 20.0255 15.8951 19.9768 15.7356 19.9474C15.5558 19.9143 15.3695 19.9143 14.9969 19.9143H13.2C12.0799 19.9143 11.5198 19.9143 11.092 19.6963C10.7157 19.5046 10.4097 19.1986 10.218 18.8223C10 18.3944 10 17.8344 10 16.7143V14.2C10 13.0799 10 12.5198 10.218 12.092C10.4097 11.7157 10.7157 11.4097 11.092 11.218C11.5198 11 12.0799 11 13.2 11H18.8C19.9201 11 20.4802 11 20.908 11.218C21.2843 11.4097 21.5903 11.7157 21.782 12.092C22 12.5198 22 13.0799 22 14.2V16.9143C22 17.8462 22 18.3121 21.8478 18.6797C21.6448 19.1697 21.2554 19.5591 20.7654 19.762C20.3978 19.9143 19.9319 19.9143 19 19.9143V22Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"qlUNZtVI2\",layoutId:\"qlUNZtVI2\",link:\"https://thirdweb.com/solutions/consumer-apps\",name:\"Consumer Apps Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Build onchain applications for consumers\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Consumer Apps\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_consumerapps_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\",...addPropertyOverrides({rR2_PuvFN:{trackingEvent:\"clicked_consumer_apps_navigation\"}},baseVariant,gestureVariant)})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1t140to-container\",\"data-framer-name\":\"DeFi Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"jDywwQhkA-container\",name:\"DeFi Tracked\",nodeId:\"jDywwQhkA\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M17.8779 20.0902C16.1694 21.3315 14.1118 22 12 22C9.88824 22 7.83066 21.3315 6.12218 20.0902M16.3837 3.01206C18.2818 3.93781 19.8381 5.44068 20.8295 7.30528C21.8209 9.16989 22.1966 11.3005 21.9027 13.3917M2.09745 13.3916C1.80355 11.3004 2.17923 9.16979 3.17066 7.30519C4.16208 5.44059 5.71836 3.93771 7.61642 3.01196M11.4344 6.56569L6.56572 11.4343C6.36771 11.6323 6.26871 11.7313 6.23161 11.8455C6.19899 11.9459 6.19899 12.0541 6.23161 12.1545C6.26871 12.2687 6.36771 12.3677 6.56572 12.5657L11.4344 17.4343C11.6324 17.6323 11.7314 17.7313 11.8455 17.7684C11.9459 17.8011 12.0541 17.8011 12.1545 17.7684C12.2687 17.7313 12.3677 17.6323 12.5657 17.4343L17.4344 12.5657C17.6324 12.3677 17.7314 12.2687 17.7685 12.1545C17.8011 12.0541 17.8011 11.9459 17.7685 11.8455C17.7314 11.7313 17.6324 11.6323 17.4344 11.4343L12.5657 6.56569C12.3677 6.36768 12.2687 6.26867 12.1545 6.23158C12.0541 6.19895 11.9459 6.19895 11.8455 6.23158C11.7314 6.26867 11.6324 6.36768 11.4344 6.56569Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"jDywwQhkA\",layoutId:\"jDywwQhkA\",link:\"https://thirdweb.com/solutions/defi\",name:\"DeFi Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Solutions for scaling DeFi apps\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"DeFi\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_defi_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gwcj72-container\",\"data-framer-name\":\"Docs Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"D0KQqyyoi-container\",name:\"Docs Tracked\",nodeId:\"D0KQqyyoi\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M14 2.26953V6.40007C14 6.96012 14 7.24015 14.109 7.45406C14.2049 7.64222 14.3578 7.7952 14.546 7.89108C14.7599 8.00007 15.0399 8.00007 15.6 8.00007H19.7305M16 13H8M16 17H8M10 9H8M14 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V8L14 2Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"D0KQqyyoi\",layoutId:\"D0KQqyyoi\",link:\"https://portal.thirdweb.com/\",name:\"Docs Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Complete thirdweb documentation\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Documentation\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_documentation_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gmuiqv-container\",\"data-framer-name\":\"Templates Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"ufJWI6jg1-container\",name:\"Templates Tracked\",nodeId:\"ufJWI6jg1\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M17.5 11H12.5M17.5 15H12.5M17.5 7H12.5M9 3L9 21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"ufJWI6jg1\",layoutId:\"ufJWI6jg1\",link:\"https://thirdweb.com/templates\",name:\"Templates Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Ready-to-ship repositories\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Templates\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_templates_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-k9xxn6-container\",\"data-framer-name\":\"Learn Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"t_6Zkywcp-container\",name:\"Learn Tracked\",nodeId:\"t_6Zkywcp\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M17 14.5001V11.4945C17 11.315 17 11.2253 16.9727 11.146C16.9485 11.076 16.9091 11.0122 16.8572 10.9592C16.7986 10.8993 16.7183 10.8592 16.5578 10.779L12 8.50006M4 9.50006V16.3067C4 16.6786 4 16.8645 4.05802 17.0274C4.10931 17.1713 4.1929 17.3016 4.30238 17.4082C4.42622 17.5287 4.59527 17.6062 4.93335 17.7612L11.3334 20.6945C11.5786 20.8069 11.7012 20.8631 11.8289 20.8853C11.9421 20.9049 12.0579 20.9049 12.1711 20.8853C12.2988 20.8631 12.4214 20.8069 12.6666 20.6945L19.0666 17.7612C19.4047 17.6062 19.5738 17.5287 19.6976 17.4082C19.8071 17.3016 19.8907 17.1713 19.942 17.0274C20 16.8645 20 16.6786 20 16.3067V9.50006M2 8.50006L11.6422 3.67895C11.7734 3.61336 11.839 3.58056 11.9078 3.56766C11.9687 3.55622 12.0313 3.55622 12.0922 3.56766C12.161 3.58056 12.2266 3.61336 12.3578 3.67895L22 8.50006L12.3578 13.3212C12.2266 13.3868 12.161 13.4196 12.0922 13.4325C12.0313 13.4439 11.9687 13.4439 11.9078 13.4325C11.839 13.4196 11.7734 13.3868 11.6422 13.3212L2 8.50006Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"t_6Zkywcp\",layoutId:\"t_6Zkywcp\",link:\"https://thirdweb.com/learn\",name:\"Learn Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Web3 Development Guides\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Learn\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_learn_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ytwjj2-container\",\"data-framer-name\":\"Chainlist Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"rxR2yBxGT-container\",name:\"Chainlist Tracked\",nodeId:\"rxR2yBxGT\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M7.5 7H7C4.23858 7 2 9.23858 2 12C2 14.7614 4.23858 17 7 17H9C11.7614 17 14 14.7614 14 12M16.5 17H17C19.7614 17 22 14.7614 22 12C22 9.23858 19.7614 7 17 7H15C12.2386 7 10 9.23858 10 12\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"rxR2yBxGT\",layoutId:\"rxR2yBxGT\",link:\"https://thirdweb.com/chainlist\",name:\"Chainlist Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Faucets, RPCs, and grant programs\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Chainlist\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_chainlist_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3fau8r-container\",\"data-framer-name\":\"Faucets Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"Ck8wiPpYe-container\",name:\"Faucets Tracked\",nodeId:\"Ck8wiPpYe\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M20 14C20 18.4183 16.4183 22 12 22C7.58172 22 4 18.4183 4 14C4 12.9391 4.20651 11.9264 4.58152 11C5.76829 8.06817 12 2 12 2C12 2 18.2317 8.06817 19.4185 11C19.7935 11.9264 20 12.9391 20 14Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"Ck8wiPpYe\",layoutId:\"Ck8wiPpYe\",link:\"https://thirdweb.com/faucets\",name:\"Faucets Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Reliably get testnet funds\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Faucets\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_faucets_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-a7wxmj-container\",\"data-framer-name\":\"Bounties Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"a8flQDH9_-container\",name:\"Bounties Tracked\",nodeId:\"a8flQDH9_\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M8.5 14.6667C8.5 15.9553 9.54467 17 10.8333 17H13C14.3807 17 15.5 15.8807 15.5 14.5C15.5 13.1193 14.3807 12 13 12H11C9.61929 12 8.5 10.8807 8.5 9.5C8.5 8.11929 9.61929 7 11 7H13.1667C14.4553 7 15.5 8.04467 15.5 9.33333M12 5.5V7M12 17V18.5M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"a8flQDH9_\",layoutId:\"a8flQDH9_\",link:\"https://thirdweb.com/bounties\",name:\"Bounties Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Earn rewards for contributions\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Bounties\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_bounties_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-je1n17-container\",\"data-framer-name\":\"Knowledge Base Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"h5hn1s4nR-container\",name:\"Knowledge Base Tracked\",nodeId:\"h5hn1s4nR\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M20 19V16H7C5.34315 16 4 17.3431 4 19M8.8 22H16.8C17.9201 22 18.4802 22 18.908 21.782C19.2843 21.5903 19.5903 21.2843 19.782 20.908C20 20.4802 20 19.9201 20 18.8V5.2C20 4.07989 20 3.51984 19.782 3.09202C19.5903 2.71569 19.2843 2.40973 18.908 2.21799C18.4802 2 17.9201 2 16.8 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"h5hn1s4nR\",layoutId:\"h5hn1s4nR\",link:\"https://support.thirdweb.com/\",name:\"Knowledge Base Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Resources to troubleshoot your web3 apps\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Knowledge Base\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_knowledgebase_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pan8to-container\",\"data-framer-name\":\"Design System Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"VFaVHQMsy-container\",name:\"Design System Tracked\",nodeId:\"VFaVHQMsy\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M9.75 20.75L11.223 21.5683C11.5066 21.7259 11.6484 21.8046 11.7986 21.8355C11.9315 21.8629 12.0685 21.8629 12.2015 21.8355C12.3516 21.8046 12.4934 21.7259 12.777 21.5683L14.25 20.75M5.25 18.25L3.82297 17.4572C3.52346 17.2908 3.37368 17.2076 3.26463 17.0893C3.16816 16.9846 3.09515 16.8605 3.05048 16.7253C3 16.5725 3 16.4012 3 16.0585V14.5M3 9.49999V7.94144C3 7.5988 3 7.42748 3.05048 7.27468C3.09515 7.1395 3.16816 7.01542 3.26463 6.91073C3.37368 6.79239 3.52345 6.70919 3.82297 6.54279L5.25 5.74999M9.75 3.24999L11.223 2.43168C11.5066 2.27412 11.6484 2.19534 11.7986 2.16445C11.9315 2.13712 12.0685 2.13712 12.2015 2.16445C12.3516 2.19534 12.4934 2.27412 12.777 2.43168L14.25 3.24999M18.75 5.74999L20.177 6.54279C20.4766 6.70919 20.6263 6.79239 20.7354 6.91073C20.8318 7.01542 20.9049 7.1395 20.9495 7.27468C21 7.42747 21 7.59879 21 7.94144V9.49999M21 14.5V16.0585C21 16.4012 21 16.5725 20.9495 16.7253C20.9049 16.8605 20.8318 16.9846 20.7354 17.0893C20.6263 17.2076 20.4766 17.2908 20.177 17.4572L18.75 18.25M9.75 10.75L12 12M12 12L14.25 10.75M12 12V14.5M3 6.99999L5.25 8.24999M18.75 8.24999L21 6.99999M12 19.5V22\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"VFaVHQMsy\",layoutId:\"VFaVHQMsy\",link:\"https://www.figma.com/community/file/1436074607342792293\",name:\"Design System Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Free and open source design system\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Design System\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_designsystem_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13pxsbf-container\",\"data-framer-name\":\"Blog Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"I7ti9TRhB-container\",name:\"Blog Tracked\",nodeId:\"I7ti9TRhB\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M9 18.5H15M7 15H17M5 2H19C20.1046 2 21 2.99492 21 4.22222V19.7778C21 21.0051 20.1046 22 19 22H5C3.89543 22 3 21.0051 3 19.7778V4.22222C3 2.99492 3.89543 2 5 2ZM11.9976 6.21194C11.2978 5.4328 10.1309 5.22321 9.25414 5.93667C8.37738 6.65013 8.25394 7.84299 8.94247 8.6868C9.631 9.53061 11.9976 11.5 11.9976 11.5C11.9976 11.5 14.3642 9.53061 15.0527 8.6868C15.7413 7.84299 15.6329 6.64262 14.7411 5.93667C13.8492 5.23072 12.6974 5.4328 11.9976 6.21194Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"I7ti9TRhB\",layoutId:\"I7ti9TRhB\",link:\"https://blog.thirdweb.com/\",name:\"Blog Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Our latest news and updates\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Blog\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_blog_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})})]}),isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-fzidap\",layoutDependency:layoutDependency,layoutId:\"gqYc8_yys\",children:isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Resources\"})}),className:\"framer-1mju7si\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"scv1se0ew\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ik6rhh\",\"data-framer-name\":\"Row 2\",layoutDependency:layoutDependency,layoutId:\"YNT9dnCkI\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fh0hg6\",layoutDependency:layoutDependency,layoutId:\"Pg0e4ArUQ\",children:[isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hwsvq2-container\",layoutDependency:layoutDependency,layoutId:\"RICB1CVXt-container\",nodeId:\"RICB1CVXt\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/connect\",f_OWzkWPM:getLocalizedValue(\"v2\",activeLocale)??\"Manage and analyze contract activity\",height:\"100%\",id:\"RICB1CVXt\",layoutId:\"RICB1CVXt\",sEqIccMsb:addImageAlt({pixelHeight:180,pixelWidth:180,src:\"https://framerusercontent.com/images/nPgHNidkefEbPmkh5O4uLgo0HCY.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:getLocalizedValue(\"v1\",activeLocale)??\"Dashboard\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-38tid9-container\",\"data-framer-name\":\"Dashboard Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"beg4UHyik-container\",name:\"Dashboard Tracked\",nodeId:\"beg4UHyik\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M3 9H21M9 9L9 21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"beg4UHyik\",layoutId:\"beg4UHyik\",link:\"https://thirdweb.com/login\",name:\"Dashboard Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Manage and analyze contract activity\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Dashboard\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_dashboard_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-k5dvtg-container\",\"data-framer-name\":\"Solutions Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"D92ghi5dl-container\",name:\"Solutions Tracked\",nodeId:\"D92ghi5dl\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M9.5 22H14.5M10 10H14M12 10L12 16M15 15.3264C17.3649 14.2029 19 11.7924 19 9C19 5.13401 15.866 2 12 2C8.13401 2 5 5.13401 5 9C5 11.7924 6.63505 14.2029 9 15.3264V16C9 16.9319 9 17.3978 9.15224 17.7654C9.35523 18.2554 9.74458 18.6448 10.2346 18.8478C10.6022 19 11.0681 19 12 19C12.9319 19 13.3978 19 13.7654 18.8478C14.2554 18.6448 14.6448 18.2554 14.8478 17.7654C15 17.3978 15 16.9319 15 16V15.3264Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"D92ghi5dl\",layoutId:\"D92ghi5dl\",link:\"solutions.thirdweb.com\",name:\"Solutions Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Quick start articles and recipes\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Solutions Hub\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_solutions_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mlq0wh-container\",\"data-framer-name\":\"CLI Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"jT09fgkS5-container\",name:\"CLI Tracked\",nodeId:\"jT09fgkS5\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M4 17L10 11L4 5M12 19H20\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"jT09fgkS5\",layoutId:\"jT09fgkS5\",link:\"https://portal.thirdweb.com/cli\",name:\"CLI Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Tools to create, build and deploy web3 apps\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"CLI\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_cli_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-271pz-container\",\"data-framer-name\":\"Txn Simulator Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"eD3sDUNiL-container\",name:\"Txn Simulator Tracked\",nodeId:\"eD3sDUNiL\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M14 2V8C13.9998 8.33548 14.0841 8.66561 14.245 8.96L19.755 19.04C19.9216 19.3446 20.0061 19.6874 20.0001 20.0345C19.9941 20.3817 19.8979 20.7213 19.7208 21.02C19.5437 21.3187 19.2919 21.5661 18.9902 21.7379C18.6885 21.9098 18.3472 22.0001 18 22H5.99997C5.65275 22.0001 5.31149 21.9098 5.00976 21.7379C4.70804 21.5661 4.45625 21.3187 4.27916 21.02C4.10208 20.7213 4.0058 20.3817 3.99981 20.0345C3.99382 19.6874 4.07831 19.3446 4.24497 19.04L9.75497 8.96C9.91587 8.66561 10.0001 8.33548 9.99997 8V2\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>   <path d=\"M6.453 15H17.547\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>   <path d=\"M8.5 2H15.5\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"eD3sDUNiL\",layoutId:\"eD3sDUNiL\",link:\"https://thirdweb.com/tools/transaction-simulator\",name:\"Txn Simulator Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Simulate onchain transactions\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Transaction Simulator\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_txnsimulator_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13wotha-container\",\"data-framer-name\":\"Wei Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"BEVphKpHz-container\",name:\"Wei Tracked\",nodeId:\"BEVphKpHz\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M2 10C2 10 2.12132 9.15076 5.63604 5.63604C9.15076 2.12132 14.8492 2.12132 18.364 5.63604C19.6092 6.88131 20.4133 8.40072 20.7762 10M2 10V4M2 10H8M22 14C22 14 21.8787 14.8492 18.364 18.364C14.8492 21.8787 9.15076 21.8787 5.63604 18.364C4.39076 17.1187 3.58669 15.5993 3.22383 14M22 14V20M22 14H16\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"BEVphKpHz\",layoutId:\"BEVphKpHz\",link:\"https://thirdweb.com/tools/wei-converter\",name:\"Wei Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Convert Wei\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Wei Converter\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_wei_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1g0l49u-container\",\"data-framer-name\":\"Hex Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"BNMOdorhn-container\",name:\"Hex Tracked\",nodeId:\"BNMOdorhn\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M2 10C2 10 2.12132 9.15076 5.63604 5.63604C9.15076 2.12132 14.8492 2.12132 18.364 5.63604C19.6092 6.88131 20.4133 8.40072 20.7762 10M2 10V4M2 10H8M22 14C22 14 21.8787 14.8492 18.364 18.364C14.8492 21.8787 9.15076 21.8787 5.63604 18.364C4.39076 17.1187 3.58669 15.5993 3.22383 14M22 14V20M22 14H16\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"BNMOdorhn\",layoutId:\"BNMOdorhn\",link:\"https://thirdweb.com/tools/hex-converter\",name:\"Hex Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Convert Hex\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Hex Converter\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_hex_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rbmeec-container\",\"data-framer-name\":\"Unix Time Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"nu3zhs8ra-container\",name:\"Unix Time Tracked\",nodeId:\"nu3zhs8ra\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M2 10C2 10 2.12132 9.15076 5.63604 5.63604C9.15076 2.12132 14.8492 2.12132 18.364 5.63604C19.6092 6.88131 20.4133 8.40072 20.7762 10M2 10V4M2 10H8M22 14C22 14 21.8787 14.8492 18.364 18.364C14.8492 21.8787 9.15076 21.8787 5.63604 18.364C4.39076 17.1187 3.58669 15.5993 3.22383 14M22 14V20M22 14H16\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"nu3zhs8ra\",layoutId:\"nu3zhs8ra\",link:\"https://thirdweb.com/tools/unixtime-converter\",name:\"Unix Time Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Convert Unix Time\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Unix Time Converter\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_unixtime_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fyuaa6-container\",\"data-framer-name\":\"Keccak 256 Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"pNCj5fI91-container\",name:\"Keccak 256 Tracked\",nodeId:\"pNCj5fI91\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M2 10C2 10 2.12132 9.15076 5.63604 5.63604C9.15076 2.12132 14.8492 2.12132 18.364 5.63604C19.6092 6.88131 20.4133 8.40072 20.7762 10M2 10V4M2 10H8M22 14C22 14 21.8787 14.8492 18.364 18.364C14.8492 21.8787 9.15076 21.8787 5.63604 18.364C4.39076 17.1187 3.58669 15.5993 3.22383 14M22 14V20M22 14H16\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"pNCj5fI91\",layoutId:\"pNCj5fI91\",link:\"https://thirdweb.com/tools/keccak256-converter\",name:\"Keccak 256 Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Convert Keccak 256\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Keccak 256 Converter\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_keccak_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bs184q-container\",\"data-framer-name\":\"Dashboard Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"y2oTfVF5r-container\",name:\"Dashboard Tracked\",nodeId:\"y2oTfVF5r\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M17.5 11H12.5M17.5 15H12.5M17.5 7H12.5M9 3L9 21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',id:\"y2oTfVF5r\",layoutId:\"y2oTfVF5r\",link:\"https://thirdweb.com/templates\",name:\"Dashboard Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Ready-to-ship repositories\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Templates\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_templates_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y54ibs-container\",layoutDependency:layoutDependency,layoutId:\"YXyo1rTsX-container\",nodeId:\"YXyo1rTsX\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/login\",f_OWzkWPM:getLocalizedValue(\"v2\",activeLocale)??\"Manage and analyze contract activity\",height:\"100%\",id:\"YXyo1rTsX\",layoutId:\"YXyo1rTsX\",sEqIccMsb:addImageAlt({pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/kD06KJ7ezBwafQhAAB9RgzIUXh4.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:getLocalizedValue(\"v1\",activeLocale)??\"Dashboard\"})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ex70qi-container\",layoutDependency:layoutDependency,layoutId:\"PEaYPL7gK-container\",nodeId:\"PEaYPL7gK\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/contracts\",f_OWzkWPM:getLocalizedValue(\"v3\",activeLocale)??\"Tools to create, build and deploy web3 apps\",height:\"100%\",id:\"PEaYPL7gK\",layoutId:\"PEaYPL7gK\",sEqIccMsb:addImageAlt({pixelHeight:180,pixelWidth:180,src:\"https://framerusercontent.com/images/lrmwOQHnEKW05qe9GxO0HiTX8zs.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"CLI\"})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9rhl2e-container\",layoutDependency:layoutDependency,layoutId:\"vTA6X4dlL-container\",nodeId:\"vTA6X4dlL\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/tools/transaction-simulator\",f_OWzkWPM:getLocalizedValue(\"v5\",activeLocale)??\"Create and deploy smart contracts\",height:\"100%\",id:\"vTA6X4dlL\",layoutId:\"vTA6X4dlL\",sEqIccMsb:addImageAlt({pixelHeight:145,pixelWidth:145,src:\"https://framerusercontent.com/images/gcUO8bwpCFFJ1uvZhXpad8vXeI.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:getLocalizedValue(\"v4\",activeLocale)??\"Transaction Simulator\"})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-a00ula-container\",layoutDependency:layoutDependency,layoutId:\"vyvqw3nrT-container\",nodeId:\"vyvqw3nrT\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/tools/wei-converter\",f_OWzkWPM:getLocalizedValue(\"v7\",activeLocale)??\"Convert Wei\",height:\"100%\",id:\"vyvqw3nrT\",layoutId:\"vyvqw3nrT\",sEqIccMsb:addImageAlt({pixelHeight:145,pixelWidth:145,src:\"https://framerusercontent.com/images/gcUO8bwpCFFJ1uvZhXpad8vXeI.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:getLocalizedValue(\"v6\",activeLocale)??\"Wei Converter\"})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ca1nl0-container\",layoutDependency:layoutDependency,layoutId:\"ggMvSwcmR-container\",nodeId:\"ggMvSwcmR\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/tools/hex-converter\",f_OWzkWPM:getLocalizedValue(\"v9\",activeLocale)??\"Convert Hex\",height:\"100%\",id:\"ggMvSwcmR\",layoutId:\"ggMvSwcmR\",sEqIccMsb:addImageAlt({pixelHeight:145,pixelWidth:145,src:\"https://framerusercontent.com/images/gcUO8bwpCFFJ1uvZhXpad8vXeI.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:getLocalizedValue(\"v8\",activeLocale)??\"Hex Converter\"})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1t6d41l-container\",layoutDependency:layoutDependency,layoutId:\"sQLYj8PLe-container\",nodeId:\"sQLYj8PLe\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/tools/unixtime-converter\",f_OWzkWPM:getLocalizedValue(\"v11\",activeLocale)??\"Convert Unix Time\",height:\"100%\",id:\"sQLYj8PLe\",layoutId:\"sQLYj8PLe\",sEqIccMsb:addImageAlt({pixelHeight:145,pixelWidth:145,src:\"https://framerusercontent.com/images/gcUO8bwpCFFJ1uvZhXpad8vXeI.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:getLocalizedValue(\"v10\",activeLocale)??\"Unix Time Converter\"})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gep4si-container\",layoutDependency:layoutDependency,layoutId:\"S_GlixqR1-container\",nodeId:\"S_GlixqR1\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/tools/keccak256-converter\",f_OWzkWPM:getLocalizedValue(\"v13\",activeLocale)??\"Convert Keccak 256\",height:\"100%\",id:\"S_GlixqR1\",layoutId:\"S_GlixqR1\",sEqIccMsb:addImageAlt({pixelHeight:145,pixelWidth:145,src:\"https://framerusercontent.com/images/gcUO8bwpCFFJ1uvZhXpad8vXeI.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:getLocalizedValue(\"v12\",activeLocale)??\"Keccak 256 Converter\"})})})]}),isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-194ni13\",layoutDependency:layoutDependency,layoutId:\"eNVJBzLRX\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Dev Tools\"})}),className:\"framer-15p6vei\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Dvta7qOBf\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1enyy79\",layoutDependency:layoutDependency,layoutId:\"S83rYcFxz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Dev Tools\"})}),className:\"framer-b7tse1\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"USPRcPs9k\",style:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed9()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4k3mr\",\"data-framer-name\":\"Row 3\",layoutDependency:layoutDependency,layoutId:\"gdkVKpV4i\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s6d1qf\",layoutDependency:layoutDependency,layoutId:\"CZxBY1emk\",children:[isDisplayed10()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-e6t8o3-container\",layoutDependency:layoutDependency,layoutId:\"afqwjcOYa-container\",nodeId:\"afqwjcOYa\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/connect\",f_OWzkWPM:getLocalizedValue(\"v16\",activeLocale)??\"Integrate web3 into your app\",height:\"100%\",id:\"afqwjcOYa\",layoutId:\"afqwjcOYa\",sEqIccMsb:addImageAlt({pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/paETxvKcjTpeGDfjN36tkXKJs.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Typescript\"})})}),isDisplayed11()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17396sq-container\",\"data-framer-name\":\"Typescript Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"KZHqHAjoY-container\",name:\"Typescript Tracked\",nodeId:\"KZHqHAjoY\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"31\" height=\"32\" viewBox=\"0 0 31 32\" fill=\"none\">   <g clip-path=\"url(#clip0_1890_23581)\">     <path d=\"M27.3218 0.589355H3.29546C1.6851 0.589355 0.379639 1.93692 0.379639 3.59923V28.4006C0.379639 30.0629 1.6851 31.4105 3.29546 31.4105H27.3218C28.9322 31.4105 30.2376 30.0629 30.2376 28.4006V3.59923C30.2376 1.93692 28.9322 0.589355 27.3218 0.589355Z\" fill=\"#3178C6\"/>     <path d=\"M27.3218 0.589355H3.29546C1.6851 0.589355 0.379639 1.93692 0.379639 3.59923V28.4006C0.379639 30.0629 1.6851 31.4105 3.29546 31.4105H27.3218C28.9322 31.4105 30.2376 30.0629 30.2376 28.4006V3.59923C30.2376 1.93692 28.9322 0.589355 27.3218 0.589355Z\" fill=\"#3178C6\"/>     <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.8624 25.1153V28.1288C19.337 28.38 19.8983 28.5683 20.5463 28.6939C21.1943 28.8194 21.8772 28.8822 22.5952 28.8822C23.295 28.8822 23.9596 28.8132 24.5894 28.675C25.2192 28.5369 25.7714 28.3093 26.2459 27.9923C26.7205 27.6753 27.0963 27.2609 27.3731 26.7492C27.6499 26.2375 27.7884 25.605 27.7884 24.8516C27.7884 24.3054 27.7093 23.8267 27.5511 23.4155C27.3929 23.0043 27.1647 22.6386 26.8665 22.3184C26.5684 21.9982 26.211 21.7109 25.7942 21.4567C25.3774 21.2024 24.9073 20.9623 24.3841 20.7363C24.0008 20.573 23.657 20.4145 23.3528 20.2607C23.0485 20.1069 22.7899 19.9499 22.577 19.7899C22.364 19.6297 22.1997 19.4602 22.0841 19.2813C21.9686 19.1023 21.9107 18.8999 21.9107 18.6739C21.9107 18.4667 21.9624 18.2799 22.0659 18.1135C22.1693 17.9471 22.3154 17.8044 22.504 17.685C22.6926 17.5658 22.9238 17.4732 23.1976 17.4072C23.4714 17.3413 23.7756 17.3084 24.1103 17.3084C24.3536 17.3084 24.6107 17.3272 24.8815 17.3649C25.1522 17.4025 25.4245 17.4606 25.6984 17.5391C25.9721 17.6176 26.2383 17.7165 26.4969 17.8357C26.7555 17.955 26.9943 18.0931 27.2134 18.2501V15.4343C26.7692 15.2585 26.284 15.1283 25.7577 15.0435C25.2314 14.9588 24.6274 14.9164 23.946 14.9164C23.2523 14.9164 22.5952 14.9933 21.9746 15.1471C21.354 15.3009 20.8079 15.5411 20.3363 15.8675C19.8648 16.194 19.4921 16.6099 19.2184 17.1153C18.9446 17.6207 18.8076 18.225 18.8076 18.9281C18.8076 19.8259 19.0586 20.5919 19.5606 21.226C20.0625 21.86 20.8246 22.3968 21.8468 22.8363C22.2484 23.0059 22.6226 23.1722 22.9694 23.3354C23.3162 23.4987 23.6159 23.6682 23.8684 23.844C24.1209 24.0198 24.3202 24.2112 24.4662 24.4184C24.6123 24.6256 24.6853 24.861 24.6853 25.1247C24.6853 25.3194 24.6396 25.4998 24.5484 25.6662C24.4571 25.8326 24.3186 25.977 24.1331 26.0994C23.9475 26.2218 23.7163 26.3176 23.4395 26.3866C23.1626 26.4557 22.8386 26.4902 22.4675 26.4902C21.8347 26.4902 21.208 26.3756 20.5873 26.1465C19.9667 25.9174 19.3917 25.5736 18.8624 25.1153ZM13.9545 17.6904H17.6996V15.2174H7.26099V17.6904H10.9878V28.7016H13.9545V17.6904Z\" fill=\"white\"/>   </g>   <defs>     <clipPath id=\"clip0_1890_23581\">       <rect width=\"29.858\" height=\"30.8212\" fill=\"white\" transform=\"translate(0.379639 0.589355)\"/>     </clipPath>   </defs> </svg>',id:\"KZHqHAjoY\",layoutId:\"KZHqHAjoY\",link:\"https://thirdweb.com/login\",name:\"Typescript Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Manage and analyze contract activity\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Dashboard\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_typescript_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\",...addPropertyOverrides({LAig6L3qM:{iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"17\" height=\"18\" viewBox=\"0 0 17 18\" fill=\"none\">   <g clip-path=\"url(#clip0_1890_23581)\">     <path d=\"M15.0824 0.794189H2.28893C1.43145 0.794189 0.736328 1.51174 0.736328 2.39688V15.603C0.736328 16.4882 1.43145 17.2057 2.28893 17.2057H15.0824C15.9399 17.2057 16.635 16.4882 16.635 15.603V2.39688C16.635 1.51174 15.9399 0.794189 15.0824 0.794189Z\" fill=\"#3178C6\"/>     <path d=\"M15.0824 0.794189H2.28893C1.43145 0.794189 0.736328 1.51174 0.736328 2.39688V15.603C0.736328 16.4882 1.43145 17.2057 2.28893 17.2057H15.0824C15.9399 17.2057 16.635 16.4882 16.635 15.603V2.39688C16.635 1.51174 15.9399 0.794189 15.0824 0.794189Z\" fill=\"#3178C6\"/>     <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5781 13.8536V15.4583C10.8308 15.592 11.1297 15.6923 11.4747 15.7591C11.8198 15.826 12.1834 15.8594 12.5657 15.8594C12.9383 15.8594 13.2923 15.8227 13.6276 15.7491C13.9629 15.6756 14.257 15.5544 14.5097 15.3856C14.7624 15.2168 14.9624 14.9961 15.1098 14.7237C15.2572 14.4512 15.331 14.1144 15.331 13.7133C15.331 13.4224 15.2889 13.1675 15.2046 12.9485C15.1204 12.7296 14.9989 12.5349 14.8401 12.3644C14.6814 12.1939 14.491 12.0409 14.2691 11.9055C14.0472 11.7701 13.7969 11.6423 13.5183 11.5219C13.3142 11.435 13.1311 11.3506 12.9691 11.2687C12.8071 11.1868 12.6694 11.1032 12.556 11.018C12.4426 10.9327 12.3552 10.8425 12.2936 10.7472C12.2321 10.6519 12.2013 10.5441 12.2013 10.4237C12.2013 10.3134 12.2288 10.214 12.2839 10.1254C12.339 10.0368 12.4167 9.96075 12.5172 9.89722C12.6176 9.83372 12.7407 9.78439 12.8865 9.74929C13.0323 9.71419 13.1943 9.69666 13.3725 9.69666C13.5021 9.69666 13.6389 9.70669 13.7831 9.72673C13.9273 9.74679 14.0723 9.77773 14.2181 9.81949C14.3639 9.86129 14.5056 9.91395 14.6433 9.97745C14.781 10.041 14.9082 10.1145 15.0248 10.1981V8.69876C14.7883 8.60517 14.5299 8.5358 14.2497 8.49067C13.9694 8.44554 13.6479 8.42297 13.285 8.42297C12.9156 8.42297 12.5657 8.46394 12.2353 8.54584C11.9048 8.62773 11.6141 8.7556 11.3629 8.92942C11.1119 9.10328 10.9134 9.32474 10.7676 9.59387C10.6219 9.86296 10.5489 10.1847 10.5489 10.5591C10.5489 11.0372 10.6826 11.445 10.9499 11.7827C11.2172 12.1203 11.6229 12.4061 12.1673 12.6402C12.3811 12.7304 12.5803 12.819 12.765 12.9059C12.9497 12.9928 13.1093 13.0831 13.2437 13.1767C13.3781 13.2703 13.4842 13.3723 13.562 13.4826C13.6398 13.5929 13.6787 13.7183 13.6787 13.8587C13.6787 13.9623 13.6543 14.0584 13.6057 14.147C13.5571 14.2356 13.4834 14.3125 13.3846 14.3777C13.2858 14.4429 13.1627 14.4938 13.0153 14.5306C12.8679 14.5674 12.6954 14.5858 12.4977 14.5858C12.1608 14.5858 11.8271 14.5248 11.4966 14.4027C11.1661 14.2807 10.86 14.0977 10.5781 13.8536ZM7.96479 9.90007H9.95896V8.58324H4.40063V9.90007H6.38505V15.7633H7.96479V9.90007Z\" fill=\"white\"/>   </g>   <defs>     <clipPath id=\"clip0_1890_23581\">       <rect width=\"15.8987\" height=\"16.4115\" fill=\"white\" transform=\"translate(0.736328 0.794189)\"/>     </clipPath>   </defs> </svg>',link:\"https://portal.thirdweb.com/typescript/v5\",subtitle:\"Integrate web3 into your app\",title:\"Typescript\"}},baseVariant,gestureVariant)})})}),isDisplayed12()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1n6mvp8-container\",\"data-framer-name\":\"Typescript Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"HpfQbvVyx-container\",name:\"Typescript Tracked\",nodeId:\"HpfQbvVyx\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"17\" height=\"18\" viewBox=\"0 0 17 18\" fill=\"none\">   <g clip-path=\"url(#clip0_1890_23581)\">     <path d=\"M15.0824 0.794189H2.28893C1.43145 0.794189 0.736328 1.51174 0.736328 2.39688V15.603C0.736328 16.4882 1.43145 17.2057 2.28893 17.2057H15.0824C15.9399 17.2057 16.635 16.4882 16.635 15.603V2.39688C16.635 1.51174 15.9399 0.794189 15.0824 0.794189Z\" fill=\"#3178C6\"/>     <path d=\"M15.0824 0.794189H2.28893C1.43145 0.794189 0.736328 1.51174 0.736328 2.39688V15.603C0.736328 16.4882 1.43145 17.2057 2.28893 17.2057H15.0824C15.9399 17.2057 16.635 16.4882 16.635 15.603V2.39688C16.635 1.51174 15.9399 0.794189 15.0824 0.794189Z\" fill=\"#3178C6\"/>     <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5781 13.8536V15.4583C10.8308 15.592 11.1297 15.6923 11.4747 15.7591C11.8198 15.826 12.1834 15.8594 12.5657 15.8594C12.9383 15.8594 13.2923 15.8227 13.6276 15.7491C13.9629 15.6756 14.257 15.5544 14.5097 15.3856C14.7624 15.2168 14.9624 14.9961 15.1098 14.7237C15.2572 14.4512 15.331 14.1144 15.331 13.7133C15.331 13.4224 15.2889 13.1675 15.2046 12.9485C15.1204 12.7296 14.9989 12.5349 14.8401 12.3644C14.6814 12.1939 14.491 12.0409 14.2691 11.9055C14.0472 11.7701 13.7969 11.6423 13.5183 11.5219C13.3142 11.435 13.1311 11.3506 12.9691 11.2687C12.8071 11.1868 12.6694 11.1032 12.556 11.018C12.4426 10.9327 12.3552 10.8425 12.2936 10.7472C12.2321 10.6519 12.2013 10.5441 12.2013 10.4237C12.2013 10.3134 12.2288 10.214 12.2839 10.1254C12.339 10.0368 12.4167 9.96075 12.5172 9.89722C12.6176 9.83372 12.7407 9.78439 12.8865 9.74929C13.0323 9.71419 13.1943 9.69666 13.3725 9.69666C13.5021 9.69666 13.6389 9.70669 13.7831 9.72673C13.9273 9.74679 14.0723 9.77773 14.2181 9.81949C14.3639 9.86129 14.5056 9.91395 14.6433 9.97745C14.781 10.041 14.9082 10.1145 15.0248 10.1981V8.69876C14.7883 8.60517 14.5299 8.5358 14.2497 8.49067C13.9694 8.44554 13.6479 8.42297 13.285 8.42297C12.9156 8.42297 12.5657 8.46394 12.2353 8.54584C11.9048 8.62773 11.6141 8.7556 11.3629 8.92942C11.1119 9.10328 10.9134 9.32474 10.7676 9.59387C10.6219 9.86296 10.5489 10.1847 10.5489 10.5591C10.5489 11.0372 10.6826 11.445 10.9499 11.7827C11.2172 12.1203 11.6229 12.4061 12.1673 12.6402C12.3811 12.7304 12.5803 12.819 12.765 12.9059C12.9497 12.9928 13.1093 13.0831 13.2437 13.1767C13.3781 13.2703 13.4842 13.3723 13.562 13.4826C13.6398 13.5929 13.6787 13.7183 13.6787 13.8587C13.6787 13.9623 13.6543 14.0584 13.6057 14.147C13.5571 14.2356 13.4834 14.3125 13.3846 14.3777C13.2858 14.4429 13.1627 14.4938 13.0153 14.5306C12.8679 14.5674 12.6954 14.5858 12.4977 14.5858C12.1608 14.5858 11.8271 14.5248 11.4966 14.4027C11.1661 14.2807 10.86 14.0977 10.5781 13.8536ZM7.96479 9.90007H9.95896V8.58324H4.40063V9.90007H6.38505V15.7633H7.96479V9.90007Z\" fill=\"white\"/>   </g>   <defs>     <clipPath id=\"clip0_1890_23581\">       <rect width=\"15.8987\" height=\"16.4115\" fill=\"white\" transform=\"translate(0.736328 0.794189)\"/>     </clipPath>   </defs> </svg>',id:\"HpfQbvVyx\",layoutId:\"HpfQbvVyx\",link:\"https://portal.thirdweb.com/typescript/v5\",name:\"Typescript Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Integrate web3 into your app\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Typescript\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_typescript_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed9()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-iptysa-container\",\"data-framer-name\":\"React Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"tN71nZYOO-container\",name:\"React Tracked\",nodeId:\"tN71nZYOO\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"17\" viewBox=\"0 0 18 17\" fill=\"none\">   <path d=\"M17.7765 8.46614C17.7765 7.29852 16.3085 6.19196 14.0578 5.50576C14.5772 3.2208 14.3463 1.40289 13.3291 0.820873C13.0947 0.68435 12.8206 0.619682 12.5212 0.619682V1.42085C12.6871 1.42085 12.8206 1.45319 12.9324 1.51426C13.4229 1.7945 13.6357 2.86153 13.4698 4.23394C13.4301 4.57165 13.3652 4.92733 13.2859 5.29019C12.5789 5.11775 11.807 4.98481 10.9954 4.89859C10.5085 4.23394 10.0035 3.63037 9.49496 3.10224C10.6708 2.01365 11.7746 1.41726 12.5248 1.41726V0.616089C11.5329 0.616089 10.2344 1.32026 8.92145 2.54178C7.60852 1.32744 6.31002 0.63046 5.31811 0.63046V1.43163C6.06475 1.43163 7.17208 2.02443 8.34795 3.10583C7.84297 3.63396 7.338 4.23394 6.85828 4.89859C6.0431 4.98481 5.27122 5.11774 4.56425 5.29379C4.48129 4.93452 4.41997 4.58602 4.37669 4.2519C4.20716 2.87949 4.41637 1.81246 4.90331 1.52864C5.01152 1.46397 5.15219 1.43523 5.31811 1.43523V0.634052C5.01512 0.634052 4.74099 0.698721 4.50293 0.835244C3.48938 1.41726 3.26214 3.23158 3.78515 5.50935C1.54163 6.19915 0.0808105 7.30211 0.0808105 8.46614C0.0808105 9.63377 1.54884 10.7403 3.79958 11.4265C3.28018 13.7115 3.51102 15.5294 4.52818 16.1114C4.76264 16.2479 5.03676 16.3126 5.33975 16.3126C6.33166 16.3126 7.63016 15.6084 8.94309 14.3869C10.256 15.6013 11.5545 16.2982 12.5464 16.2982C12.8494 16.2982 13.1236 16.2336 13.3616 16.097C14.3752 15.515 14.6024 13.7007 14.0794 11.4229C16.3157 10.7367 17.7765 9.63018 17.7765 8.46614ZM13.0803 6.06981C12.9468 6.53327 12.7809 7.0111 12.5933 7.48893C12.4454 7.20151 12.2903 6.9141 12.1208 6.62668C11.9549 6.33926 11.7782 6.05903 11.6014 5.78599C12.1136 5.86143 12.6078 5.95484 13.0803 6.06981ZM11.4283 9.89604C11.1469 10.3811 10.8584 10.8409 10.559 11.2685C10.0216 11.3152 9.47692 11.3403 8.92867 11.3403C8.38402 11.3403 7.83937 11.3152 7.30554 11.272C7.00616 10.8445 6.714 10.3882 6.43265 9.90682C6.15853 9.43617 5.90965 8.95834 5.68241 8.47692C5.90604 7.9955 6.15853 7.51408 6.42905 7.04343C6.71039 6.55842 6.99895 6.09855 7.29832 5.67102C7.83576 5.62432 8.38041 5.59917 8.92867 5.59917C9.47332 5.59917 10.018 5.62432 10.5518 5.66743C10.8512 6.09496 11.1433 6.55123 11.4247 7.03266C11.6988 7.5033 11.9477 7.98113 12.1749 8.46255C11.9477 8.94397 11.6988 9.42539 11.4283 9.89604ZM12.5933 9.42899C12.7881 9.91041 12.954 10.3918 13.0911 10.8589C12.6186 10.9739 12.1208 11.0709 11.605 11.1463C11.7818 10.8697 11.9585 10.5858 12.1244 10.2948C12.2903 10.0074 12.4454 9.7164 12.5933 9.42899ZM8.93588 13.2624C8.60043 12.9175 8.26499 12.5331 7.93315 12.1127C8.25777 12.1271 8.58961 12.1379 8.92506 12.1379C9.26411 12.1379 9.59956 12.1307 9.92779 12.1127C9.60317 12.5331 9.26772 12.9175 8.93588 13.2624ZM6.25231 11.1463C5.74012 11.0709 5.24597 10.9774 4.77346 10.8625C4.90691 10.399 5.07283 9.92119 5.26039 9.44336C5.40828 9.73078 5.56338 10.0182 5.73291 10.3056C5.90243 10.593 6.07557 10.8733 6.25231 11.1463ZM8.91785 3.66989C9.25329 4.01479 9.58874 4.3992 9.92058 4.81955C9.59595 4.80518 9.26411 4.7944 8.92867 4.7944C8.58961 4.7944 8.25417 4.80159 7.92593 4.81955C8.25056 4.3992 8.58601 4.01479 8.91785 3.66989ZM6.2487 5.78599C6.07196 6.06263 5.89522 6.34645 5.7293 6.63746C5.56338 6.92487 5.40828 7.21229 5.26039 7.49971C5.06562 7.01828 4.8997 6.53686 4.76264 6.06981C5.23515 5.95844 5.73291 5.86143 6.2487 5.78599ZM2.98441 10.2841C1.70755 9.74155 0.881554 9.0302 0.881554 8.46614C0.881554 7.90209 1.70755 7.18714 2.98441 6.64824C3.29461 6.51531 3.63366 6.39675 3.98353 6.28537C4.18913 6.98954 4.45965 7.72245 4.7951 8.47333C4.46326 9.22061 4.19634 9.94993 3.99436 10.6505C3.63727 10.5391 3.29821 10.417 2.98441 10.2841ZM4.92495 15.418C4.4344 15.1378 4.22159 14.0708 4.38751 12.6983C4.42719 12.3606 4.49211 12.005 4.57147 11.6421C5.27843 11.8145 6.05032 11.9475 6.86188 12.0337C7.34882 12.6983 7.85379 13.3019 8.36237 13.83C7.18651 14.9186 6.08278 15.515 5.33253 15.515C5.17022 15.5114 5.03316 15.4791 4.92495 15.418ZM13.4806 12.6804C13.6502 14.0528 13.441 15.1198 12.954 15.4037C12.8458 15.4683 12.7051 15.4971 12.5392 15.4971C11.7926 15.4971 10.6853 14.9043 9.50939 13.8229C10.0144 13.2947 10.5193 12.6948 10.9991 12.0301C11.8142 11.9439 12.5861 11.8109 13.2931 11.6349C13.376 11.9978 13.441 12.3463 13.4806 12.6804ZM14.8693 10.2841C14.5591 10.417 14.2201 10.5355 13.8702 10.6469C13.6646 9.94274 13.3941 9.20983 13.0586 8.45896C13.3905 7.71168 13.6574 6.98236 13.8594 6.28178C14.2165 6.39315 14.5555 6.51531 14.8729 6.64824C16.1498 7.19073 16.9758 7.90209 16.9758 8.46614C16.9722 9.0302 16.1462 9.74515 14.8693 10.2841Z\" fill=\"#61DAFB\"/>   <path d=\"M8.92499 10.1081C9.83536 10.1081 10.5734 9.37298 10.5734 8.46621C10.5734 7.55943 9.83536 6.82434 8.92499 6.82434C8.01461 6.82434 7.27661 7.55943 7.27661 8.46621C7.27661 9.37298 8.01461 10.1081 8.92499 10.1081Z\" fill=\"#61DAFB\"/> </svg>',id:\"tN71nZYOO\",layoutId:\"tN71nZYOO\",link:\"https://portal.thirdweb.com/react/v5\",name:\"React Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Components and hooks for wallets\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"React\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_react_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed9()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18klk57-container\",\"data-framer-name\":\"React Native Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"M61Dqu1Dz-container\",name:\"React Native Tracked\",nodeId:\"M61Dqu1Dz\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"17\" viewBox=\"0 0 18 17\" fill=\"none\">   <path d=\"M17.7765 8.46614C17.7765 7.29852 16.3085 6.19196 14.0578 5.50576C14.5772 3.2208 14.3463 1.40289 13.3291 0.820873C13.0947 0.68435 12.8206 0.619682 12.5212 0.619682V1.42085C12.6871 1.42085 12.8206 1.45319 12.9324 1.51426C13.4229 1.7945 13.6357 2.86153 13.4698 4.23394C13.4301 4.57165 13.3652 4.92733 13.2859 5.29019C12.5789 5.11775 11.807 4.98481 10.9954 4.89859C10.5085 4.23394 10.0035 3.63037 9.49496 3.10224C10.6708 2.01365 11.7746 1.41726 12.5248 1.41726V0.616089C11.5329 0.616089 10.2344 1.32026 8.92145 2.54178C7.60852 1.32744 6.31002 0.63046 5.31811 0.63046V1.43163C6.06475 1.43163 7.17208 2.02443 8.34795 3.10583C7.84297 3.63396 7.338 4.23394 6.85828 4.89859C6.0431 4.98481 5.27122 5.11774 4.56425 5.29379C4.48129 4.93452 4.41997 4.58602 4.37669 4.2519C4.20716 2.87949 4.41637 1.81246 4.90331 1.52864C5.01152 1.46397 5.15219 1.43523 5.31811 1.43523V0.634052C5.01512 0.634052 4.74099 0.698721 4.50293 0.835244C3.48938 1.41726 3.26214 3.23158 3.78515 5.50935C1.54163 6.19915 0.0808105 7.30211 0.0808105 8.46614C0.0808105 9.63377 1.54884 10.7403 3.79958 11.4265C3.28018 13.7115 3.51102 15.5294 4.52818 16.1114C4.76264 16.2479 5.03676 16.3126 5.33975 16.3126C6.33166 16.3126 7.63016 15.6084 8.94309 14.3869C10.256 15.6013 11.5545 16.2982 12.5464 16.2982C12.8494 16.2982 13.1236 16.2336 13.3616 16.097C14.3752 15.515 14.6024 13.7007 14.0794 11.4229C16.3157 10.7367 17.7765 9.63018 17.7765 8.46614ZM13.0803 6.06981C12.9468 6.53327 12.7809 7.0111 12.5933 7.48893C12.4454 7.20151 12.2903 6.9141 12.1208 6.62668C11.9549 6.33926 11.7782 6.05903 11.6014 5.78599C12.1136 5.86143 12.6078 5.95484 13.0803 6.06981ZM11.4283 9.89604C11.1469 10.3811 10.8584 10.8409 10.559 11.2685C10.0216 11.3152 9.47692 11.3403 8.92867 11.3403C8.38402 11.3403 7.83937 11.3152 7.30554 11.272C7.00616 10.8445 6.714 10.3882 6.43265 9.90682C6.15853 9.43617 5.90965 8.95834 5.68241 8.47692C5.90604 7.9955 6.15853 7.51408 6.42905 7.04343C6.71039 6.55842 6.99895 6.09855 7.29832 5.67102C7.83576 5.62432 8.38041 5.59917 8.92867 5.59917C9.47332 5.59917 10.018 5.62432 10.5518 5.66743C10.8512 6.09496 11.1433 6.55123 11.4247 7.03266C11.6988 7.5033 11.9477 7.98113 12.1749 8.46255C11.9477 8.94397 11.6988 9.42539 11.4283 9.89604ZM12.5933 9.42899C12.7881 9.91041 12.954 10.3918 13.0911 10.8589C12.6186 10.9739 12.1208 11.0709 11.605 11.1463C11.7818 10.8697 11.9585 10.5858 12.1244 10.2948C12.2903 10.0074 12.4454 9.7164 12.5933 9.42899ZM8.93588 13.2624C8.60043 12.9175 8.26499 12.5331 7.93315 12.1127C8.25777 12.1271 8.58961 12.1379 8.92506 12.1379C9.26411 12.1379 9.59956 12.1307 9.92779 12.1127C9.60317 12.5331 9.26772 12.9175 8.93588 13.2624ZM6.25231 11.1463C5.74012 11.0709 5.24597 10.9774 4.77346 10.8625C4.90691 10.399 5.07283 9.92119 5.26039 9.44336C5.40828 9.73078 5.56338 10.0182 5.73291 10.3056C5.90243 10.593 6.07557 10.8733 6.25231 11.1463ZM8.91785 3.66989C9.25329 4.01479 9.58874 4.3992 9.92058 4.81955C9.59595 4.80518 9.26411 4.7944 8.92867 4.7944C8.58961 4.7944 8.25417 4.80159 7.92593 4.81955C8.25056 4.3992 8.58601 4.01479 8.91785 3.66989ZM6.2487 5.78599C6.07196 6.06263 5.89522 6.34645 5.7293 6.63746C5.56338 6.92487 5.40828 7.21229 5.26039 7.49971C5.06562 7.01828 4.8997 6.53686 4.76264 6.06981C5.23515 5.95844 5.73291 5.86143 6.2487 5.78599ZM2.98441 10.2841C1.70755 9.74155 0.881554 9.0302 0.881554 8.46614C0.881554 7.90209 1.70755 7.18714 2.98441 6.64824C3.29461 6.51531 3.63366 6.39675 3.98353 6.28537C4.18913 6.98954 4.45965 7.72245 4.7951 8.47333C4.46326 9.22061 4.19634 9.94993 3.99436 10.6505C3.63727 10.5391 3.29821 10.417 2.98441 10.2841ZM4.92495 15.418C4.4344 15.1378 4.22159 14.0708 4.38751 12.6983C4.42719 12.3606 4.49211 12.005 4.57147 11.6421C5.27843 11.8145 6.05032 11.9475 6.86188 12.0337C7.34882 12.6983 7.85379 13.3019 8.36237 13.83C7.18651 14.9186 6.08278 15.515 5.33253 15.515C5.17022 15.5114 5.03316 15.4791 4.92495 15.418ZM13.4806 12.6804C13.6502 14.0528 13.441 15.1198 12.954 15.4037C12.8458 15.4683 12.7051 15.4971 12.5392 15.4971C11.7926 15.4971 10.6853 14.9043 9.50939 13.8229C10.0144 13.2947 10.5193 12.6948 10.9991 12.0301C11.8142 11.9439 12.5861 11.8109 13.2931 11.6349C13.376 11.9978 13.441 12.3463 13.4806 12.6804ZM14.8693 10.2841C14.5591 10.417 14.2201 10.5355 13.8702 10.6469C13.6646 9.94274 13.3941 9.20983 13.0586 8.45896C13.3905 7.71168 13.6574 6.98236 13.8594 6.28178C14.2165 6.39315 14.5555 6.51531 14.8729 6.64824C16.1498 7.19073 16.9758 7.90209 16.9758 8.46614C16.9722 9.0302 16.1462 9.74515 14.8693 10.2841Z\" fill=\"#61DAFB\"/>   <path d=\"M8.92499 10.1081C9.83536 10.1081 10.5734 9.37298 10.5734 8.46621C10.5734 7.55943 9.83536 6.82434 8.92499 6.82434C8.01461 6.82434 7.27661 7.55943 7.27661 8.46621C7.27661 9.37298 8.01461 10.1081 8.92499 10.1081Z\" fill=\"#61DAFB\"/> </svg>',id:\"M61Dqu1Dz\",layoutId:\"M61Dqu1Dz\",link:\"https://portal.thirdweb.com/react-native/v5\",name:\"React Native Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"React native components for mobile apps\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"React Native\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_react_native_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed9()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nfheoj-container\",\"data-framer-name\":\"Unreal Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"tB5NxSl_S-container\",name:\"Unreal Tracked\",nodeId:\"tB5NxSl_S\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"22\" height=\"21\" viewBox=\"0 0 22 21\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.348 11.7183C16.1977 12.4434 15.5281 14.3033 13.3944 15.3108L12.5381 14.3482L11.0931 15.8006C10.2703 15.7896 9.46125 15.5886 8.72911 15.2133C7.99697 14.8381 7.36158 14.2988 6.87259 13.6375C7.02633 13.6853 7.18509 13.7151 7.3457 13.7263C7.58225 13.7306 7.8386 13.644 7.8386 13.245V9.32793C7.84214 9.22713 7.82197 9.12691 7.7797 9.03532C7.73744 8.94372 7.67427 8.86331 7.59526 8.80054C7.51625 8.73777 7.42361 8.69439 7.32478 8.67388C7.22595 8.65338 7.12368 8.65632 7.02619 8.68248C6.35721 8.83542 5.82202 10.5044 5.82202 10.5044C5.81459 9.73368 5.97523 8.97059 6.2928 8.26819C6.61036 7.56578 7.07722 6.94091 7.66092 6.43703C8.65744 5.59318 9.63094 5.30121 10.3706 5.18677C9.64004 5.60281 9.22901 6.28195 9.22901 6.852C9.22901 7.7659 9.78132 7.65788 9.94509 7.52312V12.8129C9.97277 12.8794 10.0087 12.9421 10.0521 12.9996C10.1253 13.1007 10.2216 13.1827 10.3331 13.2389C10.4446 13.2951 10.5679 13.3238 10.6927 13.3226C11.2461 13.3226 11.9638 12.6916 11.9638 12.6916V8.40815C11.9638 7.97232 11.6352 7.44558 11.3061 7.2659C11.3061 7.2659 11.9151 7.15895 12.3861 7.51777C12.4744 7.40969 12.5684 7.30634 12.6676 7.20815C13.7626 6.13329 14.796 5.82848 15.6566 5.67554C15.6566 5.67554 14.0901 6.90548 14.0901 8.55253C14.0901 9.77873 14.1217 12.7686 14.1217 12.7686C14.7045 13.3279 15.5677 12.5204 16.348 11.7183Z\" fill=\"white\"/>   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.162 1.74402C9.43595 1.74412 7.74865 2.25566 6.31352 3.21395C4.87838 4.17223 3.75987 5.53423 3.09942 7.12769C2.43898 8.72115 2.26626 10.4745 2.6031 12.1661C2.93995 13.8576 3.77124 15.4114 4.99184 16.6309C6.21245 17.8503 7.76755 18.6808 9.46049 19.0171C11.1534 19.3535 12.9082 19.1807 14.5028 18.5206C16.0975 17.8605 17.4604 16.7427 18.4193 15.3086C19.3782 13.8745 19.8899 12.1885 19.8898 10.4638C19.8898 9.31859 19.6641 8.18462 19.2254 7.12662C18.7868 6.06862 18.1439 5.10731 17.3335 4.2976C16.523 3.48788 15.5608 2.84561 14.5019 2.40746C13.443 1.96932 12.3081 1.74388 11.162 1.74402ZM11.162 18.8354C9.50494 18.8355 7.88502 18.3446 6.50714 17.4248C5.12926 16.505 4.05531 15.1975 3.42109 13.6678C2.78687 12.1381 2.62088 10.4548 2.9441 8.83087C3.26732 7.2069 4.06523 5.71517 5.23694 4.54433C6.40865 3.37348 7.90152 2.57611 9.52677 2.25304C11.152 1.92998 12.8367 2.09573 14.3676 2.72935C15.8986 3.36296 17.2071 4.43597 18.1278 5.81269C19.0484 7.18941 19.5398 8.808 19.5398 10.4638C19.5398 12.684 18.6572 14.8132 17.0861 16.3832C15.5149 17.9532 13.384 18.8353 11.162 18.8354Z\" fill=\"white\"/> </svg>',id:\"tB5NxSl_S\",layoutId:\"tB5NxSl_S\",link:\"https://portal.thirdweb.com/unreal\",name:\"Unreal Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Create wallets in Unreal Engine\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Unreal Engine\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_unreal_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed9()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-42b008-container\",\"data-framer-name\":\"Unity Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"czEpkuObp-container\",name:\"Unity Tracked\",nodeId:\"czEpkuObp\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"21\" height=\"21\" viewBox=\"0 0 21 21\" fill=\"none\">   <path d=\"M15.6716 15.2015L12.8509 10.457L15.6716 5.71253L17.0313 10.457L15.6716 15.2015ZM9.39389 14.7385L5.84992 11.2236H11.4912L14.3118 15.9681L9.39389 14.7385ZM9.39389 6.16099L14.2974 4.93144L11.4768 9.67593H5.83556L9.39389 6.16099ZM16.5973 2.60266L10.1894 4.26616L9.23468 5.90063L7.31097 5.88611L2.60986 10.457L7.31097 15.028L9.23468 15.0134L10.1894 16.6479L16.5973 18.3259L18.3186 12.0915L17.3494 10.4715L18.3186 8.85144L16.5973 2.60266Z\" fill=\"white\"/> </svg>',id:\"czEpkuObp\",layoutId:\"czEpkuObp\",link:\"https://portal.thirdweb.com/unity/v5\",name:\"Unity Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Build games with blockchain and web3\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Unity\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_unity_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed9()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kumahl-container\",\"data-framer-name\":\".NET Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"oGfvGCYjh-container\",name:\".NET Tracked\",nodeId:\"oGfvGCYjh\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\">   <g clip-path=\"url(#clip0_1890_23608)\">     <path d=\"M16.2099 0.0140381H0.513428V15.9859H16.2099V0.0140381Z\" fill=\"#512BD4\"/>     <path d=\"M3.31093 10.2185C3.19994 10.2185 3.1056 10.1808 3.02791 10.1056C2.95022 10.0284 2.91138 9.93671 2.91138 9.83058C2.91138 9.72249 2.95022 9.62988 3.02791 9.55269C3.1056 9.47549 3.19994 9.43689 3.31093 9.43689C3.42376 9.43689 3.51903 9.47549 3.59672 9.55269C3.67626 9.62988 3.71603 9.72249 3.71603 9.83058C3.71603 9.93671 3.67626 10.0284 3.59672 10.1056C3.51903 10.1808 3.42376 10.2185 3.31093 10.2185Z\" fill=\"white\"/>     <path d=\"M7.74777 10.1544H7.02635L5.12573 7.10333C5.07764 7.02613 5.03785 6.94602 5.00642 6.86305H4.98976C5.00457 6.95184 5.01197 7.14192 5.01197 7.43331V10.1544H4.37378V6.0033H5.14236L6.97919 8.98202C7.05689 9.10556 7.10683 9.19046 7.12903 9.23676H7.14012C7.12163 9.12678 7.11237 8.94055 7.11237 8.67806V6.0033H7.74777V10.1544Z\" fill=\"white\"/>     <path d=\"M10.8557 10.1544H8.62207V6.0033H10.7669V6.58806H9.28246V7.76332H10.6504V8.34517H9.28246V9.57256H10.8557V10.1544Z\" fill=\"white\"/>     <path d=\"M14.0299 6.58806H12.8867V10.1544H12.2263V6.58806H11.0859V6.0033H14.0299V6.58806Z\" fill=\"white\"/>   </g>   <defs>     <clipPath id=\"clip0_1890_23608\">       <rect width=\"15.6965\" height=\"15.9719\" fill=\"white\" transform=\"translate(0.513428 0.0140381)\"/>     </clipPath>   </defs> </svg>',id:\"oGfvGCYjh\",layoutId:\"oGfvGCYjh\",link:\"https://portal.thirdweb.com/dotnet\",name:\".NET Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Build .NET apps and Godot games\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\".NET\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_net_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed9()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1l6p9qe-container\",\"data-framer-name\":\"Solidity Tracked\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"CGukfUTlF-container\",name:\"Solidity Tracked\",nodeId:\"CGukfUTlF\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(IconTitleButton,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderColor:\"rgb(38, 38, 38)\",borderRadius:6,height:\"100%\",iconGap:12,iconSize:32,iconSvg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"11\" height=\"17\" viewBox=\"0 0 11 17\" fill=\"none\">   <path opacity=\"0.45\" d=\"M7.97003 0.670288L5.46356 5.16481H0.454102L2.95885 0.670288H7.97003Z\" fill=\"#242424\"/>   <path opacity=\"0.6\" d=\"M5.46467 5.16493H10.4759L7.97114 0.67041H2.95996L5.46467 5.16493Z\" fill=\"#DDDDDD\"/>   <path opacity=\"0.8\" d=\"M2.95943 9.60244L5.46472 5.13723L2.95943 0.670288L0.454102 5.13723L2.95943 9.60244Z\" fill=\"#DDDDDD\"/>   <path opacity=\"0.45\" d=\"M2.95996 16.2597L5.46585 11.822H10.4759L7.96999 16.2597H2.95996Z\" fill=\"#242424\"/>   <path opacity=\"0.6\" d=\"M5.4653 11.822H0.454102L2.95883 16.2597H7.97003L5.4653 11.822Z\" fill=\"#DDDDDD\"/>   <path opacity=\"0.8\" d=\"M7.96929 7.38428L5.46484 11.821L7.96929 16.2595L10.4755 11.821L7.96929 7.38428Z\" fill=\"#DDDDDD\"/> </svg>',id:\"CGukfUTlF\",layoutId:\"CGukfUTlF\",link:\"https://portal.thirdweb.com/contracts/build/overview\",name:\"Solidity Tracked\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,style:{width:\"100%\"},subtitle:\"Build custom smart contracts efficiently\",subtitleColor:\"rgb(163, 163, 163)\",textGap:2,title:\"Solidity\",titleColor:\"rgb(255, 255, 255)\",trackingEvent:\"clicked_solidity_navigation\",trackingProperties:'{\"location\": \"header\", \"type\": \"navigation\"}',width:\"100%\"})})}),isDisplayed10()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hx3qpk-container\",layoutDependency:layoutDependency,layoutId:\"TY8ec_nop-container\",nodeId:\"TY8ec_nop\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/contracts\",f_OWzkWPM:getLocalizedValue(\"v17\",activeLocale)??\"Components and hooks for wallets\",height:\"100%\",id:\"TY8ec_nop\",layoutId:\"TY8ec_nop\",sEqIccMsb:addImageAlt({pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/LmJGeVwzAQ87sd08YhFRLijvQd4.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"React\"})})}),isDisplayed10()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1la103s-container\",layoutDependency:layoutDependency,layoutId:\"pDpveiPJq-container\",nodeId:\"pDpveiPJq\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/contracts\",f_OWzkWPM:getLocalizedValue(\"v18\",activeLocale)??\"React native components for mobile apps\",height:\"100%\",id:\"pDpveiPJq\",layoutId:\"pDpveiPJq\",sEqIccMsb:addImageAlt({pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/LmJGeVwzAQ87sd08YhFRLijvQd4.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"React Native\"})})}),isDisplayed10()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16mjbfh-container\",layoutDependency:layoutDependency,layoutId:\"BZRFtXoOu-container\",nodeId:\"BZRFtXoOu\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/engine\",f_OWzkWPM:getLocalizedValue(\"v19\",activeLocale)??\"Build games with blockchain and web3 \",height:\"100%\",id:\"BZRFtXoOu\",layoutId:\"BZRFtXoOu\",sEqIccMsb:addImageAlt({pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/jOWJwOhk6u5l9UJiN7VCsVv8.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Unity\"})})}),isDisplayed10()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tlalh2-container\",layoutDependency:layoutDependency,layoutId:\"nfySXS56K-container\",nodeId:\"nfySXS56K\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/engine\",f_OWzkWPM:getLocalizedValue(\"v20\",activeLocale)??\"Build custom smart contracts efficiently\",height:\"100%\",id:\"nfySXS56K\",layoutId:\"nfySXS56K\",sEqIccMsb:addImageAlt({pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/kKbRH1ZjZwo6Vcs3txJzyyZEo0s.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\"Solidity\"})})}),isDisplayed10()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17zxyhg-container\",layoutDependency:layoutDependency,layoutId:\"odaR0ENJG-container\",nodeId:\"odaR0ENJG\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",children:/*#__PURE__*/_jsx(NavigationNavigationDropdownItem,{DZKmBZ71m:\"https://thirdweb.com/engine\",f_OWzkWPM:getLocalizedValue(\"v21\",activeLocale)??\"Build .NET apps and Godot games\",height:\"100%\",id:\"odaR0ENJG\",layoutId:\"odaR0ENJG\",sEqIccMsb:addImageAlt({pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/h2ivOUcXIVkUXvrxvtn0Vw0CMmw.png\"},\"\"),style:{width:\"100%\"},variant:\"xNFM592PV\",width:\"100%\",x7ezT7rx8:\".NET\"})})})]}),isDisplayed12()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-e5jtjs\",layoutDependency:layoutDependency,layoutId:\"qe0diIAlY\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"SDKs\"})}),className:\"framer-28d3yv\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"FV0lfjZpU\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed13()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zwzbda\",\"data-framer-name\":\"Header 1\",layoutDependency:layoutDependency,layoutId:\"D9_6e9Rpd\",...addPropertyOverrides({dez9JJdxV:{\"data-highlight\":true,onTap:onTapzhqlim},LAig6L3qM:{\"data-highlight\":true,onTap:onTapd1asq2},T8sMIMJ9w:{\"data-highlight\":true,onTap:onTap10o7lfq}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Product\"})}),className:\"framer-1rt1j1l\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"gwFd07vNO\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{dez9JJdxV:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},LAig6L3qM:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},T8sMIMJ9w:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dez9JJdxV:{children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Product\"})})},e3yhbEX_d:{children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Resources\"})})},LAig6L3qM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"SDKs\"})})},T8sMIMJ9w:{children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Resources\"})})},xzgIV8Sif:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"SDKs\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1woxgjt-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"tNlgdIPTG-container\",nodeId:\"tNlgdIPTG\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",style:{rotate:0},variants:{dez9JJdxV:{rotate:180},e3yhbEX_d:{rotate:0},LAig6L3qM:{rotate:180},Nn65t9o0Z:{rotate:0},T8sMIMJ9w:{rotate:180},xzgIV8Sif:{rotate:0}},children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",customPadding:0,customStrokeWidth:1.25,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\">   <path d=\"M4.5 9L7.5 6L4.5 3\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',height:\"100%\",id:\"tNlgdIPTG\",layoutId:\"tNlgdIPTG\",lineCap:\"round\",lineJoin:\"round\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({dez9JJdxV:{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z\" fill=\"black\"/> </svg>'},e3yhbEX_d:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z\" fill=\"black\"/> </svg>'},LAig6L3qM:{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z\" fill=\"black\"/> </svg>'},Nn65t9o0Z:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z\" fill=\"black\"/> </svg>'},T8sMIMJ9w:{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z\" fill=\"black\"/> </svg>'},xzgIV8Sif:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z\" fill=\"black\"/> </svg>'}},baseVariant,gestureVariant)})})})]}),isDisplayed14()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o5n3vw\",\"data-framer-name\":\"Header 2\",layoutDependency:layoutDependency,layoutId:\"rN_qI3_3t\",...addPropertyOverrides({rR2_PuvFN:{\"data-highlight\":true,onTap:onTap15te8ni},vNbhnXS57:{\"data-highlight\":true,onTap:onTapeylbgt}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Solutions\"})}),className:\"framer-xlm5wn\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"cWwHG4tTc\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{rR2_PuvFN:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},vNbhnXS57:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jqryaPGGn:{children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Dev Tools\"})})},rR2_PuvFN:{children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Solutions\"})})},vNbhnXS57:{children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Dev Tools\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v4cxso-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DtnANPo3_-container\",nodeId:\"DtnANPo3_\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",style:{rotate:180},variants:{jqryaPGGn:{rotate:0},R2o9ed1nb:{rotate:0}},children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",customPadding:0,customStrokeWidth:1.25,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z\" fill=\"black\"/> </svg>',height:\"100%\",id:\"DtnANPo3_\",layoutId:\"DtnANPo3_\",lineCap:\"round\",lineJoin:\"round\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({jqryaPGGn:{customColor:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\"},R2o9ed1nb:{customColor:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\"}},baseVariant,gestureVariant)})})})]}),isDisplayed15()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9zbp61\",\"data-framer-name\":\"Header 3\",layoutDependency:layoutDependency,layoutId:\"aJ5HcMrNd\",...addPropertyOverrides({XRZmrqXWr:{\"data-highlight\":true,onTap:onTap1gcbvu9}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Company\"})}),className:\"framer-1d20owm\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"kyVPYeqbc\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{XRZmrqXWr:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({XRZmrqXWr:{children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Company\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9bpp6c-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"v2aYjTzX2-container\",nodeId:\"v2aYjTzX2\",rendersWithMotion:true,scopeId:\"FJcN2qQXX\",style:{rotate:180},variants:{Atz5daY8g:{rotate:0}},children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",customPadding:0,customStrokeWidth:1.25,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z\" fill=\"black\"/> </svg>',height:\"100%\",id:\"v2aYjTzX2\",layoutId:\"v2aYjTzX2\",lineCap:\"round\",lineJoin:\"round\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({Atz5daY8g:{customColor:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9fW4m.framer-c1zci3, .framer-9fW4m .framer-c1zci3 { display: block; }\",\".framer-9fW4m.framer-uk38wi { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px; position: relative; width: 368px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9fW4m .framer-1ksf9ra { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9fW4m .framer-va4txx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9fW4m .framer-2jy6km-container, .framer-9fW4m .framer-4lsc77-container, .framer-9fW4m .framer-1f44o44-container, .framer-9fW4m .framer-7wzewl-container, .framer-9fW4m .framer-klpwyg-container, .framer-9fW4m .framer-s3xq8q-container, .framer-9fW4m .framer-p40xqj-container, .framer-9fW4m .framer-1e5jc7w-container, .framer-9fW4m .framer-1flqv9x-container, .framer-9fW4m .framer-1bnh30s-container, .framer-9fW4m .framer-12eu28q-container, .framer-9fW4m .framer-1r95ugs-container, .framer-9fW4m .framer-1t140to-container, .framer-9fW4m .framer-1gwcj72-container, .framer-9fW4m .framer-gmuiqv-container, .framer-9fW4m .framer-k9xxn6-container, .framer-9fW4m .framer-1ytwjj2-container, .framer-9fW4m .framer-3fau8r-container, .framer-9fW4m .framer-a7wxmj-container, .framer-9fW4m .framer-je1n17-container, .framer-9fW4m .framer-1pan8to-container, .framer-9fW4m .framer-13pxsbf-container, .framer-9fW4m .framer-1hwsvq2-container, .framer-9fW4m .framer-38tid9-container, .framer-9fW4m .framer-k5dvtg-container, .framer-9fW4m .framer-mlq0wh-container, .framer-9fW4m .framer-271pz-container, .framer-9fW4m .framer-13wotha-container, .framer-9fW4m .framer-1g0l49u-container, .framer-9fW4m .framer-1rbmeec-container, .framer-9fW4m .framer-1fyuaa6-container, .framer-9fW4m .framer-bs184q-container, .framer-9fW4m .framer-1y54ibs-container, .framer-9fW4m .framer-ex70qi-container, .framer-9fW4m .framer-9rhl2e-container, .framer-9fW4m .framer-a00ula-container, .framer-9fW4m .framer-1ca1nl0-container, .framer-9fW4m .framer-1t6d41l-container, .framer-9fW4m .framer-gep4si-container, .framer-9fW4m .framer-e6t8o3-container, .framer-9fW4m .framer-1hx3qpk-container, .framer-9fW4m .framer-1la103s-container, .framer-9fW4m .framer-16mjbfh-container, .framer-9fW4m .framer-tlalh2-container, .framer-9fW4m .framer-17zxyhg-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-9fW4m .framer-fzidap { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 36px; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: 200px; }\",\".framer-9fW4m .framer-1mju7si, .framer-9fW4m .framer-15p6vei, .framer-9fW4m .framer-b7tse1, .framer-9fW4m .framer-28d3yv, .framer-9fW4m .framer-1rt1j1l, .framer-9fW4m .framer-xlm5wn, .framer-9fW4m .framer-1d20owm { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-9fW4m .framer-1ik6rhh, .framer-9fW4m .framer-4k3mr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 284px; }\",\".framer-9fW4m .framer-fh0hg6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 4px 0px; position: relative; width: 100%; }\",\".framer-9fW4m .framer-194ni13, .framer-9fW4m .framer-e5jtjs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: 100%; }\",\".framer-9fW4m .framer-1enyy79 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: 100%; }\",\".framer-9fW4m .framer-1s6d1qf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9fW4m .framer-17396sq-container, .framer-9fW4m .framer-1n6mvp8-container, .framer-9fW4m .framer-iptysa-container, .framer-9fW4m .framer-18klk57-container, .framer-9fW4m .framer-nfheoj-container, .framer-9fW4m .framer-42b008-container, .framer-9fW4m .framer-1kumahl-container, .framer-9fW4m .framer-1l6p9qe-container { flex: none; height: auto; position: relative; width: 368px; }\",\".framer-9fW4m .framer-zwzbda, .framer-9fW4m .framer-1o5n3vw, .framer-9fW4m .framer-9zbp61 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 48px; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: 200px; }\",\".framer-9fW4m .framer-1woxgjt-container, .framer-9fW4m .framer-v4cxso-container, .framer-9fW4m .framer-9bpp6c-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-9fW4m.framer-v-mfldsd .framer-1ksf9ra, .framer-9fW4m.framer-v-rg7b9k .framer-1ksf9ra, .framer-9fW4m.framer-v-rg7b9k .framer-1ik6rhh, .framer-9fW4m.framer-v-rg7b9k .framer-4k3mr { width: 360px; }\",\".framer-9fW4m.framer-v-mfldsd .framer-1bnh30s-container, .framer-9fW4m.framer-v-zjrthp .framer-13pxsbf-container, .framer-9fW4m.framer-v-rg7b9k .framer-194ni13, .framer-9fW4m.framer-v-rg7b9k .framer-e5jtjs, .framer-9fW4m.framer-v-1100gup .framer-13pxsbf-container { order: 0; }\",\".framer-9fW4m.framer-v-mfldsd .framer-12eu28q-container, .framer-9fW4m.framer-v-rg7b9k .framer-1fyuaa6-container, .framer-9fW4m.framer-v-rg7b9k .framer-1l6p9qe-container, .framer-9fW4m.framer-v-1a5r6r6 .framer-1l6p9qe-container { order: 8; }\",\".framer-9fW4m.framer-v-mfldsd .framer-1r95ugs-container { order: 9; }\",\".framer-9fW4m.framer-v-mfldsd .framer-1t140to-container { order: 10; }\",\".framer-9fW4m.framer-v-zjrthp .framer-2jy6km-container, .framer-9fW4m.framer-v-rg7b9k .framer-fh0hg6, .framer-9fW4m.framer-v-rg7b9k .framer-38tid9-container, .framer-9fW4m.framer-v-rg7b9k .framer-1s6d1qf, .framer-9fW4m.framer-v-stlnfj .framer-1ksf9ra, .framer-9fW4m.framer-v-huml0j .framer-1ksf9ra, .framer-9fW4m.framer-v-1100gup .framer-1ksf9ra, .framer-9fW4m.framer-v-1ngqe30 .framer-1ksf9ra, .framer-9fW4m.framer-v-1a5r6r6 .framer-1s6d1qf, .framer-9fW4m.framer-v-1a5r6r6 .framer-17396sq-container { order: 1; }\",\".framer-9fW4m.framer-v-zjrthp .framer-4lsc77-container, .framer-9fW4m.framer-v-rg7b9k .framer-k5dvtg-container, .framer-9fW4m.framer-v-rg7b9k .framer-1n6mvp8-container, .framer-9fW4m.framer-v-1100gup .framer-2jy6km-container { order: 2; }\",\".framer-9fW4m.framer-v-zjrthp .framer-1f44o44-container, .framer-9fW4m.framer-v-rg7b9k .framer-mlq0wh-container, .framer-9fW4m.framer-v-rg7b9k .framer-iptysa-container, .framer-9fW4m.framer-v-1100gup .framer-4lsc77-container, .framer-9fW4m.framer-v-1a5r6r6 .framer-iptysa-container { order: 3; }\",\".framer-9fW4m.framer-v-zjrthp .framer-7wzewl-container, .framer-9fW4m.framer-v-rg7b9k .framer-271pz-container, .framer-9fW4m.framer-v-rg7b9k .framer-18klk57-container, .framer-9fW4m.framer-v-1100gup .framer-1f44o44-container, .framer-9fW4m.framer-v-1a5r6r6 .framer-18klk57-container { order: 4; }\",\".framer-9fW4m.framer-v-rg7b9k.framer-uk38wi { flex-direction: row; width: min-content; }\",\".framer-9fW4m.framer-v-rg7b9k .framer-va4txx, .framer-9fW4m.framer-v-1ngqe30 .framer-va4txx { align-content: center; align-items: center; order: 1; }\",\".framer-9fW4m.framer-v-rg7b9k .framer-1gwcj72-container, .framer-9fW4m.framer-v-1ngqe30 .framer-1gwcj72-container { order: 17; }\",\".framer-9fW4m.framer-v-rg7b9k .framer-gmuiqv-container, .framer-9fW4m.framer-v-1ngqe30 .framer-gmuiqv-container { order: 18; }\",\".framer-9fW4m.framer-v-rg7b9k .framer-k9xxn6-container, .framer-9fW4m.framer-v-1ngqe30 .framer-k9xxn6-container { order: 19; }\",\".framer-9fW4m.framer-v-rg7b9k .framer-1ytwjj2-container, .framer-9fW4m.framer-v-1ngqe30 .framer-1ytwjj2-container { order: 20; }\",\".framer-9fW4m.framer-v-rg7b9k .framer-3fau8r-container, .framer-9fW4m.framer-v-1ngqe30 .framer-3fau8r-container { order: 21; }\",\".framer-9fW4m.framer-v-rg7b9k .framer-a7wxmj-container, .framer-9fW4m.framer-v-1ngqe30 .framer-a7wxmj-container { order: 22; }\",\".framer-9fW4m.framer-v-rg7b9k .framer-je1n17-container, .framer-9fW4m.framer-v-1ngqe30 .framer-je1n17-container { order: 23; }\",\".framer-9fW4m.framer-v-rg7b9k .framer-1pan8to-container, .framer-9fW4m.framer-v-1ngqe30 .framer-1pan8to-container { order: 24; }\",\".framer-9fW4m.framer-v-rg7b9k .framer-fzidap { gap: 10px; min-height: unset; order: 0; width: 100%; }\",\".framer-9fW4m.framer-v-rg7b9k .framer-13wotha-container, .framer-9fW4m.framer-v-rg7b9k .framer-nfheoj-container, .framer-9fW4m.framer-v-1100gup .framer-7wzewl-container, .framer-9fW4m.framer-v-1a5r6r6 .framer-nfheoj-container { order: 5; }\",\".framer-9fW4m.framer-v-rg7b9k .framer-1g0l49u-container, .framer-9fW4m.framer-v-rg7b9k .framer-42b008-container, .framer-9fW4m.framer-v-1a5r6r6 .framer-42b008-container { order: 6; }\",\".framer-9fW4m.framer-v-rg7b9k .framer-1rbmeec-container, .framer-9fW4m.framer-v-rg7b9k .framer-1kumahl-container, .framer-9fW4m.framer-v-1a5r6r6 .framer-1kumahl-container { order: 7; }\",\".framer-9fW4m.framer-v-stlnfj.framer-uk38wi, .framer-9fW4m.framer-v-huml0j.framer-uk38wi, .framer-9fW4m.framer-v-1100gup.framer-uk38wi, .framer-9fW4m.framer-v-1ngqe30.framer-uk38wi, .framer-9fW4m.framer-v-12ztrlz.framer-uk38wi, .framer-9fW4m.framer-v-1a5r6r6.framer-uk38wi { padding: 0px; will-change: unset; }\",\".framer-9fW4m.framer-v-stlnfj .framer-zwzbda, .framer-9fW4m.framer-v-huml0j .framer-1o5n3vw, .framer-9fW4m.framer-v-1100gup .framer-9zbp61, .framer-9fW4m.framer-v-1ngqe30 .framer-zwzbda, .framer-9fW4m.framer-v-12ztrlz .framer-1o5n3vw, .framer-9fW4m.framer-v-1a5r6r6 .framer-zwzbda { cursor: pointer; order: 0; width: 100%; }\",\".framer-9fW4m.framer-v-1hhfutz.framer-uk38wi, .framer-9fW4m.framer-v-l4d7s2.framer-uk38wi, .framer-9fW4m.framer-v-q38cf6.framer-uk38wi, .framer-9fW4m.framer-v-qr82pp.framer-uk38wi, .framer-9fW4m.framer-v-17qx3ra.framer-uk38wi, .framer-9fW4m.framer-v-solkdp.framer-uk38wi { cursor: pointer; padding: 0px; will-change: unset; }\",\".framer-9fW4m.framer-v-1hhfutz .framer-zwzbda, .framer-9fW4m.framer-v-l4d7s2 .framer-1o5n3vw, .framer-9fW4m.framer-v-q38cf6 .framer-9zbp61, .framer-9fW4m.framer-v-qr82pp .framer-zwzbda, .framer-9fW4m.framer-v-17qx3ra .framer-1o5n3vw, .framer-9fW4m.framer-v-solkdp .framer-zwzbda { order: 0; width: 100%; }\",\".framer-9fW4m.framer-v-12ztrlz .framer-1ik6rhh { order: 2; width: 100%; }\",\".framer-9fW4m.framer-v-12ztrlz .framer-fh0hg6 { order: 2; padding: 0px; }\",\".framer-9fW4m.framer-v-1a5r6r6 .framer-4k3mr { order: 3; width: 100%; }\",'.framer-9fW4m[data-border=\"true\"]::after, .framer-9fW4m [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 342\n * @framerIntrinsicWidth 368\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ScahxRD97\":{\"layout\":[\"fixed\",\"auto\"]},\"kLcJZnmEd\":{\"layout\":[\"fixed\",\"auto\"]},\"Nz2AbCewU\":{\"layout\":[\"auto\",\"auto\"]},\"dez9JJdxV\":{\"layout\":[\"fixed\",\"auto\"]},\"rR2_PuvFN\":{\"layout\":[\"fixed\",\"auto\"]},\"XRZmrqXWr\":{\"layout\":[\"fixed\",\"auto\"]},\"Nn65t9o0Z\":{\"layout\":[\"fixed\",\"auto\"]},\"R2o9ed1nb\":{\"layout\":[\"fixed\",\"auto\"]},\"Atz5daY8g\":{\"layout\":[\"fixed\",\"auto\"]},\"T8sMIMJ9w\":{\"layout\":[\"fixed\",\"auto\"]},\"vNbhnXS57\":{\"layout\":[\"fixed\",\"auto\"]},\"LAig6L3qM\":{\"layout\":[\"fixed\",\"auto\"]},\"e3yhbEX_d\":{\"layout\":[\"fixed\",\"auto\"]},\"jqryaPGGn\":{\"layout\":[\"fixed\",\"auto\"]},\"xzgIV8Sif\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerFJcN2qQXX=withCSS(Component,css,\"framer-9fW4m\");export default FramerFJcN2qQXX;FramerFJcN2qQXX.displayName=\"Navigation / Dropdown\";FramerFJcN2qQXX.defaultProps={height:342,width:368};addPropertyControls(FramerFJcN2qQXX,{variant:{options:[\"bH2emI93a\",\"ScahxRD97\",\"kLcJZnmEd\",\"Nz2AbCewU\",\"dez9JJdxV\",\"rR2_PuvFN\",\"XRZmrqXWr\",\"Nn65t9o0Z\",\"R2o9ed1nb\",\"Atz5daY8g\",\"T8sMIMJ9w\",\"vNbhnXS57\",\"LAig6L3qM\",\"e3yhbEX_d\",\"jqryaPGGn\",\"xzgIV8Sif\"],optionTitles:[\"Desktop: Products\",\"Desktop: Solutions\",\"Desktop: Company\",\"Desktop: Developer\",\"Mobile: Products Expanded\",\"Mobile: Solutions Expanded\",\"Mobile: Company Expanded\",\"Mobile: Products Collapsed\",\"Mobile: Solutions Collapsed\",\"Mobile: Company Collapsed\",\"Mobile: Developers - Resources Expanded\",\"Mobile: Developers - Dev Tools Expanded\",\"Mobile: Developers - SDKS Expanded\",\"Mobile: Developers - Resources Collapsed\",\"Mobile: Developers - Dev Tools Collapsed\",\"Mobile: Developers - SDKs Collapsed\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerFJcN2qQXX,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...IconTitleButtonFonts,...NavigationNavigationDropdownItemFonts,...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFJcN2qQXX\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"342\",\"framerIntrinsicWidth\":\"368\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ScahxRD97\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kLcJZnmEd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nz2AbCewU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dez9JJdxV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rR2_PuvFN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XRZmrqXWr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nn65t9o0Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R2o9ed1nb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Atz5daY8g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T8sMIMJ9w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vNbhnXS57\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LAig6L3qM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"e3yhbEX_d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jqryaPGGn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xzgIV8Sif\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/vuYJjvBKWw39av0kGo34/z2CyEUwQik5Zo5R29o6x/NTBX0l6Io.js\";const SVGFonts=getFonts(SVG);const enabledGestures={l6xt7ZYLO:{hover:true},R9eGq4K66:{hover:true}};const cycleOrder=[\"R9eGq4K66\",\"l6xt7ZYLO\"];const serializationHash=\"framer-9P53S\";const variantClassNames={l6xt7ZYLO:\"framer-v-184l856\",R9eGq4K66:\"framer-v-1d3p79\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.15,ease:[.12,.23,.5,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 Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"No Icon\":\"R9eGq4K66\",Icon:\"l6xt7ZYLO\"};const getProps=({height,hover,id,link,name1,width,...props})=>{return{...props,ba8EEYMO8:hover??props.ba8EEYMO8,DypPJCEq2:name1??props.DypPJCEq2??\"Link 1\",variant:humanReadableVariantMap[props.variant]??props.variant??\"R9eGq4K66\",zhjSmsf4E:link??props.zhjSmsf4E};};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,DypPJCEq2,zhjSmsf4E,ba8EEYMO8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"R9eGq4K66\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1cl9sml=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(ba8EEYMO8){const res=await ba8EEYMO8(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"l6xt7ZYLO-hover\")return true;if(baseVariant===\"l6xt7ZYLO\")return true;return false;};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:zhjSmsf4E,motionChild:true,nodeId:\"R9eGq4K66\",openInNewTab:false,scopeId:\"Od8026J91\",...addPropertyOverrides({\"l6xt7ZYLO-hover\":{href:undefined},l6xt7ZYLO:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1d3p79\",className,classNames)} framer-1sjw63s`,\"data-framer-name\":\"No Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"R9eGq4K66\",onMouseEnter:onMouseEnter1cl9sml,ref:refBinding,style:{backgroundColor:\"rgba(23, 23, 23, 0)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999,...style},variants:{\"l6xt7ZYLO-hover\":{backgroundColor:\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\"},\"R9eGq4K66-hover\":{backgroundColor:\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\"}},...addPropertyOverrides({\"l6xt7ZYLO-hover\":{\"data-framer-name\":undefined},\"R9eGq4K66-hover\":{\"data-framer-name\":undefined},l6xt7ZYLO:{\"data-framer-name\":\"Icon\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-npxqny\",\"data-styles-preset\":\"NTBX0l6Io\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Link 1\"})}),className:\"framer-1rl34gv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IM45GnTtF\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:DypPJCEq2,variants:{\"l6xt7ZYLO-hover\":{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},\"R9eGq4K66-hover\":{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"l6xt7ZYLO-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-npxqny\",\"data-styles-preset\":\"NTBX0l6Io\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Link 1\"})})},\"R9eGq4K66-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-npxqny\",\"data-styles-preset\":\"NTBX0l6Io\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Link 1\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7zp9om-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PasbmAOtN-container\",nodeId:\"PasbmAOtN\",rendersWithMotion:true,scopeId:\"Od8026J91\",style:{rotate:0},variants:{\"l6xt7ZYLO-hover\":{rotate:180}},children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z\" fill=\"black\"/> </svg>',height:\"100%\",id:\"PasbmAOtN\",layoutId:\"PasbmAOtN\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"l6xt7ZYLO-hover\":{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9P53S.framer-1sjw63s, .framer-9P53S .framer-1sjw63s { display: block; }\",\".framer-9P53S.framer-1d3p79 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 6px 12px 6px 12px; position: relative; text-decoration: none; width: min-content; }\",\".framer-9P53S .framer-1rl34gv { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-9P53S .framer-7zp9om-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9P53S.framer-1d3p79 { gap: 0px; } .framer-9P53S.framer-1d3p79 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9P53S.framer-1d3p79 > :first-child { margin-top: 0px; } .framer-9P53S.framer-1d3p79 > :last-child { margin-bottom: 0px; } }\",\".framer-9P53S.framer-v-184l856.framer-1d3p79 { flex-direction: row; gap: 6px; padding: 6px 10px 6px 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9P53S.framer-v-184l856.framer-1d3p79 { gap: 0px; } .framer-9P53S.framer-v-184l856.framer-1d3p79 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-9P53S.framer-v-184l856.framer-1d3p79 > :first-child { margin-left: 0px; } .framer-9P53S.framer-v-184l856.framer-1d3p79 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 61.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"l6xt7ZYLO\":{\"layout\":[\"auto\",\"auto\"]},\"qPIIuJ4Rt\":{\"layout\":[\"auto\",\"auto\"]},\"Y7KEbUJYk\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"DypPJCEq2\":\"name1\",\"zhjSmsf4E\":\"link\",\"ba8EEYMO8\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerOd8026J91=withCSS(Component,css,\"framer-9P53S\");export default FramerOd8026J91;FramerOd8026J91.displayName=\"Navigation / Navigation Item\";FramerOd8026J91.defaultProps={height:32,width:61.5};addPropertyControls(FramerOd8026J91,{variant:{options:[\"R9eGq4K66\",\"l6xt7ZYLO\"],optionTitles:[\"No Icon\",\"Icon\"],title:\"Variant\",type:ControlType.Enum},DypPJCEq2:{defaultValue:\"Link 1\",title:\"Name\",type:ControlType.String},zhjSmsf4E:{title:\"Link\",type:ControlType.Link},ba8EEYMO8:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerOd8026J91,[{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\"}]},...SVGFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOd8026J91\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"61.5\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"l6xt7ZYLO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qPIIuJ4Rt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Y7KEbUJYk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"32\",\"framerVariables\":\"{\\\"DypPJCEq2\\\":\\\"name1\\\",\\\"zhjSmsf4E\\\":\\\"link\\\",\\\"ba8EEYMO8\\\":\\\"hover\\\"}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Od8026J91.map", "// Generated by Framer (56d1180)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/vuYJjvBKWw39av0kGo34/z2CyEUwQik5Zo5R29o6x/NTBX0l6Io.js\";const SVGFonts=getFonts(SVG);const enabledGestures={pkNUdqLOy:{hover:true},S_DXrcQST:{hover:true},sqtiocV0P:{hover:true}};const cycleOrder=[\"S_DXrcQST\",\"pkNUdqLOy\",\"X7feh5rSU\",\"SgV5c8p6a\",\"sqtiocV0P\"];const serializationHash=\"framer-6adrU\";const variantClassNames={pkNUdqLOy:\"framer-v-kl134c\",S_DXrcQST:\"framer-v-nhkejj\",SgV5c8p6a:\"framer-v-obugwc\",sqtiocV0P:\"framer-v-hk5vsa\",X7feh5rSU:\"framer-v-1iq56ji\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0: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!==null&&value!==void 0?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={\"Mobile Close\":\"SgV5c8p6a\",\"Mobile Default\":\"X7feh5rSU\",\"With Icon\":\"sqtiocV0P\",Primary:\"S_DXrcQST\",Secondary:\"pkNUdqLOy\"};const getProps=({click2,height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,jqbfMUXWy:(_ref=title!==null&&title!==void 0?title:props.jqbfMUXWy)!==null&&_ref!==void 0?_ref:\"Create\",RZyA4xOaV:link!==null&&link!==void 0?link:props.RZyA4xOaV,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"S_DXrcQST\",vvcOsJhDm:click2!==null&&click2!==void 0?click2:props.vvcOsJhDm};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,jqbfMUXWy,RZyA4xOaV,vvcOsJhDm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"S_DXrcQST\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapfq91xh=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(vvcOsJhDm){const res=await vvcOsJhDm(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"X7feh5rSU\",\"SgV5c8p6a\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"X7feh5rSU\",\"SgV5c8p6a\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"sqtiocV0P-hover\")return true;if(baseVariant===\"sqtiocV0P\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:RZyA4xOaV,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-nhkejj\",className,classNames)} framer-1o04y4`,\"data-framer-name\":\"Primary\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"S_DXrcQST\",onTap:onTapfq91xh,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-d095d4f4-b9c6-44d7-8496-68276b3d5054, rgb(255, 255, 255))\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,...style},variants:{\"pkNUdqLOy-hover\":{backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(23, 23, 23))\"},\"S_DXrcQST-hover\":{backgroundColor:\"var(--token-80197f60-5b03-4245-879a-f8f7bd718bb3, rgb(229, 229, 229))\"},\"sqtiocV0P-hover\":{backgroundColor:\"var(--token-80197f60-5b03-4245-879a-f8f7bd718bb3, rgb(229, 229, 229))\"},pkNUdqLOy:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\"},SgV5c8p6a:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},X7feh5rSU:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999}},...addPropertyOverrides({\"pkNUdqLOy-hover\":{\"data-framer-name\":undefined},\"S_DXrcQST-hover\":{\"data-framer-name\":undefined},\"sqtiocV0P-hover\":{\"data-framer-name\":undefined},pkNUdqLOy:{\"data-border\":true,\"data-framer-name\":\"Secondary\"},SgV5c8p6a:{\"data-border\":true,\"data-framer-name\":\"Mobile Close\"},sqtiocV0P:{\"data-framer-name\":\"With Icon\"},X7feh5rSU:{\"data-border\":true,\"data-framer-name\":\"Mobile Default\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-npxqny\",\"data-styles-preset\":\"NTBX0l6Io\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10)))\"},children:\"Create\"})}),className:\"framer-aw2l0n\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lox9tPf8O\",style:{\"--extracted-r6o4lv\":\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:jqbfMUXWy,variants:{\"pkNUdqLOy-hover\":{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\"},pkNUdqLOy:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"pkNUdqLOy-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-npxqny\",\"data-styles-preset\":\"NTBX0l6Io\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Create\"})})},pkNUdqLOy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-npxqny\",\"data-styles-preset\":\"NTBX0l6Io\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Create\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7nqurw-container\",layoutDependency:layoutDependency,layoutId:\"Sj1_3s_IW-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 8.5C2 7.94772 2.44772 7.5 3 7.5H21C21.5523 7.5 22 7.94772 22 8.5C22 9.05228 21.5523 9.5 21 9.5H3C2.44772 9.5 2 9.05228 2 8.5Z\" fill=\"white\"/>   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 15.5C2 14.9477 2.44772 14.5 3 14.5H21C21.5523 14.5 22 14.9477 22 15.5C22 16.0523 21.5523 16.5 21 16.5H3C2.44772 16.5 2 16.0523 2 15.5Z\" fill=\"white\"/> </svg>',height:\"100%\",id:\"Sj1_3s_IW\",layoutId:\"Sj1_3s_IW\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({SgV5c8p6a:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M18.7071 6.70711C19.0976 6.31658 19.0976 5.68342 18.7071 5.29289C18.3166 4.90237 17.6834 4.90237 17.2929 5.29289L12 10.5858L6.70711 5.29289C6.31658 4.90237 5.68342 4.90237 5.29289 5.29289C4.90237 5.68342 4.90237 6.31658 5.29289 6.70711L10.5858 12L5.29289 17.2929C4.90237 17.6834 4.90237 18.3166 5.29289 18.7071C5.68342 19.0976 6.31658 19.0976 6.70711 18.7071L12 13.4142L17.2929 18.7071C17.6834 19.0976 18.3166 19.0976 18.7071 18.7071C19.0976 18.3166 19.0976 17.6834 18.7071 17.2929L13.4142 12L18.7071 6.70711Z\" fill=\"black\"/> </svg>'}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1662ldj-container\",layoutDependency:layoutDependency,layoutId:\"huScnl43x-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\",customPadding:0,customStrokeWidth:1.25,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\">   <path d=\"M4.5 9L7.5 6L4.5 3\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',height:\"100%\",id:\"huScnl43x\",layoutId:\"huScnl43x\",lineCap:\"round\",lineJoin:\"round\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6adrU.framer-1o04y4, .framer-6adrU .framer-1o04y4 { display: block; }\",\".framer-6adrU.framer-nhkejj { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 6px 12px 6px 12px; position: relative; text-decoration: none; width: min-content; }\",\".framer-6adrU .framer-aw2l0n { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-6adrU .framer-7nqurw-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-6adrU .framer-1662ldj-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6adrU.framer-nhkejj { gap: 0px; } .framer-6adrU.framer-nhkejj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-6adrU.framer-nhkejj > :first-child { margin-top: 0px; } .framer-6adrU.framer-nhkejj > :last-child { margin-bottom: 0px; } }\",\".framer-6adrU.framer-v-1iq56ji.framer-nhkejj, .framer-6adrU.framer-v-obugwc.framer-nhkejj { padding: 6px; }\",\".framer-6adrU.framer-v-1iq56ji .framer-7nqurw-container, .framer-6adrU.framer-v-obugwc .framer-7nqurw-container { order: 1; }\",\".framer-6adrU.framer-v-hk5vsa.framer-nhkejj { flex-direction: row; gap: 4px; padding: 6px 8px 6px 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6adrU.framer-v-hk5vsa.framer-nhkejj { gap: 0px; } .framer-6adrU.framer-v-hk5vsa.framer-nhkejj > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-6adrU.framer-v-hk5vsa.framer-nhkejj > :first-child { margin-left: 0px; } .framer-6adrU.framer-v-hk5vsa.framer-nhkejj > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-6adrU[data-border=\"true\"]::after, .framer-6adrU [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 68.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"pkNUdqLOy\":{\"layout\":[\"auto\",\"auto\"]},\"X7feh5rSU\":{\"layout\":[\"auto\",\"auto\"]},\"SgV5c8p6a\":{\"layout\":[\"auto\",\"auto\"]},\"sqtiocV0P\":{\"layout\":[\"auto\",\"auto\"]},\"lJ1lIQZfZ\":{\"layout\":[\"auto\",\"auto\"]},\"C9V3j8Anf\":{\"layout\":[\"auto\",\"auto\"]},\"Oda2kneqT\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"jqbfMUXWy\":\"title\",\"RZyA4xOaV\":\"link\",\"vvcOsJhDm\":\"click2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersetpHQJqg=withCSS(Component,css,\"framer-6adrU\");export default FramersetpHQJqg;FramersetpHQJqg.displayName=\"Navigation / Button\";FramersetpHQJqg.defaultProps={height:32,width:68.5};addPropertyControls(FramersetpHQJqg,{variant:{options:[\"S_DXrcQST\",\"pkNUdqLOy\",\"X7feh5rSU\",\"SgV5c8p6a\",\"sqtiocV0P\"],optionTitles:[\"Primary\",\"Secondary\",\"Mobile Default\",\"Mobile Close\",\"With Icon\"],title:\"Variant\",type:ControlType.Enum},jqbfMUXWy:{defaultValue:\"Create\",displayTextArea:false,title:\"Title\",type:ControlType.String},RZyA4xOaV:{title:\"Link\",type:ControlType.Link},vvcOsJhDm:{title:\"Click 2\",type:ControlType.EventHandler}});addFonts(FramersetpHQJqg,[{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\"}]},...SVGFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersetpHQJqg\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pkNUdqLOy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"X7feh5rSU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SgV5c8p6a\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"sqtiocV0P\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lJ1lIQZfZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"C9V3j8Anf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Oda2kneqT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"jqbfMUXWy\\\":\\\"title\\\",\\\"RZyA4xOaV\\\":\\\"link\\\",\\\"vvcOsJhDm\\\":\\\"click2\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"68.5\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"32\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./setpHQJqg.map", "// Generated by Framer (9e1dc8e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-JiRlw\";const variantClassNames={rVJTvJVVy:\"framer-v-1pahxx2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"rVJTvJVVy\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1pahxx2\",className,classNames)} framer-1hlgtbl`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"rVJTvJVVy\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-narh7a\",\"data-framer-name\":\"Logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"oHYm6wre7\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 128 20\"><path d=\"M 59.459 1.318 C 58.38 1.318 57.494 2.192 57.494 3.307 C 57.494 4.4 58.38 5.274 59.459 5.274 C 60.539 5.274 61.424 4.4 61.424 3.307 C 61.424 2.192 60.539 1.318 59.459 1.318 Z M 61.187 6.28 L 57.754 6.28 L 57.754 18.063 L 61.187 18.063 Z M 37.715 1.755 L 41.062 1.755 L 41.062 6.28 L 43.631 6.28 L 43.631 9.428 L 41.062 9.428 L 41.062 13.582 C 41.062 14.194 41.537 14.675 42.12 14.675 L 43.61 14.675 L 43.61 18.019 L 42.12 18.019 C 39.701 18.019 37.715 16.03 37.715 13.56 L 37.715 9.406 L 36.16 9.406 L 36.16 6.258 L 37.715 6.258 Z M 51.815 6.018 C 50.261 6.018 49.03 6.674 48.555 7.701 L 48.555 1.755 L 45.121 1.755 L 45.121 18.041 L 48.555 18.041 L 48.555 11.439 C 48.555 10.062 49.44 9.1 50.692 9.1 C 51.966 9.1 52.679 9.931 52.679 11.33 L 52.679 18.063 L 56.112 18.063 L 56.112 10.893 C 56.112 7.832 54.558 6.018 51.815 6.018 Z M 66.089 6.258 L 66.089 7.876 C 66.607 6.695 67.859 6.018 69.436 5.996 C 69.673 5.996 69.975 6.018 70.343 6.061 L 70.343 9.341 C 69.997 9.275 69.608 9.231 69.198 9.231 C 67.233 9.231 66.089 10.346 66.089 12.292 L 66.089 18.041 L 62.655 18.041 L 62.655 6.258 Z M 79.995 7.81 C 79.65 6.783 78.289 6.061 76.54 6.061 C 74.899 6.061 73.517 6.652 72.416 7.832 C 71.336 8.991 70.775 10.455 70.775 12.161 C 70.775 13.866 71.336 15.309 72.416 16.511 C 73.517 17.67 74.899 18.26 76.54 18.26 C 78.289 18.26 79.65 17.538 79.995 16.511 L 79.995 18.063 L 83.429 18.063 L 83.429 1.755 L 79.995 1.755 Z M 79.304 14.259 C 78.721 14.828 78.008 15.09 77.166 15.09 C 76.346 15.09 75.633 14.806 75.072 14.259 C 74.489 13.669 74.208 12.969 74.208 12.161 C 74.208 11.352 74.489 10.652 75.072 10.084 C 75.655 9.494 76.346 9.209 77.166 9.209 C 78.03 9.209 78.743 9.494 79.304 10.084 C 79.909 10.652 80.211 11.352 80.211 12.161 C 80.211 12.969 79.909 13.669 79.304 14.259 Z M 93.34 6.324 L 96.45 11.92 L 98.544 6.28 L 101.913 6.28 L 97.119 18.741 L 93.34 11.964 L 89.561 18.741 L 84.789 6.28 L 88.158 6.28 L 90.231 11.92 Z M 107.57 5.996 C 105.799 5.996 104.309 6.564 103.143 7.701 C 101.999 8.816 101.416 10.302 101.416 12.139 L 101.416 12.248 C 101.416 14.084 101.999 15.571 103.143 16.686 C 104.331 17.779 105.843 18.347 107.743 18.347 C 109.514 18.347 110.96 17.997 112.062 17.276 L 112.062 14.237 C 110.982 15.003 109.6 15.374 107.937 15.374 C 106.123 15.374 104.936 14.478 104.871 13.079 L 113.4 13.079 C 113.444 12.729 113.465 12.335 113.465 11.942 C 113.465 10.259 112.904 8.86 111.824 7.723 C 110.744 6.564 109.298 5.996 107.57 5.996 Z M 104.871 10.827 C 104.892 10.281 105.173 9.822 105.691 9.45 C 106.231 9.078 106.836 8.881 107.57 8.881 C 108.93 8.881 109.989 9.778 109.989 10.827 Z M 121.649 6.061 C 123.29 6.061 124.672 6.652 125.752 7.832 C 126.853 9.013 127.415 10.434 127.415 12.139 C 127.415 13.844 126.853 15.287 125.752 16.489 C 124.672 17.648 123.29 18.238 121.649 18.238 C 119.9 18.238 118.54 17.517 118.194 16.489 L 118.194 18.041 L 114.761 18.041 L 114.761 1.755 L 118.194 1.755 L 118.194 7.81 C 118.54 6.783 119.9 6.061 121.649 6.061 Z M 121.023 15.09 C 121.844 15.09 122.535 14.828 123.118 14.259 C 123.701 13.669 123.981 12.969 123.981 12.161 C 123.981 11.352 123.701 10.652 123.118 10.084 C 122.556 9.494 121.844 9.209 121.023 9.209 C 120.181 9.209 119.468 9.494 118.864 10.084 C 118.281 10.652 117.978 11.352 117.978 12.161 C 117.978 12.969 118.281 13.669 118.864 14.259 C 119.447 14.806 120.159 15.09 121.023 15.09 Z\" fill=\"rgb(255,255,255)\"></path><g transform=\"translate(-0.089 0.667)\" id=\"ss10875599144_2\"><path d=\"M 0.001 18.667 L 0.001 0 L 30.026 0 L 30.026 18.667 Z\" fill=\"transparent\"></path><g><defs><linearGradient id=\"idss10875599144_4g-926470010\" x1=\"0.12776720615029757\" x2=\"0.8722327938497024\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(242,19,164)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(82,4,191)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 0.082 1.571 C -0.217 0.816 0.34 0 1.156 0 L 6.223 0 C 6.699 0 7.121 0.283 7.298 0.721 L 11.331 10.778 C 11.44 11.048 11.44 11.351 11.331 11.628 L 8.794 17.944 C 8.406 18.908 7.033 18.908 6.645 17.944 Z M 9.869 1.537 C 9.597 0.789 10.155 0 10.957 0 L 15.371 0 C 15.861 0 16.296 0.303 16.459 0.755 L 20.125 10.812 C 20.214 11.061 20.214 11.338 20.125 11.594 L 17.922 17.64 C 17.554 18.652 16.112 18.652 15.745 17.64 Z M 19.778 0 C 18.962 0 18.405 0.816 18.704 1.571 L 25.267 17.944 C 25.655 18.908 27.028 18.908 27.416 17.944 L 29.953 11.628 C 30.062 11.351 30.062 11.048 29.953 10.778 L 25.92 0.721 C 25.743 0.283 25.321 0 24.845 0 Z\" fill=\"url(#idss10875599144_4g-926470010)\"></path></g></g></svg>',svgContentId:10875599144,withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JiRlw.framer-1hlgtbl, .framer-JiRlw .framer-1hlgtbl { display: block; }\",\".framer-JiRlw.framer-1pahxx2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: 24px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-JiRlw .framer-narh7a { flex: none; height: 20px; position: relative; width: 128px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JiRlw.framer-1pahxx2 { gap: 0px; } .framer-JiRlw.framer-1pahxx2 > * { margin: 0px; margin-bottom: calc(6.6666669845581055px / 2); margin-top: calc(6.6666669845581055px / 2); } .framer-JiRlw.framer-1pahxx2 > :first-child { margin-top: 0px; } .framer-JiRlw.framer-1pahxx2 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 128\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxAomRXpzG=withCSS(Component,css,\"framer-JiRlw\");export default FramerxAomRXpzG;FramerxAomRXpzG.displayName=\"Navigation / thirdweb Logo\";FramerxAomRXpzG.defaultProps={height:24,width:128};addFonts(FramerxAomRXpzG,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxAomRXpzG\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"128\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xAomRXpzG.map", "// Generated by Framer (3d3d426)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,Link,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import LocaleSelector from\"https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/fW26mCIOTpHHBOBnf7GZ/LocaleSelector.js\";import{withToggleScroll}from\"https://framerusercontent.com/modules/0wq0GoKSyiN9IFgFOkop/529iKgd5LYGUDw7liMv2/ScrollToggle.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/6NjQzcohRcnJNy7md72W/WuBi7cgYGtIus8LzMvSy/TJtdcnIgW.js\";import ButtonsButton from\"https://framerusercontent.com/modules/CbyFIs9KoRhPjTsPTKcq/T3mL3ZilewULsoT60AnN/eMAX511LU.js\";import NavigationDropdown from\"https://framerusercontent.com/modules/xqyuHHKjlTOswb6nVbNI/m87PNpAQ9zzsiC1YxcXv/FJcN2qQXX.js\";import NavigationNavigationItem from\"https://framerusercontent.com/modules/bgyYyk6LvAOobekRcn3N/m46gWLJ45ZvApQ6FXfws/Od8026J91.js\";import NavigationButton from\"https://framerusercontent.com/modules/sNIHMkiSOl9hxX8J7e4k/fCZHKxa2svSFt9mJojMz/setpHQJqg.js\";import NavigationThirdwebLogo from\"https://framerusercontent.com/modules/mW4o5Eps5syt806qXsuY/v6UUJYStOW0dhRyUzmgA/xAomRXpzG.js\";const NavigationThirdwebLogoFonts=getFonts(NavigationThirdwebLogo);const NavigationNavigationItemFonts=getFonts(NavigationNavigationItem);const NavigationDropdownFonts=getFonts(NavigationDropdown);const MotionDivWithFX=withFX(motion.div);const LocaleSelectorFonts=getFonts(LocaleSelector);const NavigationButtonFonts=getFonts(NavigationButton);const MotionDivWithToggleScrollw940av=withCodeBoundaryForOverrides(motion.div,{nodeId:\"XgZtef9mw\",override:withToggleScroll,scopeId:\"TJtdcnIgW\"});const ButtonsButtonFonts=getFonts(ButtonsButton);const cycleOrder=[\"nmOK9Q1QZ\",\"fn0dooGuw\",\"QCI_O7SoP\",\"LGTSbm3vf\",\"WdWayDwqN\"];const serializationHash=\"framer-u0ZdK\";const variantClassNames={fn0dooGuw:\"framer-v-1jo37vb\",LGTSbm3vf:\"framer-v-uqzevy\",nmOK9Q1QZ:\"framer-v-1yp46q5\",QCI_O7SoP:\"framer-v-96py1o\",WdWayDwqN:\"framer-v-1hc49i2\"};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 transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};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={\"Desktop Scrolling\":\"LGTSbm3vf\",\"Phone Open\":\"fn0dooGuw\",\"Phone Scrolling\":\"WdWayDwqN\",Desktop:\"nmOK9Q1QZ\",Phone:\"QCI_O7SoP\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"nmOK9Q1QZ\"};};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:\"nmOK9Q1QZ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const ba8EEYMO8txyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const ba8EEYMO81itwqw2=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{setVariant(\"nmOK9Q1QZ\");overlay.show();});const vvcOsJhDm1xmze42=activeVariantCallback(async(...args)=>{setVariant(\"QCI_O7SoP\");});const vvcOsJhDmxj3cjd=activeVariantCallback(async(...args)=>{setVariant(\"fn0dooGuw\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"fn0dooGuw\",\"QCI_O7SoP\",\"WdWayDwqN\"].includes(baseVariant))return false;return true;};const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const router=useRouter();const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const ref8=React.useRef(null);const isDisplayed1=()=>{if([\"fn0dooGuw\",\"QCI_O7SoP\",\"WdWayDwqN\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"fn0dooGuw\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"WdWayDwqN\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"QCI_O7SoP\")return true;return false;};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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1yp46q5\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"nmOK9Q1QZ\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-f596dd75-4366-457f-a18a-6f599542eefd, rgb(255, 255, 255))\",...style},variants:{LGTSbm3vf:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1fcdce94-4e08-47d5-b021-6c1890240255, rgb(31, 31, 31))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},WdWayDwqN:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1fcdce94-4e08-47d5-b021-6c1890240255, rgb(31, 31, 31))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({fn0dooGuw:{\"data-framer-name\":\"Phone Open\"},LGTSbm3vf:{\"data-border\":true,\"data-framer-name\":\"Desktop Scrolling\"},QCI_O7SoP:{\"data-framer-name\":\"Phone\"},WdWayDwqN:{\"data-border\":true,\"data-framer-name\":\"Phone Scrolling\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9h1io1\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"x9Rk0tnPJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11qg3cf\",\"data-framer-name\":\"Logo + Items\",layoutDependency:layoutDependency,layoutId:\"jxzUgszgp\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0+4,...addPropertyOverrides({fn0dooGuw:{y:(componentViewport?.y||0)+0+0+20+0},QCI_O7SoP:{y:(componentViewport?.y||0)+0+0+20+0},WdWayDwqN:{y:(componentViewport?.y||0)+0+0+20+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mwqq45-container\",layoutDependency:layoutDependency,layoutId:\"IoDSu44NB-container\",nodeId:\"IoDSu44NB\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationThirdwebLogo,{height:\"100%\",id:\"IoDSu44NB\",layoutId:\"IoDSu44NB\",style:{height:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l4tp41\",\"data-framer-name\":\"Items\",layoutDependency:layoutDependency,layoutId:\"CEvNB0c2g\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0+0+0,children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-19epq6o-container\",id:`${layoutId}-19epq6o`,layoutDependency:layoutDependency,layoutId:\"IEs6x8ymX-container\",nodeId:\"IEs6x8ymX\",ref:ref1,rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:[/*#__PURE__*/_jsx(NavigationNavigationItem,{ba8EEYMO8:ba8EEYMO8txyyif({overlay}),DypPJCEq2:getLocalizedValue(\"v0\",activeLocale)??\"Products\",height:\"100%\",id:\"IEs6x8ymX\",layoutId:\"IEs6x8ymX\",variant:\"l6xt7ZYLO\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-19epq6o`,offsetX:0,offsetY:8,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-mlsoh1\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"elqjckJRh\",ref:ref2,role:\"dialog\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"368px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mpv8nk-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"e5VUUHUwC-container\",nodeId:\"e5VUUHUwC\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"e5VUUHUwC\",layoutId:\"e5VUUHUwC\",style:{width:\"100%\"},variant:\"bH2emI93a\",width:\"100%\"})})})})})})]})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0+0+0,children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-plq77r-container\",id:`${layoutId}-plq77r`,layoutDependency:layoutDependency,layoutId:\"PgvWcOexV-container\",nodeId:\"PgvWcOexV\",ref:ref3,rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:[/*#__PURE__*/_jsx(NavigationNavigationItem,{ba8EEYMO8:ba8EEYMO81itwqw2({overlay:overlay1}),DypPJCEq2:getLocalizedValue(\"v1\",activeLocale)??\"Solutions\",height:\"100%\",id:\"PgvWcOexV\",layoutId:\"PgvWcOexV\",variant:\"l6xt7ZYLO\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref3,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-plq77r`,offsetX:0,offsetY:8,onDismiss:overlay1.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-10evax\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"M3oIUksgu\",ref:ref4,role:\"dialog\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"368px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16jvv19-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LEFMpnnzy-container\",nodeId:\"LEFMpnnzy\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"LEFMpnnzy\",layoutId:\"LEFMpnnzy\",style:{width:\"100%\"},variant:\"ScahxRD97\",width:\"100%\"})})})})})})]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tmdYNosQt\"},implicitPathVariables:undefined},{href:{webPageId:\"tmdYNosQt\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-x7jpg0-container\",layoutDependency:layoutDependency,layoutId:\"PT6npf8kf-container\",nodeId:\"PT6npf8kf\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationNavigationItem,{DypPJCEq2:getLocalizedValue(\"v2\",activeLocale)??\"Pricing\",height:\"100%\",id:\"PT6npf8kf\",layoutId:\"PT6npf8kf\",variant:\"R9eGq4K66\",width:\"100%\",zhjSmsf4E:resolvedLinks[0],...addPropertyOverrides({LGTSbm3vf:{zhjSmsf4E:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0+0+0,children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-bhekl9-container\",id:`${layoutId}-bhekl9`,layoutDependency:layoutDependency,layoutId:\"PPlkI4PM7-container\",nodeId:\"PPlkI4PM7\",ref:ref5,rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:[/*#__PURE__*/_jsx(NavigationNavigationItem,{ba8EEYMO8:ba8EEYMO8txyyif({overlay:overlay2}),DypPJCEq2:getLocalizedValue(\"v3\",activeLocale)??\"Developer\",height:\"100%\",id:\"PPlkI4PM7\",layoutId:\"PPlkI4PM7\",variant:\"l6xt7ZYLO\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref5,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-bhekl9`,offsetX:0,offsetY:8,onDismiss:overlay2.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1r539h9\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"SZ6BDyzL7\",ref:ref6,role:\"dialog\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17d56h2-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"BBOVe127I-container\",nodeId:\"BBOVe127I\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"BBOVe127I\",layoutId:\"BBOVe127I\",variant:\"Nz2AbCewU\",width:\"100%\"})})})})})})]})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0+0+0,children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-59mb3z-container\",id:`${layoutId}-59mb3z`,layoutDependency:layoutDependency,layoutId:\"sNpvzuyTV-container\",nodeId:\"sNpvzuyTV\",ref:ref7,rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:[/*#__PURE__*/_jsx(NavigationNavigationItem,{ba8EEYMO8:ba8EEYMO8txyyif({overlay:overlay3}),DypPJCEq2:getLocalizedValue(\"v4\",activeLocale)??\"Company\",height:\"100%\",id:\"sNpvzuyTV\",layoutId:\"sNpvzuyTV\",variant:\"l6xt7ZYLO\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref7,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-59mb3z`,offsetX:0,offsetY:8,onDismiss:overlay3.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-5qxmit\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"YJ9agY4Rb\",ref:ref8,role:\"dialog\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10v899f-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"yvSwCykye-container\",nodeId:\"yvSwCykye\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"yvSwCykye\",layoutId:\"yvSwCykye\",variant:\"kLcJZnmEd\",width:\"100%\"})})})})})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2hijak-container\",layoutDependency:layoutDependency,layoutId:\"NIi0EcTzY-container\",nodeId:\"NIi0EcTzY\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationNavigationItem,{DypPJCEq2:\"Playground\",height:\"100%\",id:\"NIi0EcTzY\",layoutId:\"NIi0EcTzY\",variant:\"R9eGq4K66\",width:\"100%\",zhjSmsf4E:\"https://playground.thirdweb.com/connect/sign-in/button\"})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithToggleScrollw940av,{className:\"framer-w940av\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"XgZtef9mw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nozyj3-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ktylHMEpY-container\",nodeId:\"ktylHMEpY\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(LocaleSelector,{fillColor:\"var(--token-f596dd75-4366-457f-a18a-6f599542eefd, rgb(0, 0, 0))\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1.5em\"},height:\"100%\",id:\"ktylHMEpY\",layoutId:\"ktylHMEpY\",options:{border:{color:\"var(--token-1fcdce94-4e08-47d5-b021-6c1890240255, rgb(31, 31, 31))\",style:\"solid\",width:1,widthBottom:1,widthLeft:1,widthPerSide:false,widthRight:1,widthTop:1},focus:{color:\"rgb(0, 153, 255)\",offset:0,style:\"solid\",width:1},gap:5,title:true},padding:\"10px\",radius:\"100px\",style:{height:\"100%\"},textColor:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gdNhKioSl\"},implicitPathVariables:undefined},{href:{webPageId:\"gdNhKioSl\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0+0,...addPropertyOverrides({fn0dooGuw:{y:(componentViewport?.y||0)+0+0+16+0},QCI_O7SoP:{y:(componentViewport?.y||0)+0+0+16+0},WdWayDwqN:{y:(componentViewport?.y||0)+0+0+16+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mvdohm-container\",layoutDependency:layoutDependency,layoutId:\"S2zp0YOry-container\",nodeId:\"S2zp0YOry\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationButton,{height:\"100%\",id:\"S2zp0YOry\",jqbfMUXWy:getLocalizedValue(\"v5\",activeLocale)??\"Contact Us\",layoutId:\"S2zp0YOry\",RZyA4xOaV:resolvedLinks1[0],variant:\"pkNUdqLOy\",width:\"100%\",...addPropertyOverrides({fn0dooGuw:{RZyA4xOaV:undefined,variant:\"SgV5c8p6a\",vvcOsJhDm:vvcOsJhDm1xmze42},LGTSbm3vf:{RZyA4xOaV:resolvedLinks1[1]},QCI_O7SoP:{RZyA4xOaV:undefined,variant:\"X7feh5rSU\",vvcOsJhDm:vvcOsJhDmxj3cjd},WdWayDwqN:{RZyA4xOaV:undefined,variant:\"X7feh5rSU\",vvcOsJhDm:vvcOsJhDmxj3cjd}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(16+((componentViewport?.height||64)-32-32)/2)+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bfqp24-container\",layoutDependency:layoutDependency,layoutId:\"ijghC0yH_-container\",nodeId:\"ijghC0yH_\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationButton,{height:\"100%\",id:\"ijghC0yH_\",jqbfMUXWy:getLocalizedValue(\"v6\",activeLocale)??\"Login\",layoutId:\"ijghC0yH_\",RZyA4xOaV:\"https://thirdweb.com/login\",variant:\"S_DXrcQST\",width:\"100%\"})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fyykal\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"VCcFchqEv\",style:{opacity:1},variants:{QCI_O7SoP:{opacity:0},WdWayDwqN:{opacity:0}},children:[isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mggh6b\",layoutDependency:layoutDependency,layoutId:\"E_JxSxizS\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fn0dooGuw:{height:40,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+64+0+0+8+0},QCI_O7SoP:{height:40,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+64+0+0+8+0},WdWayDwqN:{height:40,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+64+0+0+8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pbnsam-container\",layoutDependency:layoutDependency,layoutId:\"W7jBWWMqI-container\",nodeId:\"W7jBWWMqI\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(ButtonsButton,{BnmH_z3oH:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\">   <path d=\"M4.5 9L7.5 6L4.5 3\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',GxuiU3lbe:1.25,height:\"100%\",I4KuTahqi:getLocalizedValue(\"v7\",activeLocale)??\"Log In\",id:\"W7jBWWMqI\",layoutId:\"W7jBWWMqI\",q8NV5vffb:\"center\",RSajvyivS:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",style:{height:\"100%\",width:\"100%\"},variant:\"iisuRppiE\",width:\"100%\",...addPropertyOverrides({fn0dooGuw:{BL_hxI2b_:\"https://thirdweb.com/login\"},QCI_O7SoP:{BL_hxI2b_:\"https://thirdweb.com/login\"},WdWayDwqN:{BL_hxI2b_:\"https://thirdweb.com/login\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gdNhKioSl\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fn0dooGuw:{height:40,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+64+0+0+8+52},QCI_O7SoP:{height:40,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+64+0+0+8+52},WdWayDwqN:{height:40,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+64+0+0+8+52}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16cawmc-container\",layoutDependency:layoutDependency,layoutId:\"Obnvji547-container\",nodeId:\"Obnvji547\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(ButtonsButton,{BnmH_z3oH:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\">   <path d=\"M4.5 9L7.5 6L4.5 3\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',GxuiU3lbe:1.25,height:\"100%\",I4KuTahqi:getLocalizedValue(\"v8\",activeLocale)??\"Documentation\",id:\"Obnvji547\",layoutId:\"Obnvji547\",q8NV5vffb:\"center\",RSajvyivS:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",style:{height:\"100%\",width:\"100%\"},variant:\"Sk5Gu91Ro\",width:\"100%\",...addPropertyOverrides({fn0dooGuw:{BL_hxI2b_:resolvedLinks2[0],I4KuTahqi:getLocalizedValue(\"v5\",activeLocale)??\"Contact Us\",variant:\"Q0eUCA0Dy\"},QCI_O7SoP:{BL_hxI2b_:\"https://thirdweb.com/contact-us\",I4KuTahqi:getLocalizedValue(\"v5\",activeLocale)??\"Contact Us\",variant:\"Q0eUCA0Dy\"},WdWayDwqN:{BL_hxI2b_:\"https://thirdweb.com/contact-us\",I4KuTahqi:getLocalizedValue(\"v5\",activeLocale)??\"Contact Us\",variant:\"Q0eUCA0Dy\"}},baseVariant,gestureVariant)})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1li406o\",layoutDependency:layoutDependency,layoutId:\"AIoZg6wb1\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fn0dooGuw:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+0},QCI_O7SoP:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+0},WdWayDwqN:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i5dz08-container\",layoutDependency:layoutDependency,layoutId:\"XFIqCOOxF-container\",nodeId:\"XFIqCOOxF\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"XFIqCOOxF\",layoutId:\"XFIqCOOxF\",style:{width:\"100%\"},variant:\"Nn65t9o0Z\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fn0dooGuw:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+342},QCI_O7SoP:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+342},WdWayDwqN:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+342}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4p2nz1-container\",layoutDependency:layoutDependency,layoutId:\"zuOMmITDu-container\",nodeId:\"zuOMmITDu\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"zuOMmITDu\",layoutId:\"zuOMmITDu\",style:{width:\"100%\"},variant:\"R2o9ed1nb\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fn0dooGuw:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+732},QCI_O7SoP:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+732},WdWayDwqN:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+732}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1j7zu7f-container\",layoutDependency:layoutDependency,layoutId:\"REc0Ed58o-container\",nodeId:\"REc0Ed58o\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"REc0Ed58o\",layoutId:\"REc0Ed58o\",style:{width:\"100%\"},variant:\"bH2emI93a\",width:\"100%\",...addPropertyOverrides({fn0dooGuw:{variant:\"e3yhbEX_d\"},QCI_O7SoP:{variant:\"e3yhbEX_d\"},WdWayDwqN:{variant:\"e3yhbEX_d\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fn0dooGuw:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+1074},QCI_O7SoP:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+1074},WdWayDwqN:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+1074}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-abpecp-container\",layoutDependency:layoutDependency,layoutId:\"arSBK83L2-container\",nodeId:\"arSBK83L2\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"arSBK83L2\",layoutId:\"arSBK83L2\",style:{width:\"100%\"},variant:\"bH2emI93a\",width:\"100%\",...addPropertyOverrides({fn0dooGuw:{variant:\"jqryaPGGn\"},QCI_O7SoP:{variant:\"jqryaPGGn\"},WdWayDwqN:{variant:\"jqryaPGGn\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fn0dooGuw:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+1416},QCI_O7SoP:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+1416},WdWayDwqN:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+1416}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2cd5b9-container\",layoutDependency:layoutDependency,layoutId:\"XC7ZgnHQC-container\",nodeId:\"XC7ZgnHQC\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"XC7ZgnHQC\",layoutId:\"XC7ZgnHQC\",style:{width:\"100%\"},variant:\"bH2emI93a\",width:\"100%\",...addPropertyOverrides({fn0dooGuw:{variant:\"xzgIV8Sif\"},QCI_O7SoP:{variant:\"xzgIV8Sif\"},WdWayDwqN:{variant:\"xzgIV8Sif\"}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fn0dooGuw:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+1758}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-h4zajq-container\",layoutDependency:layoutDependency,layoutId:\"QM0XuBpA0-container\",nodeId:\"QM0XuBpA0\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"QM0XuBpA0\",layoutId:\"QM0XuBpA0\",style:{width:\"100%\"},variant:\"Atz5daY8g\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({WdWayDwqN:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+1758}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t371c4-container\",layoutDependency:layoutDependency,layoutId:\"crkfHzD4i-container\",nodeId:\"crkfHzD4i\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"crkfHzD4i\",layoutId:\"crkfHzD4i\",style:{width:\"100%\"},variant:\"Atz5daY8g\",width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({QCI_O7SoP:{height:342,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+64+0+116+0+1758}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1j1d92s-container\",layoutDependency:layoutDependency,layoutId:\"V043GCeo_-container\",nodeId:\"V043GCeo_\",rendersWithMotion:true,scopeId:\"TJtdcnIgW\",children:/*#__PURE__*/_jsx(NavigationDropdown,{height:\"100%\",id:\"V043GCeo_\",layoutId:\"V043GCeo_\",style:{width:\"100%\"},variant:\"Atz5daY8g\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"w0cXygaGi\",scopeId:\"TJtdcnIgW\",...addPropertyOverrides({fn0dooGuw:{href:{webPageId:\"tmdYNosQt\"},openInNewTab:false},QCI_O7SoP:{href:{webPageId:\"Rbg7IitJ5\"},openInNewTab:false},WdWayDwqN:{href:{webPageId:\"Rbg7IitJ5\"},openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1cgfxxx framer-15rzjc0\",layoutDependency:layoutDependency,layoutId:\"w0cXygaGi\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Resources\"})}),className:\"framer-4eyovi\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"r63VEsVPE\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fn0dooGuw:{children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Pricing\"})})},QCI_O7SoP:{children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Pricing\"})})},WdWayDwqN:{children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Pricing\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"Bjcfqi5V4\",scopeId:\"TJtdcnIgW\",...addPropertyOverrides({fn0dooGuw:{href:\"https://playground.thirdweb.com/connect/sign-in/button\",openInNewTab:false},QCI_O7SoP:{href:\"https://playground.thirdweb.com/connect/sign-in/button\",openInNewTab:false},WdWayDwqN:{href:\"https://playground.thirdweb.com/connect/sign-in/button\",openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-u9mwes framer-15rzjc0\",layoutDependency:layoutDependency,layoutId:\"Bjcfqi5V4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Showcase\"})}),className:\"framer-oseq8p\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"o7tz6QDzG\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fn0dooGuw:{children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Playground\"})})},QCI_O7SoP:{children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Playground\"})})},WdWayDwqN:{children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Playground\"})})}},baseVariant,gestureVariant)})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-u0ZdK.framer-15rzjc0, .framer-u0ZdK .framer-15rzjc0 { display: block; }\",\".framer-u0ZdK.framer-1yp46q5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 16px 24px 16px 24px; position: relative; width: 1200px; }\",\".framer-u0ZdK .framer-9h1io1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1392px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-u0ZdK .framer-11qg3cf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-u0ZdK .framer-1mwqq45-container { flex: none; height: 24px; position: relative; width: auto; }\",\".framer-u0ZdK .framer-1l4tp41 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-u0ZdK .framer-19epq6o-container, .framer-u0ZdK .framer-plq77r-container, .framer-u0ZdK .framer-x7jpg0-container, .framer-u0ZdK .framer-bhekl9-container, .framer-u0ZdK .framer-17d56h2-container, .framer-u0ZdK .framer-59mb3z-container, .framer-u0ZdK .framer-10v899f-container, .framer-u0ZdK .framer-2hijak-container, .framer-u0ZdK .framer-1mvdohm-container, .framer-u0ZdK .framer-1bfqp24-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-u0ZdK .framer-mlsoh1, .framer-u0ZdK .framer-10evax, .framer-u0ZdK .framer-1r539h9, .framer-u0ZdK .framer-5qxmit { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-u0ZdK .framer-mpv8nk-container, .framer-u0ZdK .framer-16jvv19-container { flex: none; height: auto; position: relative; width: 368px; }\",\".framer-u0ZdK .framer-w940av { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-u0ZdK .framer-nozyj3-container { flex: none; height: 32px; position: relative; width: auto; }\",\".framer-u0ZdK .framer-1fyykal { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-height: 200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-u0ZdK .framer-1mggh6b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; min-height: 92px; overflow: visible; padding: 8px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-u0ZdK .framer-pbnsam-container, .framer-u0ZdK .framer-16cawmc-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-u0ZdK .framer-1li406o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-u0ZdK .framer-i5dz08-container, .framer-u0ZdK .framer-4p2nz1-container, .framer-u0ZdK .framer-1j7zu7f-container, .framer-u0ZdK .framer-abpecp-container, .framer-u0ZdK .framer-2cd5b9-container, .framer-u0ZdK .framer-h4zajq-container, .framer-u0ZdK .framer-t371c4-container, .framer-u0ZdK .framer-1j1d92s-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-u0ZdK .framer-1cgfxxx, .framer-u0ZdK .framer-u9mwes { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: 100%; }\",\".framer-u0ZdK .framer-4eyovi, .framer-u0ZdK .framer-oseq8p { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-u0ZdK.framer-v-1jo37vb.framer-1yp46q5 { flex-direction: column; justify-content: flex-start; max-height: calc(var(--framer-viewport-height, 100vh) * 1); min-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; overscroll-behavior: contain; padding: 0px 8px 120px 8px; width: 390px; }\",\".framer-u0ZdK.framer-v-1jo37vb .framer-9h1io1, .framer-u0ZdK.framer-v-96py1o .framer-9h1io1, .framer-u0ZdK.framer-v-1hc49i2 .framer-9h1io1 { flex: none; height: 64px; padding: 0px 12px 0px 12px; width: 100%; }\",\".framer-u0ZdK.framer-v-1jo37vb .framer-1fyykal { flex: none; min-height: unset; overflow: hidden; width: 100%; }\",\".framer-u0ZdK.framer-v-1jo37vb .framer-1mggh6b { min-height: unset; overflow: hidden; }\",\".framer-u0ZdK.framer-v-1jo37vb .framer-1li406o { overflow: hidden; }\",\".framer-u0ZdK.framer-v-1jo37vb .framer-i5dz08-container, .framer-u0ZdK.framer-v-96py1o .framer-i5dz08-container, .framer-u0ZdK.framer-v-1hc49i2 .framer-i5dz08-container { order: 0; }\",\".framer-u0ZdK.framer-v-1jo37vb .framer-4p2nz1-container, .framer-u0ZdK.framer-v-96py1o .framer-4p2nz1-container, .framer-u0ZdK.framer-v-1hc49i2 .framer-4p2nz1-container { order: 1; }\",\".framer-u0ZdK.framer-v-1jo37vb .framer-1j7zu7f-container, .framer-u0ZdK.framer-v-96py1o .framer-1j7zu7f-container, .framer-u0ZdK.framer-v-1hc49i2 .framer-1j7zu7f-container { order: 3; }\",\".framer-u0ZdK.framer-v-1jo37vb .framer-abpecp-container, .framer-u0ZdK.framer-v-96py1o .framer-abpecp-container, .framer-u0ZdK.framer-v-1hc49i2 .framer-abpecp-container { order: 4; }\",\".framer-u0ZdK.framer-v-1jo37vb .framer-2cd5b9-container, .framer-u0ZdK.framer-v-96py1o .framer-2cd5b9-container, .framer-u0ZdK.framer-v-1hc49i2 .framer-2cd5b9-container { order: 5; }\",\".framer-u0ZdK.framer-v-1jo37vb .framer-h4zajq-container { order: 7; }\",\".framer-u0ZdK.framer-v-1jo37vb .framer-1cgfxxx, .framer-u0ZdK.framer-v-96py1o .framer-1cgfxxx, .framer-u0ZdK.framer-v-1hc49i2 .framer-1cgfxxx { order: 2; text-decoration: none; }\",\".framer-u0ZdK.framer-v-1jo37vb .framer-u9mwes, .framer-u0ZdK.framer-v-96py1o .framer-u9mwes, .framer-u0ZdK.framer-v-1hc49i2 .framer-u9mwes { order: 9; text-decoration: none; }\",\".framer-u0ZdK.framer-v-96py1o.framer-1yp46q5, .framer-u0ZdK.framer-v-1hc49i2.framer-1yp46q5 { flex-direction: column; height: 64px; justify-content: flex-start; overflow: hidden; padding: 0px 8px 0px 8px; width: 390px; }\",\".framer-u0ZdK.framer-v-96py1o .framer-1fyykal, .framer-u0ZdK.framer-v-1hc49i2 .framer-1fyykal { flex: none; min-height: unset; width: 100%; }\",\".framer-u0ZdK.framer-v-96py1o .framer-1mggh6b, .framer-u0ZdK.framer-v-1hc49i2 .framer-1mggh6b { min-height: unset; }\",\".framer-u0ZdK.framer-v-96py1o .framer-1j1d92s-container { order: 8; }\",\".framer-u0ZdK.framer-v-1hc49i2 .framer-t371c4-container { order: 6; }\",'.framer-u0ZdK[data-border=\"true\"]::after, .framer-u0ZdK [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fn0dooGuw\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",\"100vh\"]},\"QCI_O7SoP\":{\"layout\":[\"fixed\",\"fixed\"]},\"LGTSbm3vf\":{\"layout\":[\"fixed\",\"auto\"]},\"WdWayDwqN\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerTJtdcnIgW=withCSS(Component,css,\"framer-u0ZdK\");export default FramerTJtdcnIgW;FramerTJtdcnIgW.displayName=\"Navigation / Navigation\";FramerTJtdcnIgW.defaultProps={height:64,width:1200};addPropertyControls(FramerTJtdcnIgW,{variant:{options:[\"nmOK9Q1QZ\",\"fn0dooGuw\",\"QCI_O7SoP\",\"LGTSbm3vf\",\"WdWayDwqN\"],optionTitles:[\"Desktop\",\"Phone Open\",\"Phone\",\"Desktop Scrolling\",\"Phone Scrolling\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerTJtdcnIgW,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...NavigationThirdwebLogoFonts,...NavigationNavigationItemFonts,...NavigationDropdownFonts,...LocaleSelectorFonts,...NavigationButtonFonts,...ButtonsButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTJtdcnIgW\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fn0dooGuw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",\\\"100vh\\\"]},\\\"QCI_O7SoP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LGTSbm3vf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WdWayDwqN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"64\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "p", "addPropertyControls", "ControlType", "SVG_default", "SVGFonts", "getFonts", "SVG_default", "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", "click", "distribute", "height", "icon", "iconColor", "id", "link", "stroke", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "I4KuTahqi", "BL_hxI2b_", "q8NV5vffb", "BnmH_z3oH", "RSajvyivS", "GxuiU3lbe", "r3Wpubva0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1mugfga", "args", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "css", "FramereMAX511LU", "withCSS", "eMAX511LU_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "getBorderStyle", "e", "t", "o", "d", "r", "i", "l", "h", "b", "borderControls", "ControlType", "getFocusStyle", "color", "width", "style", "offset", "result", "focusControls", "ControlType", "getHoverStyle", "fillColor", "textColor", "borderColor", "hoverControls", "ControlType", "getPaddingStyle", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "paddingControls", "ControlType", "getRadiusStyle", "radius", "radiusPerCorner", "radiusTopLeft", "radiusTopRight", "radiusBottomRight", "radiusBottomLeft", "result", "radiusControls", "ControlType", "className", "IconType", "Icon", "type", "color", "image", "size", "p", "CaretType", "Caret", "LocaleSelector", "withCSS", "font", "fillColor", "textColor", "icon", "caret", "title", "gap", "border", "hover", "focus", "style", "props", "id", "ae", "activeLocale", "locales", "setLocale", "useLocaleInfo", "localesForCurrentRoute", "useLocalesForCurrentRoute", "activeLocaleId", "lastActiveLocaleId", "setLastActiveLocaleId", "ye", "selectedLocaleId", "setSelectedLocaleId", "selectedLocale", "locale", "handleChange", "event", "localeId", "u", "className", "getPaddingStyle", "getRadiusStyle", "getBorderStyle", "getHoverStyle", "getFocusStyle", "addPropertyControls", "ControlType", "paddingControls", "radiusControls", "borderControls", "hoverControls", "focusControls", "LocaleSelector_default", "withToggleScroll", "Component", "props", "bodyElement", "pe", "ue", "_document", "p", "TJtdcnIgW_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "p", "x", "motion", "v10", "v11", "v12", "__FramerMetadata__", "valuesByLocaleId", "TJtdcnIgW_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "IconTitleButton", "props", "title", "subtitle", "iconSvg", "link", "borderRadius", "borderColor", "iconSize", "iconGap", "textGap", "paddingLeft", "paddingRight", "paddingTop", "paddingBottom", "titleColor", "subtitleColor", "backgroundColor", "trackingEvent", "trackingProperties", "onClick", "rest", "propsRef", "pe", "ue", "wrapperStyle", "cursorStyle", "buttonStyle", "iconContainerStyle", "textContainerStyle", "titleStyle", "isHovered", "setIsHovered", "ye", "subtitleStyle", "trackClick", "window", "currentProps", "eventName", "properties", "currentTrackingProps", "e", "error", "u", "l", "p", "addPropertyControls", "ControlType", "FJcN2qQXX_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v18", "v19", "v2", "v20", "v21", "v22", "v23", "v24", "v25", "v26", "v27", "v28", "v29", "v3", "v30", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v18", "v19", "v20", "v21", "v22", "v23", "v24", "v25", "v26", "v27", "v28", "v29", "v30", "__FramerMetadata__", "valuesByLocaleId", "FJcN2qQXX_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "image", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "x7ezT7rx8", "f_OWzkWPM", "DZKmBZ71m", "sEqIccMsb", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerbYhiwO7QJ", "withCSS", "bYhiwO7QJ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "IconTitleButtonFonts", "getFonts", "IconTitleButton", "NavigationNavigationDropdownItemFonts", "bYhiwO7QJ_default", "SVGFonts", "SVG_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1geafuf", "args", "onTap13ae4zz", "onTap1do3b0p", "onTapdxuk8t", "onTap7z0szf", "onTap1asgkxe", "onTapzhqlim", "onTap10o7lfq", "onTapd1asq2", "onTap15te8ni", "onTapeylbgt", "onTap1gcbvu9", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "getLocalizedValue", "css", "FramerFJcN2qQXX", "withCSS", "FJcN2qQXX_default", "addPropertyControls", "ControlType", "addFonts", "SVGFonts", "getFonts", "SVG_default", "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", "hover", "id", "link", "name1", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "DypPJCEq2", "zhjSmsf4E", "ba8EEYMO8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1cl9sml", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerOd8026J91", "withCSS", "Od8026J91_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SVGFonts", "getFonts", "SVG_default", "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", "click2", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "jqbfMUXWy", "RZyA4xOaV", "vvcOsJhDm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapfq91xh", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramersetpHQJqg", "withCSS", "setpHQJqg_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "SVG", "css", "FramerxAomRXpzG", "withCSS", "xAomRXpzG_default", "addFonts", "NavigationThirdwebLogoFonts", "getFonts", "xAomRXpzG_default", "NavigationNavigationItemFonts", "Od8026J91_default", "NavigationDropdownFonts", "FJcN2qQXX_default", "MotionDivWithFX", "withFX", "motion", "LocaleSelectorFonts", "LocaleSelector_default", "NavigationButtonFonts", "setpHQJqg_default", "MotionDivWithToggleScrollw940av", "withCodeBoundaryForOverrides", "withToggleScroll", "ButtonsButtonFonts", "eMAX511LU_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "ba8EEYMO8txyyif", "overlay", "loadMore", "args", "ba8EEYMO81itwqw2", "vvcOsJhDm1xmze42", "vvcOsJhDmxj3cjd", "scopingClassNames", "cx", "isDisplayed", "ref1", "ref2", "ref3", "ref4", "router", "useRouter", "ref5", "ref6", "ref7", "ref8", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "l", "getLocalizedValue", "AnimatePresence", "Floating", "overlay1", "ResolveLinks", "resolvedLinks", "overlay2", "overlay3", "resolvedLinks1", "resolvedLinks2", "Link", "RichText2", "css", "FramerTJtdcnIgW", "withCSS", "TJtdcnIgW_default", "addPropertyControls", "ControlType", "addFonts"]
}
