{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js", "ssg:https://framerusercontent.com/modules/ZOX7W4d3iPxja3yXIGiZ/PzKfWHyaScYEAsNLyWYy/VO65nBEGa.js", "ssg:https://framerusercontent.com/modules/FpgzUZS04dqGAnVAmWYr/dYlecYA01s8Umz4buitH/lENuf5GkE.js", "ssg:https://framerusercontent.com/modules/BjYqjsjk2ghIFVrU4LY3/zw0ieKdRIVzCyTQZUvBc/egprtq6BI.js", "ssg:https://framerusercontent.com/modules/QItCf7xP9n7kg2HlQrMJ/oaNUtxqOb5Vi3f5cVDRa/yO5nGvXAw.js", "ssg:https://framerusercontent.com/modules/EzyaHFaGd4hdNj5xWEEA/TWNk44bCGebFEcQMXOy5/uI5BhZEO0.js", "ssg:https://framerusercontent.com/modules/mfrv8kTPiFI6ZBMpIqef/oHJAOrgjlp2rhfFiy8Gu/odm4RXn9K.js", "ssg:https://framerusercontent.com/modules/Yapdm3dVRzIvV7w8AWz9/jMourjXfXT217JeWc8mJ/jwTla8JeI.js", "ssg:https://framerusercontent.com/modules/H5ZDrM1Dw2fHWTWpq0oh/RBMooWZi2DhJMEXwZLNs/vImBt8OQr.js", "ssg:https://framerusercontent.com/modules/f8zM4y5zfvYVJXalO3TY/t9I6ApNCmS6cTkzoKOom/LDaoOCIMD.js", "ssg:https://framerusercontent.com/modules/vtijICyatlBRIcHat958/I7uqYF6mKn3kBwQAqMqp/wbVOZMTyl.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\")){const circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){const updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{replacements.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\"};const accessibilityProps={role:\"img\",...props.title&&{\"aria-label\":props.title},...props.description&&{\"aria-description\":props.description}};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle,...accessibilityProps});}SVG.displayName=\"SVG\";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\",title:\"\",description:\"\"};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},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=\"')},title:{type:ControlType.String,title:\"Title\",defaultValue:\"\",placeholder:\"Icon name...\"},description:{type:ControlType.String,title:\"Description\",defaultValue:\"\",placeholder:\"Icon purpose...\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG_Prod.map", "// Generated by Framer (eb93fa7)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={I9UB8oEDy:{hover:true},OE9VvM7KH:{hover:true}};const cycleOrder=[\"I9UB8oEDy\",\"OE9VvM7KH\"];const serializationHash=\"framer-uEEcS\";const variantClassNames={I9UB8oEDy:\"framer-v-1v1r2cg\",OE9VvM7KH:\"framer-v-7pj8gh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:.1,duration:.4,ease:[.44,0,.56,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={\"Large - no icon\":\"OE9VvM7KH\",\"Small - no icon\":\"I9UB8oEDy\"};const getProps=({height,hoverShadow,id,primaryBTNText,primBTNLink,width,...props})=>{return{...props,kK_f9VnJV:primBTNLink??props.kK_f9VnJV,variant:humanReadableVariantMap[props.variant]??props.variant??\"I9UB8oEDy\",yBGycXNor:primaryBTNText??props.yBGycXNor??\"Start Trading\",ZQsxrosIH:hoverShadow??props.ZQsxrosIH??\"0px 0.48290122862090357px 1.641864177311072px 0px rgba(162, 219, 93, 0.05), 0px 4px 13.6px 0px rgba(162, 219, 93, 0.4)\"};};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,yBGycXNor,ZQsxrosIH,kK_f9VnJV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I9UB8oEDy\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({OE9VvM7KH:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:kK_f9VnJV,motionChild:true,nodeId:\"I9UB8oEDy\",openInNewTab:true,scopeId:\"VO65nBEGa\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1v1r2cg\",className,classNames)} framer-ecfn0l`,\"data-framer-name\":\"Small - no icon\",layoutDependency:layoutDependency,layoutId:\"I9UB8oEDy\",ref:refBinding,style:{\"--14aams1\":ZQsxrosIH,backgroundColor:\"var(--token-143b1d17-6272-4c86-a38c-42bfd17dd2fa, rgb(162, 219, 92))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.48290122862090357px 0.48290122862090357px 0px rgba(162, 219, 92, 0.01), 0px 4px 4px 0px rgba(162, 219, 92, 0.1)\",...style},variants:{\"I9UB8oEDy-hover\":{backgroundColor:\"rgb(185, 250, 105)\",boxShadow:\"var(--14aams1)\"},\"OE9VvM7KH-hover\":{backgroundColor:\"rgb(185, 250, 105)\",boxShadow:\"var(--14aams1)\"}},...addPropertyOverrides({\"I9UB8oEDy-hover\":{\"data-framer-name\":undefined},\"OE9VvM7KH-hover\":{\"data-framer-name\":undefined},OE9VvM7KH:{\"data-framer-name\":\"Large - no icon\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af1757ba-6bc1-4237-a42f-cf2e35a24dd9, rgb(0, 0, 0)))\"},children:\"Start Trading\"})}),className:\"framer-1ablcvq\",fonts:[\"GF;Geist-600\"],layoutDependency:layoutDependency,layoutId:\"UgiqIBtiG\",style:{\"--extracted-r6o4lv\":\"var(--token-af1757ba-6bc1-4237-a42f-cf2e35a24dd9, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:yBGycXNor,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({OE9VvM7KH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af1757ba-6bc1-4237-a42f-cf2e35a24dd9, rgb(0, 0, 0)))\"},children:\"Start Trading\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uEEcS.framer-ecfn0l, .framer-uEEcS .framer-ecfn0l { display: block; }\",\".framer-uEEcS.framer-1v1r2cg { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; text-decoration: none; width: min-content; }\",\".framer-uEEcS .framer-1ablcvq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-uEEcS.framer-v-7pj8gh.framer-1v1r2cg { padding: 12px 24px 12px 24px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 33\n * @framerIntrinsicWidth 99\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"OE9VvM7KH\":{\"layout\":[\"auto\",\"auto\"]},\"LRfqqnlZ9\":{\"layout\":[\"auto\",\"auto\"]},\"f4zwQQb9_\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"yBGycXNor\":\"primaryBTNText\",\"ZQsxrosIH\":\"hoverShadow\",\"kK_f9VnJV\":\"primBTNLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerVO65nBEGa=withCSS(Component,css,\"framer-uEEcS\");export default FramerVO65nBEGa;FramerVO65nBEGa.displayName=\"Primary Btn\";FramerVO65nBEGa.defaultProps={height:33,width:99};addPropertyControls(FramerVO65nBEGa,{variant:{options:[\"I9UB8oEDy\",\"OE9VvM7KH\"],optionTitles:[\"Small - no icon\",\"Large - no icon\"],title:\"Variant\",type:ControlType.Enum},yBGycXNor:{defaultValue:\"Start Trading\",displayTextArea:false,title:\"Primary BTN Text\",type:ControlType.String},ZQsxrosIH:{defaultValue:[{blur:2,color:\"rgba(162, 219, 93, 0.4)\",diffusion:1,focus:.2,inset:false,spread:0,type:\"realistic\",x:0,y:4}],title:\"Hover - Shadow\",type:ControlType.BoxShadow},kK_f9VnJV:{title:\"Prim BTN Link\",type:ControlType.Link}});addFonts(FramerVO65nBEGa,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v3/gyBhhwUxId8gMGYQMKR3pzfaWI_RQuQ4mJPby1QNtA.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVO65nBEGa\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"99\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"33\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"OE9VvM7KH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LRfqqnlZ9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"f4zwQQb9_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"yBGycXNor\\\":\\\"primaryBTNText\\\",\\\"ZQsxrosIH\\\":\\\"hoverShadow\\\",\\\"kK_f9VnJV\\\":\\\"primBTNLink\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VO65nBEGa.map", "// Generated by Framer (55cf326)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-q4oty .framer-styles-preset-qjs3f3:not(.rich-text-wrapper), .framer-q4oty .framer-styles-preset-qjs3f3.rich-text-wrapper a { --framer-link-current-text-color: var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, #a0a0a0); --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-1aaac31f-fd2e-46de-a24d-acab3df6f41d, #ffffff); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, #a0a0a0); --framer-link-text-decoration: none; }\"];export const className=\"framer-q4oty\";\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 (eb93fa7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,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/FpgzUZS04dqGAnVAmWYr/dYlecYA01s8Umz4buitH/lENuf5GkE.js\";const cycleOrder=[\"wgf5nalFr\",\"wVtfFbdoH\"];const serializationHash=\"framer-Jbgop\";const variantClassNames={wgf5nalFr:\"framer-v-3yde6\",wVtfFbdoH:\"framer-v-1uhd5jq\"};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 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:\"wgf5nalFr\",Mobile:\"wVtfFbdoH\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"wgf5nalFr\"};};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:\"wgf5nalFr\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-3yde6\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"wgf5nalFr\",ref:refBinding,style:{...style},...addPropertyOverrides({wVtfFbdoH:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qazos2\",layoutDependency:layoutDependency,layoutId:\"jhprqW9WM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xsvo9p\",layoutDependency:layoutDependency,layoutId:\"TSYNFBRiQ\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DkBd2jjlL\"},motionChild:true,nodeId:\"nXRakCiJv\",openInNewTab:false,scopeId:\"egprtq6BI\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-kkb6l5 framer-15odhwu\",\"data-framer-name\":\"Full Logo\",layoutDependency:layoutDependency,layoutId:\"nXRakCiJv\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xwlrc9\",\"data-framer-name\":\"Logo\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:70,layoutDependency:layoutDependency,layoutId:\"nXRakCiJvc2Ih3_SH1\",svg:'<svg width=\"70\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#a)\"><path d=\"M25.498 11.607C23.067 4.518 9.937 4.003 6.28 4c-.364 0-.527.43-.27.687l18.21 18.158a.401.401 0 0 0 .677-.175c.51-1.911 1.815-7.522.601-11.062Z\" fill=\"#ACE075\"/></g><g filter=\"url(#b)\"><path d=\"M17.38 18.992c-1.922.566-7.867 2.048-10.991-.193C2.28 15.853 2.653 8.193 1.31 2.726c-.11-.445.531-.829.848-.498l15.39 16.101c.21.22.124.577-.168.663Z\" fill=\"#3EB751\"/></g><path d=\"M32.971 17V7.06h3.977c2.38 0 3.822 1.232 3.822 3.248s-1.443 3.262-3.823 3.262H35.1V17h-2.127Zm2.129-5.222h1.721c1.12 0 1.765-.504 1.765-1.47s-.645-1.456-1.764-1.456h-1.723v2.926ZM42.103 17V7.06h6.916v1.792h-4.788v2.282h4.62v1.764h-4.62v2.31h4.9V17h-7.028Zm7.94 0 3.583-9.94h2.52L59.731 17H57.52l-.728-2.114H52.97L52.241 17h-2.198Zm3.527-3.864h2.632L54.887 9.3l-1.316 3.836ZM60.67 17V7.06h4.354c2.184 0 3.57 1.162 3.57 2.968 0 1.204-.714 2.086-1.75 2.408.994.14 1.512.7 1.596 1.708L68.693 17h-2.17l-.182-2.52c-.056-.756-.42-1.12-1.428-1.12h-2.114V17H60.67Zm2.128-5.418h1.988c1.022 0 1.624-.504 1.624-1.372 0-.882-.588-1.358-1.694-1.358h-1.918v2.73Z\" fill=\"#fff\"/><defs><filter id=\"a\" x=\"5.885\" y=\"3.999\" width=\"20.115\" height=\"19.21\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\".243\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0.302394 0 0 0 0 0.470833 0 0 0 0 0.16283 0 0 0 1 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_777_1286\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_777_1286\" result=\"shape\"/></filter><filter id=\"b\" x=\"1.297\" y=\"2.104\" width=\"16.367\" height=\"18.137\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\".243\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0.053125 0 0 0 0 0.354167 0 0 0 0 0.100076 0 0 0 1 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_777_1286\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_777_1286\" result=\"shape\"/></filter></defs></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9c839b49-a03a-45ea-b9c1-f75410b14436, rgb(113, 113, 113)))\"},children:\"The Home of Pair Trading.\"})}),className:\"framer-esep7l\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"wUANulcq2\",style:{\"--extracted-r6o4lv\":\"var(--token-9c839b49-a03a-45ea-b9c1-f75410b14436, rgb(113, 113, 113))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14odnja\",layoutDependency:layoutDependency,layoutId:\"Wlt6fbH_a\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z22yrb\",layoutDependency:layoutDependency,layoutId:\"WlGYv41Vt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://pear.garden/docs/termsOfUse.pdf\",motionChild:true,nodeId:\"eO9oe5_PT\",openInNewTab:true,scopeId:\"egprtq6BI\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Terms Of Use\"})})})}),className:\"framer-637j5x\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"eO9oe5_PT\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://pear.garden/docs/privacyPolicy.pdf\",motionChild:true,nodeId:\"kgatYpOES\",openInNewTab:true,scopeId:\"egprtq6BI\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Privacy Policy\"})})})}),className:\"framer-1oa4vnh\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"kgatYpOES\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://pear.garden/docs/disclaimer.pdf\",motionChild:true,nodeId:\"teFLAnKO4\",openInNewTab:false,scopeId:\"egprtq6BI\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Disclaimer\"})})})}),className:\"framer-1ng48j3\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"teFLAnKO4\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jg8y6j\",layoutDependency:layoutDependency,layoutId:\"DhQBElxIc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.pearprotocol.io/\",motionChild:true,nodeId:\"gt1GA1VAS\",openInNewTab:false,scopeId:\"egprtq6BI\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Docs\"})})})}),className:\"framer-12zo8lo\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"gt1GA1VAS\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DkBd2jjlL\"},motionChild:true,nodeId:\"UcLaqvRCV\",openInNewTab:false,scopeId:\"egprtq6BI\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Pear API\"})})})}),className:\"framer-11py0w2\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"UcLaqvRCV\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.coingecko.com/en/coins/pear-protocol\",motionChild:true,nodeId:\"TGmI6_iOy\",openInNewTab:false,scopeId:\"egprtq6BI\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Pear Token\"})})})}),className:\"framer-1nfsoqr\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"TGmI6_iOy\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://dune.com/pear_protocol/pear-protocol\",motionChild:true,nodeId:\"VuerWz1Ab\",openInNewTab:false,scopeId:\"egprtq6BI\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Stats\"})})})}),className:\"framer-yuy8q5\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"VuerWz1Ab\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16m8rmx\",layoutDependency:layoutDependency,layoutId:\"eRkAcUs3_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vzUsG9Hmr\"},motionChild:true,nodeId:\"xwXZTRt4r\",openInNewTab:false,scopeId:\"egprtq6BI\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Education\"})})})}),className:\"framer-bgh4z\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"xwXZTRt4r\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DkBd2jjlL\"},motionChild:true,nodeId:\"AXAt_sTiy\",openInNewTab:false,scopeId:\"egprtq6BI\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Agent Pear\"})})})}),className:\"framer-13zqiun\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"AXAt_sTiy\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":d1JOL5khp\",webPageId:\"DkBd2jjlL\"},motionChild:true,nodeId:\"CcFDUZP0E\",openInNewTab:false,scopeId:\"egprtq6BI\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"FAQ\"})})})}),className:\"framer-3uttcu\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"CcFDUZP0E\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DkBd2jjlL\"},motionChild:true,nodeId:\"aMr3oP4oJ\",openInNewTab:false,scopeId:\"egprtq6BI\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Brand Assets\"})})})}),className:\"framer-l65qyz\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"aMr3oP4oJ\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10be6gl\",layoutDependency:layoutDependency,layoutId:\"E6_MI077k\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/pear_protocol\",motionChild:true,nodeId:\"A2Tu4Nbrg\",openInNewTab:true,scopeId:\"egprtq6BI\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Twitter (x)\"})})})}),className:\"framer-108dhen\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"A2Tu4Nbrg\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://discord.gg/JqMDvg7c\",motionChild:true,nodeId:\"p94N5_92M\",openInNewTab:true,scopeId:\"egprtq6BI\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Discord\"})})})}),className:\"framer-1hwlfqa\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"p94N5_92M\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://snapshot.box/#/s:pearprotocol.eth\",motionChild:true,nodeId:\"odPQZ3Rgk\",openInNewTab:false,scopeId:\"egprtq6BI\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Snapshot\"})})})}),className:\"framer-1pt75eb\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"odPQZ3Rgk\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://medium.com/@pear_protocol\",motionChild:true,nodeId:\"xeVYsOsLD\",openInNewTab:false,scopeId:\"egprtq6BI\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Blog\"})})})}),className:\"framer-1nx48je\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"xeVYsOsLD\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vxtw7a\",\"data-framer-name\":\"Border\",layoutDependency:layoutDependency,layoutId:\"u3nU7iYV7\",style:{backgroundColor:\"var(--token-eaa06c67-6ca7-42d9-90c7-caa251e277ee, rgb(34, 40, 34))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zao0mu\",layoutDependency:layoutDependency,layoutId:\"MuSRrN6nE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mla0vt\",layoutDependency:layoutDependency,layoutId:\"yVsCiCJBd\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vtf0wb\",layoutDependency:layoutDependency,layoutId:\"XgWriJySa\",style:{backgroundColor:\"rgba(162, 219, 92, 0.1)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7x4682\",layoutDependency:layoutDependency,layoutId:\"vszSfTPYt\",style:{backgroundColor:\"var(--token-e684dc32-9727-4116-bf33-2cd88b1e7049, rgb(162, 219, 92))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e684dc32-9727-4116-bf33-2cd88b1e7049, rgb(162, 219, 92)))\"},children:\"All systems operational\"})}),className:\"framer-u69ax4\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"bsvpMbbbM\",style:{\"--extracted-r6o4lv\":\"var(--token-e684dc32-9727-4116-bf33-2cd88b1e7049, rgb(162, 219, 92))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9c839b49-a03a-45ea-b9c1-f75410b14436, rgb(113, 113, 113)))\"},children:\"\\xa9 2025 Pear Protocol. All rights reserved.\"})}),className:\"framer-wiw61z\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"PRryVhOGm\",style:{\"--extracted-r6o4lv\":\"var(--token-9c839b49-a03a-45ea-b9c1-f75410b14436, rgb(113, 113, 113))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Jbgop.framer-15odhwu, .framer-Jbgop .framer-15odhwu { display: block; }\",\".framer-Jbgop.framer-3yde6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1180px; }\",\".framer-Jbgop .framer-qazos2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Jbgop .framer-1xsvo9p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Jbgop .framer-kkb6l5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Jbgop .framer-xwlrc9 { aspect-ratio: 2.9166666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); position: relative; width: 86px; }\",\".framer-Jbgop .framer-esep7l, .framer-Jbgop .framer-637j5x, .framer-Jbgop .framer-1oa4vnh, .framer-Jbgop .framer-1ng48j3, .framer-Jbgop .framer-12zo8lo, .framer-Jbgop .framer-11py0w2, .framer-Jbgop .framer-1nfsoqr, .framer-Jbgop .framer-yuy8q5, .framer-Jbgop .framer-bgh4z, .framer-Jbgop .framer-13zqiun, .framer-Jbgop .framer-3uttcu, .framer-Jbgop .framer-l65qyz, .framer-Jbgop .framer-108dhen, .framer-Jbgop .framer-1hwlfqa, .framer-Jbgop .framer-1pt75eb, .framer-Jbgop .framer-1nx48je, .framer-Jbgop .framer-u69ax4, .framer-Jbgop .framer-wiw61z { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Jbgop .framer-14odnja { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Jbgop .framer-z22yrb, .framer-Jbgop .framer-1jg8y6j, .framer-Jbgop .framer-16m8rmx, .framer-Jbgop .framer-10be6gl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Jbgop .framer-vxtw7a { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-Jbgop .framer-zao0mu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Jbgop .framer-1mla0vt { 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: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Jbgop .framer-1vtf0wb { 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: hidden; padding: 4px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jbgop .framer-7x4682 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 10px); overflow: hidden; position: relative; width: 10px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jbgop.framer-v-1uhd5jq.framer-3yde6 { width: 351px; }\",\".framer-Jbgop.framer-v-1uhd5jq .framer-qazos2, .framer-Jbgop.framer-v-1uhd5jq .framer-zao0mu { flex-direction: column; gap: 32px; justify-content: center; }\",\".framer-Jbgop.framer-v-1uhd5jq .framer-1xsvo9p { width: 100%; }\",\".framer-Jbgop.framer-v-1uhd5jq .framer-14odnja { align-content: unset; align-items: unset; display: grid; gap: 40px 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); width: 100%; }\",\".framer-Jbgop.framer-v-1uhd5jq .framer-z22yrb, .framer-Jbgop.framer-v-1uhd5jq .framer-1jg8y6j, .framer-Jbgop.framer-v-1uhd5jq .framer-16m8rmx, .framer-Jbgop.framer-v-1uhd5jq .framer-10be6gl { align-self: start; justify-self: start; width: 100%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 211\n * @framerIntrinsicWidth 1180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wVtfFbdoH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Frameregprtq6BI=withCSS(Component,css,\"framer-Jbgop\");export default Frameregprtq6BI;Frameregprtq6BI.displayName=\"Footer\";Frameregprtq6BI.defaultProps={height:211,width:1180};addPropertyControls(Frameregprtq6BI,{variant:{options:[\"wgf5nalFr\",\"wVtfFbdoH\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Frameregprtq6BI,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v3/gyBhhwUxId8gMGYQMKR3pzfaWI_RruM4mJPby1QNtA.woff2\",weight:\"500\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameregprtq6BI\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"211\",\"framerIntrinsicWidth\":\"1180\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wVtfFbdoH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./egprtq6BI.map", "// Generated by Framer (bab6da3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";const SVGFonts=getFonts(SVG);const enabledGestures={DrfYu4kx6:{hover:true},dTvLBrDhr:{hover:true},RZir2mVCU:{hover:true},tZgmhcFTn:{hover:true}};const cycleOrder=[\"dTvLBrDhr\",\"DrfYu4kx6\",\"tZgmhcFTn\",\"RZir2mVCU\"];const serializationHash=\"framer-EELWT\";const variantClassNames={DrfYu4kx6:\"framer-v-1m477g\",dTvLBrDhr:\"framer-v-13ckp57\",RZir2mVCU:\"framer-v-vklea2\",tZgmhcFTn:\"framer-v-r2m2ea\"};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 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={\"Large - Icon\":\"RZir2mVCU\",\"Large - no icon\":\"DrfYu4kx6\",\"Small - Icon\":\"tZgmhcFTn\",\"small - no icon\":\"dTvLBrDhr\"};const getProps=({arrowRightIcon,height,id,linkOutside,secBTNLink,secondaryBTNText,width,...props})=>{return{...props,a9SzVOCJ9:secBTNLink??props.a9SzVOCJ9,CqyVlPE77:arrowRightIcon??props.CqyVlPE77??'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M6.00003 4.5C6.00003 4.5 9.99999 7.44596 10 8.50003C10 9.55411 6 12.5 6 12.5\" stroke=\"#A2DB5C\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',dYE4M6nCY:linkOutside??props.dYE4M6nCY??'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M5.55012 1.5C3.72528 1.50329 2.76971 1.54809 2.15903 2.15877C1.5 2.8178 1.5 3.87849 1.5 5.99987C1.5 8.12125 1.5 9.18194 2.15903 9.84097C2.81806 10.5 3.87875 10.5 6.00013 10.5C8.12151 10.5 9.1822 10.5 9.84123 9.84097C10.4519 9.23029 10.4967 8.27472 10.5 6.44988\" stroke=\"#A2DB5C\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> <path d=\"M10.6233 2.1049C10.8193 1.91039 10.8205 1.5938 10.626 1.3978C10.4315 1.20179 10.1149 1.20058 9.91888 1.3951L10.6233 2.1049ZM7.1478 4.1451C6.95179 4.33961 6.95058 4.6562 7.1451 4.8522C7.33961 5.04821 7.6562 5.04942 7.8522 4.8549L7.1478 4.1451ZM10.0142 1.61353L9.92705 2.10587L9.92705 2.10587L10.0142 1.61353ZM7.99996 1C7.72381 1.00002 7.49998 1.2239 7.5 1.50004C7.50002 1.77619 7.7239 2.00002 8.00004 2L7.99996 1ZM10 4C10 4.27614 10.2239 4.5 10.5 4.5C10.7761 4.5 11 4.27614 11 4H10ZM10.3865 1.98587L10.8788 1.89877L10.8788 1.89877L10.3865 1.98587ZM10.2711 1.75L9.91888 1.3951L7.1478 4.1451L7.5 4.5L7.8522 4.8549L10.6233 2.1049L10.2711 1.75ZM10.0142 1.61353L10.1014 1.12119C9.74114 1.05738 9.20443 1.02853 8.7832 1.01443C8.56721 1.00719 8.37201 1.00359 8.23084 1.0018C8.16018 1.0009 8.10288 1.00045 8.06305 1.00022C8.04313 1.00011 8.02757 1.00006 8.01689 1.00003C8.01154 1.00001 8.00742 1.00001 8.00458 1C8.00315 1 8.00205 1 8.00128 1C8.00089 1 8.00059 1 8.00037 1C8.00026 1 8.00017 1 8.0001 1C8.00007 1 8.00003 1 8.00001 1C7.99998 1 7.99996 1 8 1.5C8.00004 2 8.00003 2 8.00002 2C8.00002 2 8.00002 2 8.00003 2C8.00004 2 8.00008 2 8.00013 2C8.00024 2 8.00044 2 8.00071 2C8.00126 2 8.00214 2 8.00334 2C8.00573 2.00001 8.00939 2.00001 8.01425 2.00002C8.02399 2.00005 8.03854 2.0001 8.05741 2.00021C8.09515 2.00042 8.15008 2.00085 8.21812 2.00172C8.35435 2.00345 8.54239 2.00692 8.74974 2.01387C9.1752 2.02811 9.64562 2.05603 9.92705 2.10587L10.0142 1.61353ZM10.5 4C11 4 11 3.99997 11 3.99994C11 3.99993 11 3.99989 11 3.99986C11 3.99979 11 3.9997 11 3.99959C11 3.99937 11 3.99906 11 3.99868C11 3.9979 11 3.9968 11 3.99538C11 3.99254 11 3.98841 11 3.98307C10.9999 3.97239 10.9999 3.95683 10.9998 3.93692C10.9995 3.89709 10.9991 3.83979 10.9982 3.76914C10.9964 3.62798 10.9928 3.4328 10.9855 3.21683C10.9714 2.79563 10.9426 2.259 10.8788 1.89877L10.3865 1.98587L9.89412 2.07298C9.94392 2.35446 9.97183 2.82489 9.98609 3.25033C9.99304 3.45767 9.99652 3.6457 9.99827 3.78193C9.99914 3.84997 9.99957 3.9049 9.99979 3.94263C9.99989 3.9615 9.99995 3.97605 9.99997 3.98579C9.99999 3.99065 9.99999 3.99432 10 3.99671C10 3.9979 10 3.99878 10 3.99933C10 3.99961 10 3.9998 10 3.99991C10 3.99997 10 4 10 4.00002C10 4.00003 10 4.00002 10 4.00002C10 4.00001 10 4 10.5 4ZM10.0142 1.61353L9.92705 2.10587C9.92825 2.10608 9.92604 2.10583 9.92166 2.10358C9.91726 2.10132 9.9121 2.09777 9.90714 2.0928C9.90217 2.08784 9.89863 2.08268 9.89638 2.0783C9.89414 2.07394 9.8939 2.07175 9.89412 2.07298L10.3865 1.98587L10.8788 1.89877C10.8076 1.49642 10.5039 1.19247 10.1014 1.12119L10.0142 1.61353Z\" fill=\"#A2DB5C\"/> </svg>',gS707cobN:secondaryBTNText??props.gS707cobN??\"Button Text\",variant:humanReadableVariantMap[props.variant]??props.variant??\"dTvLBrDhr\"};};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,CqyVlPE77,dYE4M6nCY,gS707cobN,a9SzVOCJ9,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dTvLBrDhr\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"RZir2mVCU-hover\")return true;if(baseVariant===\"RZir2mVCU\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"tZgmhcFTn-hover\")return true;if(baseVariant===\"tZgmhcFTn\")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:a9SzVOCJ9,motionChild:true,nodeId:\"dTvLBrDhr\",openInNewTab:true,scopeId:\"yO5nGvXAw\",...addPropertyOverrides({\"RZir2mVCU-hover\":{href:undefined},RZir2mVCU:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-13ckp57\",className,classNames)} framer-w5dtiu`,\"data-framer-name\":\"small - no icon\",layoutDependency:layoutDependency,layoutId:\"dTvLBrDhr\",ref:refBinding,style:{backgroundColor:\"var(--token-d6a84e02-37e2-4d28-a47a-460eca181ade, rgb(32, 41, 25))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"DrfYu4kx6-hover\":{backgroundColor:\"rgb(51, 65, 40)\"},\"dTvLBrDhr-hover\":{backgroundColor:\"var(--token-8c26c8f8-d778-4d27-8367-03615ddf57c2, rgb(51, 65, 40))\"},\"RZir2mVCU-hover\":{backgroundColor:\"rgb(51, 65, 40)\"},\"tZgmhcFTn-hover\":{backgroundColor:\"rgb(51, 65, 40)\"}},...addPropertyOverrides({\"DrfYu4kx6-hover\":{\"data-framer-name\":undefined},\"dTvLBrDhr-hover\":{\"data-framer-name\":undefined},\"RZir2mVCU-hover\":{\"data-framer-name\":undefined},\"tZgmhcFTn-hover\":{\"data-framer-name\":undefined},DrfYu4kx6:{\"data-framer-name\":\"Large - no icon\"},RZir2mVCU:{\"data-framer-name\":\"Large - Icon\"},tZgmhcFTn:{\"data-framer-name\":\"Small - Icon\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kg6kja-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"n6qb5qnDc-container\",nodeId:\"n6qb5qnDc\",rendersWithMotion:true,scopeId:\"yO5nGvXAw\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-e684dc32-9727-4116-bf33-2cd88b1e7049, rgb(162, 219, 92))\",customPadding:0,customStrokeWidth:1,customSvgCode:dYE4M6nCY,description:\"\",height:\"100%\",id:\"n6qb5qnDc\",layoutId:\"n6qb5qnDc\",lineCap:\"round\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:CqyVlPE77,width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ja0tx9-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"XkDR9HblT-container\",nodeId:\"XkDR9HblT\",rendersWithMotion:true,scopeId:\"yO5nGvXAw\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-e684dc32-9727-4116-bf33-2cd88b1e7049, rgb(162, 219, 92))\",customPadding:0,customStrokeWidth:1,customSvgCode:dYE4M6nCY,description:\"\",height:\"100%\",id:\"XkDR9HblT\",layoutId:\"XkDR9HblT\",lineCap:\"round\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:CqyVlPE77,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e684dc32-9727-4116-bf33-2cd88b1e7049, rgb(162, 219, 92)))\"},children:\"Start Trading\"})}),className:\"framer-ugm5bw\",fonts:[\"GF;Geist-600\"],layoutDependency:layoutDependency,layoutId:\"npbGhJ4OX\",style:{\"--extracted-r6o4lv\":\"var(--token-e684dc32-9727-4116-bf33-2cd88b1e7049, rgb(162, 219, 92))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:gS707cobN,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EELWT.framer-w5dtiu, .framer-EELWT .framer-w5dtiu { display: block; }\",\".framer-EELWT.framer-13ckp57 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 12px 8px 12px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-EELWT .framer-kg6kja-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-EELWT .framer-ja0tx9-container { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-EELWT .framer-ugm5bw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-EELWT.framer-v-1m477g.framer-13ckp57 { padding: 10px 16px 10px 16px; }\",\".framer-EELWT.framer-v-r2m2ea.framer-13ckp57 { flex-direction: row; gap: 4px; }\",\".framer-EELWT.framer-v-r2m2ea .framer-ja0tx9-container { order: 2; }\",\".framer-EELWT.framer-v-r2m2ea .framer-ugm5bw, .framer-EELWT.framer-v-vklea2 .framer-ugm5bw { order: 0; }\",\".framer-EELWT.framer-v-vklea2.framer-13ckp57 { flex-direction: row; gap: 4px; padding: 12px 16px 12px 16px; }\",\".framer-EELWT.framer-v-vklea2 .framer-kg6kja-container { order: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 33\n * @framerIntrinsicWidth 90\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"DrfYu4kx6\":{\"layout\":[\"auto\",\"auto\"]},\"tZgmhcFTn\":{\"layout\":[\"auto\",\"auto\"]},\"RZir2mVCU\":{\"layout\":[\"auto\",\"auto\"]},\"E8ubdiaUR\":{\"layout\":[\"auto\",\"auto\"]},\"amyXBcahq\":{\"layout\":[\"auto\",\"auto\"]},\"PR5c6tZmi\":{\"layout\":[\"auto\",\"auto\"]},\"SiewV3wn3\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"CqyVlPE77\":\"arrowRightIcon\",\"dYE4M6nCY\":\"linkOutside\",\"gS707cobN\":\"secondaryBTNText\",\"a9SzVOCJ9\":\"secBTNLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameryO5nGvXAw=withCSS(Component,css,\"framer-EELWT\");export default FrameryO5nGvXAw;FrameryO5nGvXAw.displayName=\"Secondary Btn\";FrameryO5nGvXAw.defaultProps={height:33,width:90};addPropertyControls(FrameryO5nGvXAw,{variant:{options:[\"dTvLBrDhr\",\"DrfYu4kx6\",\"tZgmhcFTn\",\"RZir2mVCU\"],optionTitles:[\"small - no icon\",\"Large - no icon\",\"Small - Icon\",\"Large - Icon\"],title:\"Variant\",type:ControlType.Enum},CqyVlPE77:{defaultValue:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M6.00003 4.5C6.00003 4.5 9.99999 7.44596 10 8.50003C10 9.55411 6 12.5 6 12.5\" stroke=\"#A2DB5C\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',displayTextArea:false,title:\"Arrow - Right Icon\",type:ControlType.String},dYE4M6nCY:{defaultValue:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M5.55012 1.5C3.72528 1.50329 2.76971 1.54809 2.15903 2.15877C1.5 2.8178 1.5 3.87849 1.5 5.99987C1.5 8.12125 1.5 9.18194 2.15903 9.84097C2.81806 10.5 3.87875 10.5 6.00013 10.5C8.12151 10.5 9.1822 10.5 9.84123 9.84097C10.4519 9.23029 10.4967 8.27472 10.5 6.44988\" stroke=\"#A2DB5C\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> <path d=\"M10.6233 2.1049C10.8193 1.91039 10.8205 1.5938 10.626 1.3978C10.4315 1.20179 10.1149 1.20058 9.91888 1.3951L10.6233 2.1049ZM7.1478 4.1451C6.95179 4.33961 6.95058 4.6562 7.1451 4.8522C7.33961 5.04821 7.6562 5.04942 7.8522 4.8549L7.1478 4.1451ZM10.0142 1.61353L9.92705 2.10587L9.92705 2.10587L10.0142 1.61353ZM7.99996 1C7.72381 1.00002 7.49998 1.2239 7.5 1.50004C7.50002 1.77619 7.7239 2.00002 8.00004 2L7.99996 1ZM10 4C10 4.27614 10.2239 4.5 10.5 4.5C10.7761 4.5 11 4.27614 11 4H10ZM10.3865 1.98587L10.8788 1.89877L10.8788 1.89877L10.3865 1.98587ZM10.2711 1.75L9.91888 1.3951L7.1478 4.1451L7.5 4.5L7.8522 4.8549L10.6233 2.1049L10.2711 1.75ZM10.0142 1.61353L10.1014 1.12119C9.74114 1.05738 9.20443 1.02853 8.7832 1.01443C8.56721 1.00719 8.37201 1.00359 8.23084 1.0018C8.16018 1.0009 8.10288 1.00045 8.06305 1.00022C8.04313 1.00011 8.02757 1.00006 8.01689 1.00003C8.01154 1.00001 8.00742 1.00001 8.00458 1C8.00315 1 8.00205 1 8.00128 1C8.00089 1 8.00059 1 8.00037 1C8.00026 1 8.00017 1 8.0001 1C8.00007 1 8.00003 1 8.00001 1C7.99998 1 7.99996 1 8 1.5C8.00004 2 8.00003 2 8.00002 2C8.00002 2 8.00002 2 8.00003 2C8.00004 2 8.00008 2 8.00013 2C8.00024 2 8.00044 2 8.00071 2C8.00126 2 8.00214 2 8.00334 2C8.00573 2.00001 8.00939 2.00001 8.01425 2.00002C8.02399 2.00005 8.03854 2.0001 8.05741 2.00021C8.09515 2.00042 8.15008 2.00085 8.21812 2.00172C8.35435 2.00345 8.54239 2.00692 8.74974 2.01387C9.1752 2.02811 9.64562 2.05603 9.92705 2.10587L10.0142 1.61353ZM10.5 4C11 4 11 3.99997 11 3.99994C11 3.99993 11 3.99989 11 3.99986C11 3.99979 11 3.9997 11 3.99959C11 3.99937 11 3.99906 11 3.99868C11 3.9979 11 3.9968 11 3.99538C11 3.99254 11 3.98841 11 3.98307C10.9999 3.97239 10.9999 3.95683 10.9998 3.93692C10.9995 3.89709 10.9991 3.83979 10.9982 3.76914C10.9964 3.62798 10.9928 3.4328 10.9855 3.21683C10.9714 2.79563 10.9426 2.259 10.8788 1.89877L10.3865 1.98587L9.89412 2.07298C9.94392 2.35446 9.97183 2.82489 9.98609 3.25033C9.99304 3.45767 9.99652 3.6457 9.99827 3.78193C9.99914 3.84997 9.99957 3.9049 9.99979 3.94263C9.99989 3.9615 9.99995 3.97605 9.99997 3.98579C9.99999 3.99065 9.99999 3.99432 10 3.99671C10 3.9979 10 3.99878 10 3.99933C10 3.99961 10 3.9998 10 3.99991C10 3.99997 10 4 10 4.00002C10 4.00003 10 4.00002 10 4.00002C10 4.00001 10 4 10.5 4ZM10.0142 1.61353L9.92705 2.10587C9.92825 2.10608 9.92604 2.10583 9.92166 2.10358C9.91726 2.10132 9.9121 2.09777 9.90714 2.0928C9.90217 2.08784 9.89863 2.08268 9.89638 2.0783C9.89414 2.07394 9.8939 2.07175 9.89412 2.07298L10.3865 1.98587L10.8788 1.89877C10.8076 1.49642 10.5039 1.19247 10.1014 1.12119L10.0142 1.61353Z\" fill=\"#A2DB5C\"/> </svg>',displayTextArea:false,title:\" Link Outside\",type:ControlType.String},gS707cobN:{defaultValue:\"Button Text\",displayTextArea:false,title:\"Secondary BTN Text\",type:ControlType.String},a9SzVOCJ9:{title:\"Sec BTN Link\",type:ControlType.Link}});addFonts(FrameryO5nGvXAw,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v3/gyBhhwUxId8gMGYQMKR3pzfaWI_RQuQ4mJPby1QNtA.woff2\",weight:\"600\"}]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryO5nGvXAw\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DrfYu4kx6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tZgmhcFTn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RZir2mVCU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"E8ubdiaUR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"amyXBcahq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"PR5c6tZmi\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SiewV3wn3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"CqyVlPE77\\\":\\\"arrowRightIcon\\\",\\\"dYE4M6nCY\\\":\\\"linkOutside\\\",\\\"gS707cobN\\\":\\\"secondaryBTNText\\\",\\\"a9SzVOCJ9\\\":\\\"secBTNLink\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"90\",\"framerIntrinsicHeight\":\"33\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yO5nGvXAw.map", "// Generated by Framer (6aa4fc0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"dOZB2wKy5\",\"aKm6v4lLy\"];const serializationHash=\"framer-d1iXC\";const variantClassNames={aKm6v4lLy:\"framer-v-rcgzuh\",dOZB2wKy5:\"framer-v-1yvzdgc\"};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 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={\"Variant 1\":\"dOZB2wKy5\",\"Variant 2\":\"aKm6v4lLy\"};const getProps=({click,height,id,width,...props})=>{return{...props,G2tQjZ6Ke:click??props.G2tQjZ6Ke,variant:humanReadableVariantMap[props.variant]??props.variant??\"dOZB2wKy5\"};};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,G2tQjZ6Ke,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dOZB2wKy5\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap5m6kia=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(G2tQjZ6Ke){const res=await G2tQjZ6Ke(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"aKm6v4lLy\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"aKm6v4lLy\")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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1yvzdgc\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"dOZB2wKy5\",onTap:onTap5m6kia,ref:refBinding,style:{...style},...addPropertyOverrides({aKm6v4lLy:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t1464h\",layoutDependency:layoutDependency,layoutId:\"via6QejUf\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h33812\",layoutDependency:layoutDependency,layoutId:\"BigI9ZNgE\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7,rotate:-42}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h3i33g\",layoutDependency:layoutDependency,layoutId:\"gQP23xTfN\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7,rotate:42}})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1brckk1\",layoutDependency:layoutDependency,layoutId:\"jKAB1vPTP\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1plqghj\",layoutDependency:layoutDependency,layoutId:\"D78D3VUEK\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1neocfd\",layoutDependency:layoutDependency,layoutId:\"Wou07SNZB\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-d1iXC.framer-pzaehh, .framer-d1iXC .framer-pzaehh { display: block; }\",\".framer-d1iXC.framer-1yvzdgc { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-d1iXC .framer-1t1464h, .framer-d1iXC .framer-1brckk1 { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-d1iXC .framer-1h33812, .framer-d1iXC .framer-1h3i33g { flex: none; height: 3px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 3px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-d1iXC .framer-1plqghj { flex: none; height: 3px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: 6px; width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-d1iXC .framer-1neocfd { bottom: 6px; flex: none; height: 3px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; width: 20px; will-change: var(--framer-will-change-override, transform); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"aKm6v4lLy\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"G2tQjZ6Ke\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameruI5BhZEO0=withCSS(Component,css,\"framer-d1iXC\");export default FrameruI5BhZEO0;FrameruI5BhZEO0.displayName=\"menu bar\";FrameruI5BhZEO0.defaultProps={height:24,width:24};addPropertyControls(FrameruI5BhZEO0,{variant:{options:[\"dOZB2wKy5\",\"aKm6v4lLy\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},G2tQjZ6Ke:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FrameruI5BhZEO0,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruI5BhZEO0\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aKm6v4lLy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"G2tQjZ6Ke\\\":\\\"click\\\"}\",\"framerIntrinsicHeight\":\"24\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uI5BhZEO0.map", "// Generated by Framer (890879b)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-615pX .framer-styles-preset-1xe7yzw:not(.rich-text-wrapper), .framer-615pX .framer-styles-preset-1xe7yzw.rich-text-wrapper a { --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, #a0a0a0); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-1aaac31f-fd2e-46de-a24d-acab3df6f41d, #ffffff); --framer-link-text-decoration: none; }\"];export const className=\"framer-615pX\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (dc53115)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"LJ3yIUXUs\",\"AdxZbopV2\"];const serializationHash=\"framer-uohIQ\";const variantClassNames={AdxZbopV2:\"framer-v-1x0byxh\",LJ3yIUXUs:\"framer-v-1tomt1t\"};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 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={\"small screen size\":\"AdxZbopV2\",default:\"LJ3yIUXUs\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"LJ3yIUXUs\"};};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:\"LJ3yIUXUs\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"LJ3yIUXUs\",scopeId:\"jwTla8JeI\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1tomt1t\",className,classNames)} framer-1ukgre1`,\"data-framer-name\":\"default\",layoutDependency:layoutDependency,layoutId:\"LJ3yIUXUs\",ref:refBinding,style:{...style},...addPropertyOverrides({AdxZbopV2:{\"data-framer-name\":\"small screen size\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-eitr3x\",\"data-framer-name\":\"Logo\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:70,layoutDependency:layoutDependency,layoutId:\"DAQZ5q1Dp\",svg:'<svg width=\"70\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#a)\"><path d=\"M25.498 11.607C23.067 4.518 9.937 4.003 6.28 4c-.364 0-.527.43-.27.687l18.21 18.158a.401.401 0 0 0 .677-.175c.51-1.911 1.815-7.522.601-11.062Z\" fill=\"#ACE075\"/></g><g filter=\"url(#b)\"><path d=\"M17.38 18.992c-1.922.566-7.867 2.048-10.991-.193C2.28 15.853 2.653 8.193 1.31 2.726c-.11-.445.531-.829.848-.498l15.39 16.101c.21.22.124.577-.168.663Z\" fill=\"#3EB751\"/></g><path d=\"M32.971 17V7.06h3.977c2.38 0 3.822 1.232 3.822 3.248s-1.443 3.262-3.823 3.262H35.1V17h-2.127Zm2.129-5.222h1.721c1.12 0 1.765-.504 1.765-1.47s-.645-1.456-1.764-1.456h-1.723v2.926ZM42.103 17V7.06h6.916v1.792h-4.788v2.282h4.62v1.764h-4.62v2.31h4.9V17h-7.028Zm7.94 0 3.583-9.94h2.52L59.731 17H57.52l-.728-2.114H52.97L52.241 17h-2.198Zm3.527-3.864h2.632L54.887 9.3l-1.316 3.836ZM60.67 17V7.06h4.354c2.184 0 3.57 1.162 3.57 2.968 0 1.204-.714 2.086-1.75 2.408.994.14 1.512.7 1.596 1.708L68.693 17h-2.17l-.182-2.52c-.056-.756-.42-1.12-1.428-1.12h-2.114V17H60.67Zm2.128-5.418h1.988c1.022 0 1.624-.504 1.624-1.372 0-.882-.588-1.358-1.694-1.358h-1.918v2.73Z\" fill=\"#fff\"/><defs><filter id=\"a\" x=\"5.885\" y=\"3.999\" width=\"20.115\" height=\"19.21\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\".243\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0.302394 0 0 0 0 0.470833 0 0 0 0 0.16283 0 0 0 1 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_777_1286\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_777_1286\" result=\"shape\"/></filter><filter id=\"b\" x=\"1.297\" y=\"2.104\" width=\"16.367\" height=\"18.137\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\".243\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0.053125 0 0 0 0 0.354167 0 0 0 0 0.100076 0 0 0 1 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_777_1286\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_777_1286\" result=\"shape\"/></filter></defs></svg>',withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uohIQ.framer-1ukgre1, .framer-uohIQ .framer-1ukgre1 { display: block; }\",\".framer-uohIQ.framer-1tomt1t { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 99px; }\",\".framer-uohIQ .framer-eitr3x { aspect-ratio: 2.9166666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 70px; }\",\".framer-uohIQ.framer-v-1x0byxh.framer-1tomt1t { width: min-content; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 99\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"AdxZbopV2\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerjwTla8JeI=withCSS(Component,css,\"framer-uohIQ\");export default FramerjwTla8JeI;FramerjwTla8JeI.displayName=\"logo\";FramerjwTla8JeI.defaultProps={height:32,width:99};addPropertyControls(FramerjwTla8JeI,{variant:{options:[\"LJ3yIUXUs\",\"AdxZbopV2\"],optionTitles:[\"default\",\"small screen size\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerjwTla8JeI,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjwTla8JeI\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"99\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"32\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AdxZbopV2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jwTla8JeI.map", "// Generated by Framer (47dffbb)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"VMOKyFfOw\",\"dLqEypYAF\"];const serializationHash=\"framer-2KSM0\";const variantClassNames={dLqEypYAF:\"framer-v-nw6s0g\",VMOKyFfOw:\"framer-v-11bwqow\"};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 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={\"small screen size\":\"dLqEypYAF\",default:\"VMOKyFfOw\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"VMOKyFfOw\"};};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:\"VMOKyFfOw\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DkBd2jjlL\"},motionChild:true,nodeId:\"VMOKyFfOw\",openInNewTab:false,scopeId:\"vImBt8OQr\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-11bwqow\",className,classNames)} framer-2t8btd`,\"data-framer-name\":\"default\",layoutDependency:layoutDependency,layoutId:\"VMOKyFfOw\",ref:refBinding,style:{...style},...addPropertyOverrides({dLqEypYAF:{\"data-framer-name\":\"small screen size\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-hgm8p3\",\"data-framer-name\":\"Logo\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:70,layoutDependency:layoutDependency,layoutId:\"c2Ih3_SH1\",svg:'<svg width=\"70\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#a)\"><path d=\"M25.498 11.607C23.067 4.518 9.937 4.003 6.28 4c-.364 0-.527.43-.27.687l18.21 18.158a.401.401 0 0 0 .677-.175c.51-1.911 1.815-7.522.601-11.062Z\" fill=\"#ACE075\"/></g><g filter=\"url(#b)\"><path d=\"M17.38 18.992c-1.922.566-7.867 2.048-10.991-.193C2.28 15.853 2.653 8.193 1.31 2.726c-.11-.445.531-.829.848-.498l15.39 16.101c.21.22.124.577-.168.663Z\" fill=\"#3EB751\"/></g><path d=\"M32.971 17V7.06h3.977c2.38 0 3.822 1.232 3.822 3.248s-1.443 3.262-3.823 3.262H35.1V17h-2.127Zm2.129-5.222h1.721c1.12 0 1.765-.504 1.765-1.47s-.645-1.456-1.764-1.456h-1.723v2.926ZM42.103 17V7.06h6.916v1.792h-4.788v2.282h4.62v1.764h-4.62v2.31h4.9V17h-7.028Zm7.94 0 3.583-9.94h2.52L59.731 17H57.52l-.728-2.114H52.97L52.241 17h-2.198Zm3.527-3.864h2.632L54.887 9.3l-1.316 3.836ZM60.67 17V7.06h4.354c2.184 0 3.57 1.162 3.57 2.968 0 1.204-.714 2.086-1.75 2.408.994.14 1.512.7 1.596 1.708L68.693 17h-2.17l-.182-2.52c-.056-.756-.42-1.12-1.428-1.12h-2.114V17H60.67Zm2.128-5.418h1.988c1.022 0 1.624-.504 1.624-1.372 0-.882-.588-1.358-1.694-1.358h-1.918v2.73Z\" fill=\"#fff\"/><defs><filter id=\"a\" x=\"5.885\" y=\"3.999\" width=\"20.115\" height=\"19.21\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\".243\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0.302394 0 0 0 0 0.470833 0 0 0 0 0.16283 0 0 0 1 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_777_1286\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_777_1286\" result=\"shape\"/></filter><filter id=\"b\" x=\"1.297\" y=\"2.104\" width=\"16.367\" height=\"18.137\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\".243\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0.053125 0 0 0 0 0.354167 0 0 0 0 0.100076 0 0 0 1 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_777_1286\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_777_1286\" result=\"shape\"/></filter></defs></svg>',withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2KSM0.framer-2t8btd, .framer-2KSM0 .framer-2t8btd { display: block; }\",\".framer-2KSM0.framer-11bwqow { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 99px; }\",\".framer-2KSM0 .framer-hgm8p3 { aspect-ratio: 2.9166666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 70px; }\",\".framer-2KSM0.framer-v-nw6s0g.framer-11bwqow { width: min-content; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 99\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"dLqEypYAF\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramervImBt8OQr=withCSS(Component,css,\"framer-2KSM0\");export default FramervImBt8OQr;FramervImBt8OQr.displayName=\"logo 2\";FramervImBt8OQr.defaultProps={height:32,width:99};addPropertyControls(FramervImBt8OQr,{variant:{options:[\"VMOKyFfOw\",\"dLqEypYAF\"],optionTitles:[\"default\",\"small screen size\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramervImBt8OQr,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervImBt8OQr\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"99\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dLqEypYAF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"32\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vImBt8OQr.map", "// Generated by Framer (905f6be)\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 MenuBar from\"https://framerusercontent.com/modules/EzyaHFaGd4hdNj5xWEEA/TWNk44bCGebFEcQMXOy5/uI5BhZEO0.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/FpgzUZS04dqGAnVAmWYr/dYlecYA01s8Umz4buitH/lENuf5GkE.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/mfrv8kTPiFI6ZBMpIqef/oHJAOrgjlp2rhfFiy8Gu/odm4RXn9K.js\";import Logo from\"https://framerusercontent.com/modules/Yapdm3dVRzIvV7w8AWz9/jMourjXfXT217JeWc8mJ/jwTla8JeI.js\";import Logo2 from\"https://framerusercontent.com/modules/H5ZDrM1Dw2fHWTWpq0oh/RBMooWZi2DhJMEXwZLNs/vImBt8OQr.js\";import PrimaryBtn from\"https://framerusercontent.com/modules/ZOX7W4d3iPxja3yXIGiZ/PzKfWHyaScYEAsNLyWYy/VO65nBEGa.js\";import SecondaryBtn from\"https://framerusercontent.com/modules/QItCf7xP9n7kg2HlQrMJ/oaNUtxqOb5Vi3f5cVDRa/yO5nGvXAw.js\";const LogoFonts=getFonts(Logo);const SecondaryBtnFonts=getFonts(SecondaryBtn);const MenuBarFonts=getFonts(MenuBar);const Logo2Fonts=getFonts(Logo2);const PrimaryBtnFonts=getFonts(PrimaryBtn);const cycleOrder=[\"qr1nufWg3\",\"YSZJIO34A\",\"f1OSwaHLh\",\"xGlGiWXQ8\",\"dZf2NfwwX\",\"L5ZW3CAd3\",\"q9uTId052\",\"fynBxWi7G\",\"MbkeqK3bG\",\"n0pDy043b\"];const serializationHash=\"framer-AI579\";const variantClassNames={dZf2NfwwX:\"framer-v-10tpl9t\",f1OSwaHLh:\"framer-v-lnv4pk\",fynBxWi7G:\"framer-v-1780xuz\",L5ZW3CAd3:\"framer-v-kgvac1\",MbkeqK3bG:\"framer-v-1kdkkjd\",n0pDy043b:\"framer-v-1nhvpca\",q9uTId052:\"framer-v-yt4kws\",qr1nufWg3:\"framer-v-dw5x6o\",xGlGiWXQ8:\"framer-v-1bognnn\",YSZJIO34A:\"framer-v-dfzthv\"};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 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 / Scrolled past hero\":\"dZf2NfwwX\",\"Education Page / Desktop\":\"fynBxWi7G\",\"Education Page / Mobile\":\"n0pDy043b\",\"Education Page / Tablet\":\"MbkeqK3bG\",\"Mobile - Closed\":\"f1OSwaHLh\",\"Mobile - Open\":\"xGlGiWXQ8\",\"Mobile / past hero - Closed\":\"q9uTId052\",\"Tablet / Scrolled past hero\":\"L5ZW3CAd3\",Desktop:\"qr1nufWg3\",Tablet:\"YSZJIO34A\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"qr1nufWg3\"};};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:\"qr1nufWg3\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const G2tQjZ6Ke15znups=activeVariantCallback(async(...args)=>{setVariant(\"f1OSwaHLh\");});const G2tQjZ6Ke1ueaixy=activeVariantCallback(async(...args)=>{setVariant(\"xGlGiWXQ8\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"xGlGiWXQ8\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"xGlGiWXQ8\")return false;return true;};const isDisplayed2=()=>{if([\"f1OSwaHLh\",\"q9uTId052\",\"n0pDy043b\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"fynBxWi7G\")return false;return true;};const isDisplayed4=()=>{if([\"f1OSwaHLh\",\"q9uTId052\",\"n0pDy043b\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if([\"dZf2NfwwX\",\"L5ZW3CAd3\",\"q9uTId052\"].includes(baseVariant))return true;return false;};const isDisplayed6=()=>{if([\"dZf2NfwwX\",\"L5ZW3CAd3\",\"q9uTId052\"].includes(baseVariant))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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-dw5x6o\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"qr1nufWg3\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 40, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(6, 9, 2, 0.8)\",WebkitBackdropFilter:\"blur(5px)\",...style},variants:{xGlGiWXQ8:{\"--border-bottom-width\":\"0px\"}},...addPropertyOverrides({dZf2NfwwX:{\"data-framer-name\":\"Desktop / Scrolled past hero\"},f1OSwaHLh:{\"data-framer-name\":\"Mobile - Closed\"},fynBxWi7G:{\"data-framer-name\":\"Education Page / Desktop\"},L5ZW3CAd3:{\"data-framer-name\":\"Tablet / Scrolled past hero\"},MbkeqK3bG:{\"data-framer-name\":\"Education Page / Tablet\"},n0pDy043b:{\"data-framer-name\":\"Education Page / Mobile\"},q9uTId052:{\"data-framer-name\":\"Mobile / past hero - Closed\"},xGlGiWXQ8:{\"data-framer-name\":\"Mobile - Open\"},YSZJIO34A:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w4iiaa\",layoutDependency:layoutDependency,layoutId:\"EK__3C1Z4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d1rbyx\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"LrCN1Emsx\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 40, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,width:\"99px\",...addPropertyOverrides({xGlGiWXQ8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1e3)/2+0+0)+8+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-u2bpmi-container\",layoutDependency:layoutDependency,layoutId:\"dRtZkI0Nr-container\",nodeId:\"dRtZkI0Nr\",rendersWithMotion:true,scopeId:\"LDaoOCIMD\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"dRtZkI0Nr\",layoutId:\"dRtZkI0Nr\",style:{height:\"100%\",width:\"100%\"},variant:\"LJ3yIUXUs\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mswwbs\",layoutDependency:layoutDependency,layoutId:\"T8iLar4iV\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,...addPropertyOverrides({xGlGiWXQ8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1e3)/2+0+0)+8+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wfxvgh-container\",layoutDependency:layoutDependency,layoutId:\"X5EVDtUq0-container\",nodeId:\"X5EVDtUq0\",rendersWithMotion:true,scopeId:\"LDaoOCIMD\",children:/*#__PURE__*/_jsx(SecondaryBtn,{a9SzVOCJ9:\"app.pear.garden\",CqyVlPE77:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M6.00003 4.5C6.00003 4.5 9.99999 7.44596 10 8.50003C10 9.55411 6 12.5 6 12.5\" stroke=\"#A2DB5C\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',dYE4M6nCY:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M5.55012 1.5C3.72528 1.50329 2.76971 1.54809 2.15903 2.15877C1.5 2.8178 1.5 3.87849 1.5 5.99987C1.5 8.12125 1.5 9.18194 2.15903 9.84097C2.81806 10.5 3.87875 10.5 6.00013 10.5C8.12151 10.5 9.1822 10.5 9.84123 9.84097C10.4519 9.23029 10.4967 8.27472 10.5 6.44988\" stroke=\"#A2DB5C\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> <path d=\"M10.6233 2.1049C10.8193 1.91039 10.8205 1.5938 10.626 1.3978C10.4315 1.20179 10.1149 1.20058 9.91888 1.3951L10.6233 2.1049ZM7.1478 4.1451C6.95179 4.33961 6.95058 4.6562 7.1451 4.8522C7.33961 5.04821 7.6562 5.04942 7.8522 4.8549L7.1478 4.1451ZM10.0142 1.61353L9.92705 2.10587L9.92705 2.10587L10.0142 1.61353ZM7.99996 1C7.72381 1.00002 7.49998 1.2239 7.5 1.50004C7.50002 1.77619 7.7239 2.00002 8.00004 2L7.99996 1ZM10 4C10 4.27614 10.2239 4.5 10.5 4.5C10.7761 4.5 11 4.27614 11 4H10ZM10.3865 1.98587L10.8788 1.89877L10.8788 1.89877L10.3865 1.98587ZM10.2711 1.75L9.91888 1.3951L7.1478 4.1451L7.5 4.5L7.8522 4.8549L10.6233 2.1049L10.2711 1.75ZM10.0142 1.61353L10.1014 1.12119C9.74114 1.05738 9.20443 1.02853 8.7832 1.01443C8.56721 1.00719 8.37201 1.00359 8.23084 1.0018C8.16018 1.0009 8.10288 1.00045 8.06305 1.00022C8.04313 1.00011 8.02757 1.00006 8.01689 1.00003C8.01154 1.00001 8.00742 1.00001 8.00458 1C8.00315 1 8.00205 1 8.00128 1C8.00089 1 8.00059 1 8.00037 1C8.00026 1 8.00017 1 8.0001 1C8.00007 1 8.00003 1 8.00001 1C7.99998 1 7.99996 1 8 1.5C8.00004 2 8.00003 2 8.00002 2C8.00002 2 8.00002 2 8.00003 2C8.00004 2 8.00008 2 8.00013 2C8.00024 2 8.00044 2 8.00071 2C8.00126 2 8.00214 2 8.00334 2C8.00573 2.00001 8.00939 2.00001 8.01425 2.00002C8.02399 2.00005 8.03854 2.0001 8.05741 2.00021C8.09515 2.00042 8.15008 2.00085 8.21812 2.00172C8.35435 2.00345 8.54239 2.00692 8.74974 2.01387C9.1752 2.02811 9.64562 2.05603 9.92705 2.10587L10.0142 1.61353ZM10.5 4C11 4 11 3.99997 11 3.99994C11 3.99993 11 3.99989 11 3.99986C11 3.99979 11 3.9997 11 3.99959C11 3.99937 11 3.99906 11 3.99868C11 3.9979 11 3.9968 11 3.99538C11 3.99254 11 3.98841 11 3.98307C10.9999 3.97239 10.9999 3.95683 10.9998 3.93692C10.9995 3.89709 10.9991 3.83979 10.9982 3.76914C10.9964 3.62798 10.9928 3.4328 10.9855 3.21683C10.9714 2.79563 10.9426 2.259 10.8788 1.89877L10.3865 1.98587L9.89412 2.07298C9.94392 2.35446 9.97183 2.82489 9.98609 3.25033C9.99304 3.45767 9.99652 3.6457 9.99827 3.78193C9.99914 3.84997 9.99957 3.9049 9.99979 3.94263C9.99989 3.9615 9.99995 3.97605 9.99997 3.98579C9.99999 3.99065 9.99999 3.99432 10 3.99671C10 3.9979 10 3.99878 10 3.99933C10 3.99961 10 3.9998 10 3.99991C10 3.99997 10 4 10 4.00002C10 4.00003 10 4.00002 10 4.00002C10 4.00001 10 4 10.5 4ZM10.0142 1.61353L9.92705 2.10587C9.92825 2.10608 9.92604 2.10583 9.92166 2.10358C9.91726 2.10132 9.9121 2.09777 9.90714 2.0928C9.90217 2.08784 9.89863 2.08268 9.89638 2.0783C9.89414 2.07394 9.8939 2.07175 9.89412 2.07298L10.3865 1.98587L10.8788 1.89877C10.8076 1.49642 10.5039 1.19247 10.1014 1.12119L10.0142 1.61353Z\" fill=\"#A2DB5C\"/> </svg>',gS707cobN:\"Start Trading\",height:\"100%\",id:\"X5EVDtUq0\",layoutId:\"X5EVDtUq0\",variant:\"dTvLBrDhr\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,...addPropertyOverrides({xGlGiWXQ8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1e3)/2+0+0)+8+0+0+4.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18rlfrn-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"aZLVXIPkT-container\",nodeId:\"aZLVXIPkT\",rendersWithMotion:true,scopeId:\"LDaoOCIMD\",children:/*#__PURE__*/_jsx(MenuBar,{G2tQjZ6Ke:G2tQjZ6Ke15znups,height:\"100%\",id:\"aZLVXIPkT\",layoutId:\"aZLVXIPkT\",variant:\"aKm6v4lLy\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o68ka9\",\"data-framer-name\":\"nav-options\",layoutDependency:layoutDependency,layoutId:\"lOlgrJrb2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l61dbh\",layoutDependency:layoutDependency,layoutId:\"ynWhsrztA\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-195kaj5\",layoutDependency:layoutDependency,layoutId:\"kWU9yrguD\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16263540-785d-42cb-81c2-3cd96b40e148, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":vmhQv_V0e\",webPageId:\"DkBd2jjlL\"},motionChild:true,nodeId:\"HS0S1IqdD\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"LDaoOCIMD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Pair Trading\"})})})}),className:\"framer-fhtq9b\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"HS0S1IqdD\",style:{\"--extracted-r6o4lv\":\"var(--token-16263540-785d-42cb-81c2-3cd96b40e148, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w06nwn\",layoutDependency:layoutDependency,layoutId:\"zDubZQchQ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":rX6QFeJN9\",webPageId:\"DkBd2jjlL\"},motionChild:true,nodeId:\"qyBoaDMlD\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"LDaoOCIMD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Trading Engines\"})})})}),className:\"framer-1fle318\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"qyBoaDMlD\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5jsg8\",layoutDependency:layoutDependency,layoutId:\"uHSE_fIoH\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vzUsG9Hmr\"},motionChild:true,nodeId:\"rPRAw8Hkx\",openInNewTab:true,preserveParams:false,relValues:[],scopeId:\"LDaoOCIMD\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Education\"})})})}),className:\"framer-1kub6d7\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"rPRAw8Hkx\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.pearprotocol.io/\",motionChild:true,nodeId:\"eaBI1umhe\",scopeId:\"LDaoOCIMD\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-87lbnn framer-3ugg8p\",layoutDependency:layoutDependency,layoutId:\"eaBI1umhe\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:\"Docs\"})}),className:\"framer-1q8vcou\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"sxrhyKT2h\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oz6114\",layoutDependency:layoutDependency,layoutId:\"rB98D1yd5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":sIvOY474p\",webPageId:\"DkBd2jjlL\"},motionChild:true,nodeId:\"IRVdHxeZT\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"LDaoOCIMD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Community\"})})})}),className:\"framer-161esq4\",\"data-framer-name\":\"Community\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"IRVdHxeZT\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://dune.com/pear_protocol/pear-protocol\",motionChild:true,nodeId:\"IFj03ZFk_\",openInNewTab:true,scopeId:\"LDaoOCIMD\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-dv4c02 framer-3ugg8p\",layoutDependency:layoutDependency,layoutId:\"IFj03ZFk_\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160)))\"},children:\"Stats\"})}),className:\"framer-19d0t2n\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"gKdIRwStj\",style:{\"--extracted-r6o4lv\":\"var(--token-0613d8b4-86cb-44eb-a57a-a662394700be, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9c839b49-a03a-45ea-b9c1-f75410b14436, rgb(113, 113, 113)))\"},children:\"\\xa9 2025 Pear Protocol. All rights reserved.\"})}),className:\"framer-1ru76j5\",\"data-framer-name\":\"All rights reserved\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"mtdGOmTaQ\",style:{\"--extracted-r6o4lv\":\"var(--token-9c839b49-a03a-45ea-b9c1-f75410b14436, rgb(113, 113, 113))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bjscuc\",layoutDependency:layoutDependency,layoutId:\"Ar2ryP4iX\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pexvzt\",layoutDependency:layoutDependency,layoutId:\"TCoBjL2Oq\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,width:\"99px\",y:(componentViewport?.y||0)+10+(((componentViewport?.height||53)-20-33)/2+0+0)+0+0,...addPropertyOverrides({f1OSwaHLh:{y:(componentViewport?.y||0)+10+(((componentViewport?.height||200)-20-33)/2+0+0)+0+0},n0pDy043b:{y:(componentViewport?.y||0)+10+(((componentViewport?.height||200)-20-33)/2+0+0)+0+0},q9uTId052:{y:(componentViewport?.y||0)+10+(((componentViewport?.height||200)-20-33)/2+0+0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2d5fqb-container\",layoutDependency:layoutDependency,layoutId:\"s_7ZoInEp-container\",nodeId:\"s_7ZoInEp\",rendersWithMotion:true,scopeId:\"LDaoOCIMD\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"s_7ZoInEp\",layoutId:\"s_7ZoInEp\",style:{height:\"100%\",width:\"100%\"},variant:\"VMOKyFfOw\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9fpez5\",\"data-framer-name\":\"nav-options\",layoutDependency:layoutDependency,layoutId:\"RHv4tJFNp\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1aaac31f-fd2e-46de-a24d-acab3df6f41d, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":vmhQv_V0e\",webPageId:\"DkBd2jjlL\"},motionChild:true,nodeId:\"NAKQWxnrr\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"LDaoOCIMD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Pair Trading\"})})})}),className:\"framer-1lncpw4\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"NAKQWxnrr\",style:{\"--extracted-r6o4lv\":\"var(--token-1aaac31f-fd2e-46de-a24d-acab3df6f41d, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1aaac31f-fd2e-46de-a24d-acab3df6f41d, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":rX6QFeJN9\",webPageId:\"DkBd2jjlL\"},motionChild:true,nodeId:\"BqG94_rkG\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"LDaoOCIMD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Trading Engines\"})})})}),className:\"framer-1dh9qg8\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"BqG94_rkG\",style:{\"--extracted-r6o4lv\":\"var(--token-1aaac31f-fd2e-46de-a24d-acab3df6f41d, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1aaac31f-fd2e-46de-a24d-acab3df6f41d, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":YHVPchAR1\",webPageId:\"DkBd2jjlL\"},motionChild:true,nodeId:\"BaLqy1ewV\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"LDaoOCIMD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Education\"})})})}),className:\"framer-1apyw41\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"BaLqy1ewV\",style:{\"--extracted-r6o4lv\":\"var(--token-1aaac31f-fd2e-46de-a24d-acab3df6f41d, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fynBxWi7G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1aaac31f-fd2e-46de-a24d-acab3df6f41d, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vzUsG9Hmr\"},motionChild:true,nodeId:\"BaLqy1ewV\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"LDaoOCIMD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Education\"})})})})},MbkeqK3bG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1aaac31f-fd2e-46de-a24d-acab3df6f41d, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":YHVPchAR1\",webPageId:\"DkBd2jjlL\"},motionChild:true,nodeId:\"BaLqy1ewV\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"LDaoOCIMD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1xe7yzw\",\"data-styles-preset\":\"odm4RXn9K\",children:\"Education\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1aaac31f-fd2e-46de-a24d-acab3df6f41d, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":sIvOY474p\",webPageId:\"DkBd2jjlL\"},motionChild:true,nodeId:\"Hbk93q7gw\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"LDaoOCIMD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Community\"})})})}),className:\"framer-gjf62b\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"Hbk93q7gw\",style:{\"--extracted-r6o4lv\":\"var(--token-1aaac31f-fd2e-46de-a24d-acab3df6f41d, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fynBxWi7G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1aaac31f-fd2e-46de-a24d-acab3df6f41d, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Gz7qW1fKv\",webPageId:\"vzUsG9Hmr\"},motionChild:true,nodeId:\"Hbk93q7gw\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"LDaoOCIMD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Community\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1aaac31f-fd2e-46de-a24d-acab3df6f41d, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.pearprotocol.io/\",motionChild:true,nodeId:\"oFMNoozPS\",openInNewTab:true,preserveParams:false,relValues:[],scopeId:\"LDaoOCIMD\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Docs\"})})})}),className:\"framer-su71iq\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"oFMNoozPS\",style:{\"--extracted-r6o4lv\":\"var(--token-1aaac31f-fd2e-46de-a24d-acab3df6f41d, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1aaac31f-fd2e-46de-a24d-acab3df6f41d, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://dune.com/pear_protocol/pear-protocol\",motionChild:true,nodeId:\"tevKPmnJ7\",openInNewTab:true,preserveParams:false,relValues:[],scopeId:\"LDaoOCIMD\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qjs3f3\",\"data-styles-preset\":\"lENuf5GkE\",children:\"Stats\"})})})}),className:\"framer-1nnq3z\",\"data-framer-name\":\"Stats\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"tevKPmnJ7\",style:{\"--extracted-r6o4lv\":\"var(--token-1aaac31f-fd2e-46de-a24d-acab3df6f41d, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-da7yy6\",layoutDependency:layoutDependency,layoutId:\"LOdBcPjIY\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({f1OSwaHLh:{height:24,y:(componentViewport?.y||0)+10+(((componentViewport?.height||200)-20-33)/2+0+0)+0+0+4.5},n0pDy043b:{height:24,y:(componentViewport?.y||0)+10+(((componentViewport?.height||200)-20-33)/2+0+0)+0+0+4.5},q9uTId052:{height:24,y:(componentViewport?.y||0)+10+(((componentViewport?.height||200)-20-33)/2+0+0)+0+0+4.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-105hrfh-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"S9LQETiTN-container\",nodeId:\"S9LQETiTN\",rendersWithMotion:true,scopeId:\"LDaoOCIMD\",children:/*#__PURE__*/_jsx(MenuBar,{G2tQjZ6Ke:G2tQjZ6Ke1ueaixy,height:\"100%\",id:\"S9LQETiTN\",layoutId:\"S9LQETiTN\",variant:\"dOZB2wKy5\",width:\"100%\"})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({dZf2NfwwX:{height:33,y:(componentViewport?.y||0)+10+(((componentViewport?.height||53)-20-33)/2+0+0)+0+0+0},L5ZW3CAd3:{height:33,y:(componentViewport?.y||0)+10+(((componentViewport?.height||53)-20-33)/2+0+0)+0+0+0},q9uTId052:{height:33,y:(componentViewport?.y||0)+10+(((componentViewport?.height||200)-20-33)/2+0+0)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1j18lbk-container\",layoutDependency:layoutDependency,layoutId:\"dvh5eWYQY-container\",nodeId:\"dvh5eWYQY\",rendersWithMotion:true,scopeId:\"LDaoOCIMD\",children:/*#__PURE__*/_jsx(PrimaryBtn,{height:\"100%\",id:\"dvh5eWYQY\",layoutId:\"dvh5eWYQY\",variant:\"I9UB8oEDy\",width:\"100%\",yBGycXNor:\"Start Trading\",ZQsxrosIH:\"0px 0.48290122862090357px 1.641864177311072px 0px rgba(162, 219, 93, 0.05), 0px 4px 13.6px 0px rgba(162, 219, 93, 0.4)\",...addPropertyOverrides({dZf2NfwwX:{kK_f9VnJV:\"app.pear.garden/trade\"},L5ZW3CAd3:{kK_f9VnJV:\"https://pear.garden/trade\"},q9uTId052:{kK_f9VnJV:\"https://pear.garden/trade\"}},baseVariant,gestureVariant)})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,y:(componentViewport?.y||0)+10+(((componentViewport?.height||53)-20-33)/2+0+0)+0+0+0,...addPropertyOverrides({f1OSwaHLh:{y:(componentViewport?.y||0)+10+(((componentViewport?.height||200)-20-33)/2+0+0)+0+0+0},n0pDy043b:{y:(componentViewport?.y||0)+10+(((componentViewport?.height||200)-20-33)/2+0+0)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fl0cj0-container\",layoutDependency:layoutDependency,layoutId:\"U4J0B4sQi-container\",nodeId:\"U4J0B4sQi\",rendersWithMotion:true,scopeId:\"LDaoOCIMD\",children:/*#__PURE__*/_jsx(SecondaryBtn,{a9SzVOCJ9:\"app.pear.garden/trade\",CqyVlPE77:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M6.00003 4.5C6.00003 4.5 9.99999 7.44596 10 8.50003C10 9.55411 6 12.5 6 12.5\" stroke=\"#A2DB5C\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',dYE4M6nCY:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M5.55012 1.5C3.72528 1.50329 2.76971 1.54809 2.15903 2.15877C1.5 2.8178 1.5 3.87849 1.5 5.99987C1.5 8.12125 1.5 9.18194 2.15903 9.84097C2.81806 10.5 3.87875 10.5 6.00013 10.5C8.12151 10.5 9.1822 10.5 9.84123 9.84097C10.4519 9.23029 10.4967 8.27472 10.5 6.44988\" stroke=\"#A2DB5C\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> <path d=\"M10.6233 2.1049C10.8193 1.91039 10.8205 1.5938 10.626 1.3978C10.4315 1.20179 10.1149 1.20058 9.91888 1.3951L10.6233 2.1049ZM7.1478 4.1451C6.95179 4.33961 6.95058 4.6562 7.1451 4.8522C7.33961 5.04821 7.6562 5.04942 7.8522 4.8549L7.1478 4.1451ZM10.0142 1.61353L9.92705 2.10587L9.92705 2.10587L10.0142 1.61353ZM7.99996 1C7.72381 1.00002 7.49998 1.2239 7.5 1.50004C7.50002 1.77619 7.7239 2.00002 8.00004 2L7.99996 1ZM10 4C10 4.27614 10.2239 4.5 10.5 4.5C10.7761 4.5 11 4.27614 11 4H10ZM10.3865 1.98587L10.8788 1.89877L10.8788 1.89877L10.3865 1.98587ZM10.2711 1.75L9.91888 1.3951L7.1478 4.1451L7.5 4.5L7.8522 4.8549L10.6233 2.1049L10.2711 1.75ZM10.0142 1.61353L10.1014 1.12119C9.74114 1.05738 9.20443 1.02853 8.7832 1.01443C8.56721 1.00719 8.37201 1.00359 8.23084 1.0018C8.16018 1.0009 8.10288 1.00045 8.06305 1.00022C8.04313 1.00011 8.02757 1.00006 8.01689 1.00003C8.01154 1.00001 8.00742 1.00001 8.00458 1C8.00315 1 8.00205 1 8.00128 1C8.00089 1 8.00059 1 8.00037 1C8.00026 1 8.00017 1 8.0001 1C8.00007 1 8.00003 1 8.00001 1C7.99998 1 7.99996 1 8 1.5C8.00004 2 8.00003 2 8.00002 2C8.00002 2 8.00002 2 8.00003 2C8.00004 2 8.00008 2 8.00013 2C8.00024 2 8.00044 2 8.00071 2C8.00126 2 8.00214 2 8.00334 2C8.00573 2.00001 8.00939 2.00001 8.01425 2.00002C8.02399 2.00005 8.03854 2.0001 8.05741 2.00021C8.09515 2.00042 8.15008 2.00085 8.21812 2.00172C8.35435 2.00345 8.54239 2.00692 8.74974 2.01387C9.1752 2.02811 9.64562 2.05603 9.92705 2.10587L10.0142 1.61353ZM10.5 4C11 4 11 3.99997 11 3.99994C11 3.99993 11 3.99989 11 3.99986C11 3.99979 11 3.9997 11 3.99959C11 3.99937 11 3.99906 11 3.99868C11 3.9979 11 3.9968 11 3.99538C11 3.99254 11 3.98841 11 3.98307C10.9999 3.97239 10.9999 3.95683 10.9998 3.93692C10.9995 3.89709 10.9991 3.83979 10.9982 3.76914C10.9964 3.62798 10.9928 3.4328 10.9855 3.21683C10.9714 2.79563 10.9426 2.259 10.8788 1.89877L10.3865 1.98587L9.89412 2.07298C9.94392 2.35446 9.97183 2.82489 9.98609 3.25033C9.99304 3.45767 9.99652 3.6457 9.99827 3.78193C9.99914 3.84997 9.99957 3.9049 9.99979 3.94263C9.99989 3.9615 9.99995 3.97605 9.99997 3.98579C9.99999 3.99065 9.99999 3.99432 10 3.99671C10 3.9979 10 3.99878 10 3.99933C10 3.99961 10 3.9998 10 3.99991C10 3.99997 10 4 10 4.00002C10 4.00003 10 4.00002 10 4.00002C10 4.00001 10 4 10.5 4ZM10.0142 1.61353L9.92705 2.10587C9.92825 2.10608 9.92604 2.10583 9.92166 2.10358C9.91726 2.10132 9.9121 2.09777 9.90714 2.0928C9.90217 2.08784 9.89863 2.08268 9.89638 2.0783C9.89414 2.07394 9.8939 2.07175 9.89412 2.07298L10.3865 1.98587L10.8788 1.89877C10.8076 1.49642 10.5039 1.19247 10.1014 1.12119L10.0142 1.61353Z\" fill=\"#A2DB5C\"/> </svg>',gS707cobN:\"Start Trading\",height:\"100%\",id:\"U4J0B4sQi\",layoutId:\"U4J0B4sQi\",variant:\"dTvLBrDhr\",width:\"100%\"})})})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AI579.framer-3ugg8p, .framer-AI579 .framer-3ugg8p { display: block; }\",\".framer-AI579.framer-dw5x6o { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 16px 10px 16px; position: relative; width: 1200px; }\",\".framer-AI579 .framer-w4iiaa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: calc(var(--framer-viewport-height, 100vh) * 1); justify-content: center; overflow: visible; padding: 8px; position: relative; width: 100%; }\",\".framer-AI579 .framer-1d1rbyx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-AI579 .framer-u2bpmi-container, .framer-AI579 .framer-2d5fqb-container { flex: none; height: 33px; position: relative; width: 99px; }\",\".framer-AI579 .framer-mswwbs { 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-AI579 .framer-wfxvgh-container, .framer-AI579 .framer-18rlfrn-container, .framer-AI579 .framer-105hrfh-container, .framer-AI579 .framer-1j18lbk-container, .framer-AI579 .framer-fl0cj0-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-AI579 .framer-o68ka9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 32px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-AI579 .framer-1l61dbh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AI579 .framer-195kaj5, .framer-AI579 .framer-5jsg8, .framer-AI579 .framer-1oz6114 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: 100%; }\",\".framer-AI579 .framer-fhtq9b, .framer-AI579 .framer-1fle318, .framer-AI579 .framer-1kub6d7, .framer-AI579 .framer-1q8vcou, .framer-AI579 .framer-161esq4, .framer-AI579 .framer-19d0t2n, .framer-AI579 .framer-1ru76j5, .framer-AI579 .framer-1lncpw4, .framer-AI579 .framer-1dh9qg8, .framer-AI579 .framer-1apyw41, .framer-AI579 .framer-gjf62b, .framer-AI579 .framer-su71iq, .framer-AI579 .framer-1nnq3z { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AI579 .framer-1w06nwn { 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: 12px; position: relative; width: 100%; }\",\".framer-AI579 .framer-87lbnn, .framer-AI579 .framer-dv4c02 { 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: 12px; position: relative; text-decoration: none; width: 100%; }\",\".framer-AI579 .framer-1bjscuc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 33px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1180px; }\",\".framer-AI579 .framer-1pexvzt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-AI579 .framer-9fpez5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 14px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AI579 .framer-da7yy6 { 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: 0px; position: relative; width: min-content; }\",\".framer-AI579.framer-v-dfzthv.framer-dw5x6o, .framer-AI579.framer-v-kgvac1.framer-dw5x6o, .framer-AI579.framer-v-1kdkkjd.framer-dw5x6o { width: 810px; }\",\".framer-AI579.framer-v-dfzthv .framer-1bjscuc, .framer-AI579.framer-v-lnv4pk .framer-1bjscuc, .framer-AI579.framer-v-kgvac1 .framer-1bjscuc, .framer-AI579.framer-v-yt4kws .framer-1bjscuc, .framer-AI579.framer-v-1kdkkjd .framer-1bjscuc, .framer-AI579.framer-v-1nhvpca .framer-1bjscuc { width: 100%; }\",\".framer-AI579.framer-v-dfzthv .framer-1pexvzt, .framer-AI579.framer-v-lnv4pk .framer-1pexvzt, .framer-AI579.framer-v-lnv4pk .framer-fl0cj0-container, .framer-AI579.framer-v-1bognnn .framer-195kaj5, .framer-AI579.framer-v-kgvac1 .framer-1pexvzt, .framer-AI579.framer-v-yt4kws .framer-1pexvzt, .framer-AI579.framer-v-1nhvpca .framer-1pexvzt, .framer-AI579.framer-v-1nhvpca .framer-fl0cj0-container { order: 0; }\",\".framer-AI579.framer-v-lnv4pk.framer-dw5x6o, .framer-AI579.framer-v-yt4kws.framer-dw5x6o, .framer-AI579.framer-v-1nhvpca.framer-dw5x6o { padding: 10px 8px 10px 8px; width: 390px; }\",\".framer-AI579.framer-v-lnv4pk .framer-da7yy6, .framer-AI579.framer-v-yt4kws .framer-da7yy6, .framer-AI579.framer-v-1nhvpca .framer-da7yy6 { gap: 8px; }\",\".framer-AI579.framer-v-lnv4pk .framer-105hrfh-container, .framer-AI579.framer-v-1bognnn .framer-1oz6114, .framer-AI579.framer-v-yt4kws .framer-105hrfh-container, .framer-AI579.framer-v-1nhvpca .framer-105hrfh-container { order: 3; }\",\".framer-AI579.framer-v-1bognnn.framer-dw5x6o { padding: 0px; width: 390px; }\",\".framer-AI579.framer-v-1bognnn .framer-1l61dbh, .framer-AI579.framer-v-1bognnn .framer-1w06nwn { order: 1; }\",\".framer-AI579.framer-v-1bognnn .framer-5jsg8, .framer-AI579.framer-v-1bognnn .framer-1ru76j5, .framer-AI579.framer-v-yt4kws .framer-1j18lbk-container { order: 2; }\",\".framer-AI579.framer-v-1bognnn .framer-87lbnn { order: 4; }\",\".framer-AI579.framer-v-1bognnn .framer-dv4c02 { order: 5; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-AI579[data-border=\"true\"]::after, .framer-AI579 [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 53\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YSZJIO34A\":{\"layout\":[\"fixed\",\"auto\"]},\"f1OSwaHLh\":{\"layout\":[\"fixed\",\"auto\"]},\"xGlGiWXQ8\":{\"layout\":[\"fixed\",\"auto\"]},\"dZf2NfwwX\":{\"layout\":[\"fixed\",\"auto\"]},\"L5ZW3CAd3\":{\"layout\":[\"fixed\",\"auto\"]},\"q9uTId052\":{\"layout\":[\"fixed\",\"auto\"]},\"fynBxWi7G\":{\"layout\":[\"fixed\",\"auto\"]},\"MbkeqK3bG\":{\"layout\":[\"fixed\",\"auto\"]},\"n0pDy043b\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerLDaoOCIMD=withCSS(Component,css,\"framer-AI579\");export default FramerLDaoOCIMD;FramerLDaoOCIMD.displayName=\"navbar\";FramerLDaoOCIMD.defaultProps={height:53,width:1200};addPropertyControls(FramerLDaoOCIMD,{variant:{options:[\"qr1nufWg3\",\"YSZJIO34A\",\"f1OSwaHLh\",\"xGlGiWXQ8\",\"dZf2NfwwX\",\"L5ZW3CAd3\",\"q9uTId052\",\"fynBxWi7G\",\"MbkeqK3bG\",\"n0pDy043b\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile - Closed\",\"Mobile - Open\",\"Desktop / Scrolled past hero\",\"Tablet / Scrolled past hero\",\"Mobile / past hero - Closed\",\"Education Page / Desktop\",\"Education Page / Tablet\",\"Education Page / Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerLDaoOCIMD,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v3/gyBhhwUxId8gMGYQMKR3pzfaWI_RruM4mJPby1QNtA.woff2\",weight:\"500\"}]},...LogoFonts,...SecondaryBtnFonts,...MenuBarFonts,...Logo2Fonts,...PrimaryBtnFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLDaoOCIMD\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YSZJIO34A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f1OSwaHLh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xGlGiWXQ8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dZf2NfwwX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L5ZW3CAd3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"q9uTId052\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fynBxWi7G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MbkeqK3bG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"n0pDy043b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"53\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LDaoOCIMD.map", "// Generated by Framer (55cf326)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Geist-600\",\"GF;Geist-900\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Geist\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v3/gyBhhwUxId8gMGYQMKR3pzfaWI_RQuQ4mJPby1QNtA.woff2\",weight:\"600\"},{family:\"Geist\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v3/gyBhhwUxId8gMGYQMKR3pzfaWI_RNeQ4mJPby1QNtA.woff2\",weight:\"900\"}]}];export const css=[\".framer-RXNT4 .framer-styles-preset-16erpct:not(.rich-text-wrapper), .framer-RXNT4 .framer-styles-preset-16erpct.rich-text-wrapper h6 { --framer-font-family: \\\"Geist\\\", \\\"Geist Placeholder\\\", sans-serif; --framer-font-family-bold: \\\"Geist\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-letter-spacing: -0.02em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-1aaac31f-fd2e-46de-a24d-acab3df6f41d, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\"];export const className=\"framer-RXNT4\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__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", "accessibilityProps", "p", "addPropertyControls", "ControlType", "SVG_Prod_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "hoverShadow", "id", "primaryBTNText", "primBTNLink", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "yBGycXNor", "ZQsxrosIH", "kK_f9VnJV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText", "css", "FramerVO65nBEGa", "withCSS", "VO65nBEGa_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "SVG", "RichText", "css", "Frameregprtq6BI", "withCSS", "egprtq6BI_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SVGFonts", "getFonts", "SVG_Prod_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", "arrowRightIcon", "height", "id", "linkOutside", "secBTNLink", "secondaryBTNText", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "CqyVlPE77", "dYE4M6nCY", "gS707cobN", "a9SzVOCJ9", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "css", "FrameryO5nGvXAw", "withCSS", "yO5nGvXAw_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "G2tQjZ6Ke", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap5m6kia", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "css", "FrameruI5BhZEO0", "withCSS", "uI5BhZEO0_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "SVG", "css", "FramerjwTla8JeI", "withCSS", "jwTla8JeI_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "SVG", "css", "FramervImBt8OQr", "withCSS", "vImBt8OQr_default", "addPropertyControls", "ControlType", "addFonts", "LogoFonts", "getFonts", "jwTla8JeI_default", "SecondaryBtnFonts", "yO5nGvXAw_default", "MenuBarFonts", "uI5BhZEO0_default", "Logo2Fonts", "vImBt8OQr_default", "PrimaryBtnFonts", "VO65nBEGa_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "G2tQjZ6Ke15znups", "args", "G2tQjZ6Ke1ueaixy", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "Link", "css", "FramerLDaoOCIMD", "withCSS", "LDaoOCIMD_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className"]
}
