{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/nmR8SmmjQmxPcjyPIydJ/GVRNDR2MKiwoBkJPqj6D/Platform_link_get_started_region.js", "ssg:https://framerusercontent.com/modules/JBdJpgU7U6uf4IvAXJcM/4bJ3OGI7R4tDoay7ur4G/W6S8SB9mq.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{forwardRef}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";export function LinkToDashboard(){return{onClick(){window.location.href=\"/dashboard/regions\";}};}const useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return /*#__PURE__*/forwardRef((props,ref)=>{return /*#__PURE__*/_jsx(Component,{ref:ref,...props,animate:{rotate:90},transition:{duration:2}});});}export function withHover(Component){return /*#__PURE__*/forwardRef((props,ref)=>{return /*#__PURE__*/_jsx(Component,{ref:ref,...props,whileHover:{scale:1.05}});});}export function withRandomColor(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{ref:ref,...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});});}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withLinkToDashboard(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...LinkToDashboard(props)});};}withLinkToDashboard.displayName=\"LinkToDashboard\";\nexport const __FramerMetadata__ = {\"exports\":{\"withLinkToDashboard\":{\"type\":\"reactHoc\",\"name\":\"withLinkToDashboard\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"LinkToDashboard\":{\"type\":\"override\",\"name\":\"LinkToDashboard\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Platform_link_get_started_region.map", "// Generated by Framer (6aebf05)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withLinkToDashboard}from\"https://framerusercontent.com/modules/nmR8SmmjQmxPcjyPIydJ/GVRNDR2MKiwoBkJPqj6D/Platform_link_get_started_region.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/xmVGJkAQ4c2ApsxsaDmn/aXWDMExJxWAKR0O4ocr2/mqB1sXfO1.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/eM7ta00Eov1NLoeLuaII/r6gPE6xozwv19uMWrvBN/WP6eAjcnm.js\";import ButtonNew,*as ButtonNewInfo from\"https://framerusercontent.com/modules/4lvPvorLhSm2UoRii2PZ/qyoJ0zqqYSVeXwLFaAjr/awXdIx_WH.js\";const ImageWithFX=withFX(Image);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const ButtonNewFonts=getFonts(ButtonNew);const ButtonNewWithLinkToDashboard1lxl3zsWithMappedReactProps15ail9y=withMappedReactProps(withCodeBoundaryForOverrides(ButtonNew,{nodeId:\"ezYlBeVNi\",override:withLinkToDashboard,scopeId:\"W6S8SB9mq\"}),ButtonNewInfo);const cycleOrder=[\"aVMKMYwsK\",\"r_ObuOm_N\",\"KEWDOHJM8\",\"EAYqtz4e5\",\"ZGLMKLXVA\"];const serializationHash=\"framer-mhADQ\";const variantClassNames={aVMKMYwsK:\"framer-v-1mlj1z\",EAYqtz4e5:\"framer-v-1bkxtz7\",KEWDOHJM8:\"framer-v-4l4lc8\",r_ObuOm_N:\"framer-v-16ggg8o\",ZGLMKLXVA:\"framer-v-4h3g9y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1e3,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.82,skewX:0,skewY:0,transformPerspective:1e3,x:0,y:30};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={damping:21,delay:.6,mass:.6,stiffness:67,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.82,skewX:0,skewY:0,x:0,y:30};const animation6={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation7={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition4={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:645,x:0,y:50};const transition5={damping:40,delay:.2,mass:1,stiffness:400,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 5\":\"ZGLMKLXVA\",Desktop:\"aVMKMYwsK\",Laptop:\"r_ObuOm_N\",Mobile:\"EAYqtz4e5\",Tablet:\"KEWDOHJM8\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"aVMKMYwsK\"};};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:\"aVMKMYwsK\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"KEWDOHJM8\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"ZGLMKLXVA\")return true;return false;};const router=useRouter();const isDisplayed2=()=>{if(baseVariant===\"KEWDOHJM8\")return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"EAYqtz4e5\")return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"r_ObuOm_N\")return false;return true;};const isDisplayed5=()=>{if(baseVariant===\"r_ObuOm_N\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1mlj1z\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"aVMKMYwsK\",ref:refBinding,style:{...style},...addPropertyOverrides({EAYqtz4e5:{\"data-framer-name\":\"Mobile\"},KEWDOHJM8:{\"data-framer-name\":\"Tablet\"},r_ObuOm_N:{\"data-framer-name\":\"Laptop\"},ZGLMKLXVA:{\"data-framer-name\":\"Variant 5\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:.3,stiffness:650,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:28,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:-110}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-qyd7da\",\"data-framer-appear-id\":\"qyd7da\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"bsGBINRrw\",optimized:true,style:{transformPerspective:1e3},children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.58,background:{alt:\"\",fit:\"fit\",pixelHeight:494,pixelWidth:69,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2r3aydMUtf21dgRfYgmjqsZDDPE.svg\"},className:\"framer-1ff3klx\",\"data-framer-name\":\"Shade Left\",layoutDependency:layoutDependency,layoutId:\"XQMR2mSvd\",style:{filter:\"blur(40px)\",opacity:.58,WebkitFilter:\"blur(40px)\"},...addPropertyOverrides({KEWDOHJM8:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||960)-573+75.2),pixelHeight:494,pixelWidth:69,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2r3aydMUtf21dgRfYgmjqsZDDPE.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,background:{alt:\"\",fit:\"fill\",pixelHeight:1068,pixelWidth:1448,positionX:\"52%\",positionY:\"0%\",src:\"https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png\",srcSet:\"https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png 1448w\"},className:\"framer-bkz2zl\",\"data-framer-appear-id\":\"bkz2zl\",\"data-framer-name\":\"Image\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"WQhm1W2uV\",optimized:true,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 3px 23px 0px rgba(0, 0, 0, 0.05)\"},...addPropertyOverrides({KEWDOHJM8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||960)-573+-1.5),pixelHeight:1068,pixelWidth:1448,positionX:\"52%\",positionY:\"0%\",sizes:\"451.6502px\",src:\"https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png\",srcSet:\"https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png 1448w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.58,background:{alt:\"\",fit:\"fit\",pixelHeight:494,pixelWidth:69,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2r3aydMUtf21dgRfYgmjqsZDDPE.svg\"},className:\"framer-gyx44w\",\"data-framer-name\":\"Shade Right\",layoutDependency:layoutDependency,layoutId:\"QsVaYinBS\",style:{filter:\"blur(40px)\",opacity:.58,rotateY:180,WebkitFilter:\"blur(40px)\"},...addPropertyOverrides({KEWDOHJM8:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||960)-573+75.2),pixelHeight:494,pixelWidth:69,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2r3aydMUtf21dgRfYgmjqsZDDPE.svg\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1v68wt4\",\"data-framer-name\":\"Blur Color\",layoutDependency:layoutDependency,layoutId:\"pvXTj5G5L\",style:{backgroundColor:\"rgb(113, 97, 239)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",filter:\"blur(350px)\",WebkitFilter:\"blur(350px)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-abnt0h\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"tv02fhFRb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v7qf4w\",\"data-framer-name\":\"Display Title+Discription\",layoutDependency:layoutDependency,layoutId:\"diR4jm_pa\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p967hc\",layoutDependency:layoutDependency,layoutId:\"Ql5bkJpKk\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{className:\"framer-styles-preset-3z8xb3\",\"data-styles-preset\":\"WP6eAjcnm\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Explore\",/*#__PURE__*/_jsx(motion.br,{}),\"Map of Life \"]})}),className:\"framer-rc8ats\",\"data-framer-name\":\"Your Gateway to Web3 & Blockchain Innovation.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TifvVsvil\",style:{\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},variants:{EAYqtz4e5:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",transformPerspective:645}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EAYqtz4e5:{__framer__enter:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:[\"Explore\",/*#__PURE__*/_jsx(motion.br,{}),\"Map of Life \"]})}),fonts:[\"FS;Poppins-medium\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1cc08nj\",\"data-styles-preset\":\"mqB1sXfO1\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-da11f794-1031-4087-8240-d1b9c10fd46b, rgb(187, 187, 221)))\"},children:\"Access comprehensive data on species and habitats worldwide.\"})}),className:\"framer-ggvk9c\",\"data-framer-name\":\"As the digital landscape continues to evolve, our mission is to empower individuals and businesses alike with decentralized solutions that revolutionize.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"r63L4t0dy\",style:{\"--extracted-1w1cjl5\":\"var(--token-da11f794-1031-4087-8240-d1b9c10fd46b, rgb(187, 187, 221))\",\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EAYqtz4e5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-da11f794-1031-4087-8240-d1b9c10fd46b, rgb(187, 187, 221)))\"},children:\"Access comprehensive data on species and habitats worldwide.\"})}),fonts:[\"FS;Poppins-medium\"]}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2n8gzr\",layoutDependency:layoutDependency,layoutId:\"GwvYOXX1d\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+((componentViewport?.height||673)*.4695393759286778-(componentViewport?.height||673)*.7281/2)+0+0+((((componentViewport?.height||673)*.7281-0)*1-0-198.6)/2+104.6+49)+0,...addPropertyOverrides({EAYqtz4e5:{y:(componentViewport?.y||0)+161+0+0+0+0+30.4+0},KEWDOHJM8:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||960)-104-(Math.max(0,((componentViewport?.height||960)-104-0)/1)*1+0))/2+0+0)+0+60+133.6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lxl3zs-container\",layoutDependency:layoutDependency,layoutId:\"ezYlBeVNi-container\",nodeId:\"ezYlBeVNi\",rendersWithMotion:true,scopeId:\"W6S8SB9mq\",children:/*#__PURE__*/_jsx(ButtonNewWithLinkToDashboard1lxl3zsWithMappedReactProps15ail9y,{height:\"100%\",id:\"ezYlBeVNi\",layoutId:\"ezYlBeVNi\",qWQ35JEj6:\"Get started\",style:{height:\"100%\"},variant:\"ojE7ob23Y\",width:\"100%\",...addPropertyOverrides({ZGLMKLXVA:{qWQ35JEj6:\"Try Now\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":AEAfDO9CA\",webPageId:\"qWjPPmXJJ\"},implicitPathVariables:undefined},{href:{hash:\":AEAfDO9CA\",webPageId:\"qWjPPmXJJ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({ZGLMKLXVA:{height:45,y:(componentViewport?.y||0)+((componentViewport?.height||673)*.4695393759286778-(componentViewport?.height||673)*.7281/2)+0+0+((((componentViewport?.height||673)*.7281-0)*1-0-198.6)/2+104.6+49)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-b0bd7k-container\",layoutDependency:layoutDependency,layoutId:\"F9H2ay7l5-container\",nodeId:\"F9H2ay7l5\",rendersWithMotion:true,scopeId:\"W6S8SB9mq\",children:/*#__PURE__*/_jsx(ButtonNew,{fzPQj5vxM:resolvedLinks[0],height:\"100%\",id:\"F9H2ay7l5\",layoutId:\"F9H2ay7l5\",qWQ35JEj6:\"Get in Touch for Advanced Features\",style:{height:\"100%\"},variant:\"QC8_QTaoN\",width:\"100%\",...addPropertyOverrides({ZGLMKLXVA:{fzPQj5vxM:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:.2,stiffness:650,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:28,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:-110}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-g0cf0h\",\"data-framer-appear-id\":\"g0cf0h\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"QsloEXX7I\",optimized:true,style:{transformPerspective:1e3},children:[isDisplayed3()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.58,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||673)*.4695393759286778-(componentViewport?.height||673)*.7281/2)+0+136.2),pixelHeight:494,pixelWidth:69,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2r3aydMUtf21dgRfYgmjqsZDDPE.svg\"},className:\"framer-1stmji1\",\"data-framer-name\":\"Shade Left\",layoutDependency:layoutDependency,layoutId:\"NzFauFoJt\",style:{filter:\"blur(40px)\",opacity:.58,WebkitFilter:\"blur(40px)\"},...addPropertyOverrides({r_ObuOm_N:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||673)*.4695393759286778-(componentViewport?.height||673)*.7281/2)+0+0),pixelHeight:494,pixelWidth:69,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2r3aydMUtf21dgRfYgmjqsZDDPE.svg\"}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||673)*.4695393759286778-(componentViewport?.height||673)*.7281/2)+0+4.052),pixelHeight:1068,pixelWidth:1448,positionX:\"52%\",positionY:\"0%\",sizes:\"902.548px\",src:\"https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png\",srcSet:\"https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png 1448w\"},className:\"framer-1ij7bgn\",\"data-framer-appear-id\":\"1ij7bgn\",\"data-framer-name\":\"Image\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"gkMPSpyCn\",optimized:true,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 3px 23px 0px rgba(0, 0, 0, 0.05)\"},...addPropertyOverrides({EAYqtz4e5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+161+0+0+166+0),pixelHeight:1068,pixelWidth:1448,positionX:\"51%\",positionY:\"0%\",sizes:`max(min(390px, ${componentViewport?.width||\"100vw\"}) * 1.0029, 1px)`,src:\"https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png\",srcSet:\"https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png 1448w\"}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.58,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||673)*.4695393759286778-(componentViewport?.height||673)*.7281/2)+0+136.2),pixelHeight:494,pixelWidth:69,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2r3aydMUtf21dgRfYgmjqsZDDPE.svg\"},className:\"framer-z6mamf\",\"data-framer-name\":\"Shade Right\",layoutDependency:layoutDependency,layoutId:\"rO3ih0HE1\",style:{filter:\"blur(40px)\",opacity:.58,rotateY:180,WebkitFilter:\"blur(40px)\"},...addPropertyOverrides({r_ObuOm_N:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||673)*.4695393759286778-(componentViewport?.height||673)*.7281/2)+0+0),pixelHeight:494,pixelWidth:69,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2r3aydMUtf21dgRfYgmjqsZDDPE.svg\"}}},baseVariant,gestureVariant)})]}),isDisplayed5()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,background:{alt:\"\",fit:\"fill\",pixelHeight:1068,pixelWidth:1448,positionX:\"52%\",positionY:\"0%\",src:\"https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png\",srcSet:\"https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png 1448w\"},className:\"framer-1j75fh7\",\"data-framer-appear-id\":\"1j75fh7\",\"data-framer-name\":\"Image\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"Ei6c8TX_y\",optimized:true,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 3px 23px 0px rgba(0, 0, 0, 0.05)\"},...addPropertyOverrides({r_ObuOm_N:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||673)*.4695393759286778-(componentViewport?.height||673)*.7281/2)+-1),pixelHeight:1068,pixelWidth:1448,positionX:\"52%\",positionY:\"0%\",sizes:`calc(${(componentViewport?.height||673)*.7281- -7} * 1.3413)`,src:\"https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png\",srcSet:\"https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7RgVILCuJQaAv6LuQOhgF5yJxZQ.png 1448w\"}}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mhADQ.framer-93spzo, .framer-mhADQ .framer-93spzo { display: block; }\",\".framer-mhADQ.framer-1mlj1z { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 673px; justify-content: center; overflow: hidden; padding: 150px 0px 80px 0px; position: relative; width: 1440px; }\",\".framer-mhADQ .framer-qyd7da { align-content: center; align-items: center; bottom: 157px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 416px; justify-content: center; left: calc(50.00000000000002% - 540px / 2); overflow: visible; padding: 0px 0px 40px 0px; position: absolute; transform-style: preserve-3d; width: 540px; z-index: 1; }\",\".framer-mhADQ .framer-1ff3klx, .framer-mhADQ .framer-gyx44w, .framer-mhADQ .framer-1stmji1, .framer-mhADQ .framer-z6mamf { flex: none; height: 60%; overflow: hidden; position: relative; width: 7%; }\",\".framer-mhADQ .framer-bkz2zl { aspect-ratio: 1.3412887828162292 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 149px); overflow: visible; position: relative; width: 84%; z-index: 1; }\",\".framer-mhADQ .framer-1v68wt4 { flex: none; height: 32%; left: calc(53.4027777777778% - 49.93055555555556% / 2); position: absolute; top: calc(100.00000000000003% - 31.50074294205052% / 2); width: 50%; z-index: 1; }\",\".framer-mhADQ .framer-abnt0h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 218px; height: 73%; justify-content: flex-start; left: 0px; max-width: 100%; overflow: visible; padding: 0px 0px 0px 120px; position: absolute; right: 0px; top: calc(46.95393759286778% - 72.80832095096582% / 2); z-index: 1; }\",\".framer-mhADQ .framer-1v7qf4w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 49px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 376px; }\",\".framer-mhADQ .framer-p967hc { align-content: flex-start; align-items: flex-start; 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: 95%; }\",\".framer-mhADQ .framer-rc8ats { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 364px; word-break: break-word; word-wrap: break-word; }\",\".framer-mhADQ .framer-ggvk9c { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 315px; word-break: break-word; word-wrap: break-word; }\",\".framer-mhADQ .framer-2n8gzr { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mhADQ .framer-1lxl3zs-container, .framer-mhADQ .framer-b0bd7k-container { flex: none; height: 45px; position: relative; width: auto; }\",\".framer-mhADQ .framer-g0cf0h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 681px; justify-content: center; overflow: visible; padding: 0px; position: relative; transform-style: preserve-3d; width: 965px; }\",\".framer-mhADQ .framer-1ij7bgn { aspect-ratio: 1.3412887828162292 / 1; flex: none; height: 99%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 903px); z-index: 1; }\",\".framer-mhADQ .framer-1j75fh7 { aspect-ratio: 1.3412887828162292 / 1; bottom: -6px; flex: none; overflow: hidden; position: absolute; right: -167px; top: -1px; width: var(--framer-aspect-ratio-supported, 667px); will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-mhADQ.framer-v-16ggg8o.framer-1mlj1z { align-content: flex-start; align-items: flex-start; justify-content: flex-start; overflow: visible; padding: 100px 0px 80px 0px; width: 1000px; }\",\".framer-mhADQ.framer-v-16ggg8o .framer-1v68wt4 { bottom: 50px; height: 32%; left: calc(54.60000000000002% - 673px / 2); order: 0; top: unset; width: 673px; }\",\".framer-mhADQ.framer-v-16ggg8o .framer-abnt0h { order: 2; padding: 0px 40px 0px 64px; }\",\".framer-mhADQ.framer-v-16ggg8o .framer-1v7qf4w { order: 1; width: 299px; }\",\".framer-mhADQ.framer-v-16ggg8o .framer-rc8ats { white-space: pre; width: auto; }\",\".framer-mhADQ.framer-v-16ggg8o .framer-g0cf0h { align-content: flex-start; align-items: flex-start; height: 95%; justify-content: flex-start; order: 2; width: 58%; }\",\".framer-mhADQ.framer-v-16ggg8o .framer-1stmji1, .framer-mhADQ.framer-v-4l4lc8 .framer-qyd7da, .framer-mhADQ.framer-v-4l4lc8 .framer-2n8gzr { order: 1; }\",\".framer-mhADQ.framer-v-16ggg8o .framer-z6mamf { height: 85%; order: 2; width: 7%; }\",\".framer-mhADQ.framer-v-16ggg8o .framer-1j75fh7 { order: 0; }\",\".framer-mhADQ.framer-v-4l4lc8.framer-1mlj1z { height: 960px; padding: 64px 0px 40px 0px; width: 768px; }\",\".framer-mhADQ.framer-v-4l4lc8 .framer-bkz2zl { height: var(--framer-aspect-ratio-supported, 336px); }\",\".framer-mhADQ.framer-v-4l4lc8 .framer-1v68wt4 { bottom: -11px; height: 242px; left: calc(49.293785310734485% - 574px / 2); order: 0; top: unset; width: 574px; }\",\".framer-mhADQ.framer-v-4l4lc8 .framer-abnt0h { flex: 1 0 0px; gap: 0px; height: 1px; left: unset; order: 2; position: relative; right: unset; top: unset; width: 708px; }\",\".framer-mhADQ.framer-v-4l4lc8 .framer-1v7qf4w { gap: 23px; height: min-content; justify-content: flex-start; order: 1; padding: 60px 0px 60px 0px; width: 79%; }\",\".framer-mhADQ.framer-v-4l4lc8 .framer-p967hc { gap: 16px; justify-content: flex-start; order: 0; }\",\".framer-mhADQ.framer-v-4l4lc8 .framer-rc8ats { order: 0; width: 100%; }\",\".framer-mhADQ.framer-v-4l4lc8 .framer-ggvk9c { order: 1; width: 100%; }\",\".framer-mhADQ.framer-v-1bkxtz7.framer-1mlj1z { height: min-content; justify-content: flex-start; padding: 161px 24px 161px 24px; width: 390px; }\",\".framer-mhADQ.framer-v-1bkxtz7 .framer-1v68wt4 { height: 294px; left: calc(50.00000000000002% - 347px / 2); order: 1; top: 136px; width: 347px; }\",\".framer-mhADQ.framer-v-1bkxtz7 .framer-abnt0h { flex-direction: column; gap: 166px; height: min-content; left: unset; order: 2; padding: 0px; position: relative; right: unset; top: unset; width: 390px; }\",\".framer-mhADQ.framer-v-1bkxtz7 .framer-1v7qf4w { flex: 1 0 0px; gap: 32px; height: 1px; width: 100%; }\",\".framer-mhADQ.framer-v-1bkxtz7 .framer-rc8ats { width: 100%; }\",\".framer-mhADQ.framer-v-1bkxtz7 .framer-ggvk9c { width: 77%; }\",\".framer-mhADQ.framer-v-1bkxtz7 .framer-g0cf0h { height: min-content; width: 100%; }\",\".framer-mhADQ.framer-v-1bkxtz7 .framer-1ij7bgn { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 256px); width: 1px; }\",\".framer-mhADQ.framer-v-4h3g9y .framer-1v7qf4w { width: 34%; }\",\".framer-mhADQ.framer-v-4h3g9y .framer-p967hc { width: 358px; }\",\".framer-mhADQ.framer-v-4h3g9y .framer-2n8gzr { justify-content: center; width: min-content; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 673\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"r_ObuOm_N\":{\"layout\":[\"fixed\",\"fixed\"]},\"KEWDOHJM8\":{\"layout\":[\"fixed\",\"fixed\"]},\"EAYqtz4e5\":{\"layout\":[\"fixed\",\"auto\"]},\"ZGLMKLXVA\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerW6S8SB9mq=withCSS(Component,css,\"framer-mhADQ\");export default FramerW6S8SB9mq;FramerW6S8SB9mq.displayName=\"CTA  4\";FramerW6S8SB9mq.defaultProps={height:673,width:1440};addPropertyControls(FramerW6S8SB9mq,{variant:{options:[\"aVMKMYwsK\",\"r_ObuOm_N\",\"KEWDOHJM8\",\"EAYqtz4e5\",\"ZGLMKLXVA\"],optionTitles:[\"Desktop\",\"Laptop\",\"Tablet\",\"Mobile\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerW6S8SB9mq,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K4RHKGAGLQZBXEZQT2O2AGSLKJF2E4YC/JRUTXNFPWLFGIEVSSEYOW7EP7TYM3V6A/UCDYLFFGLZRGCFY5GYDYM5LDB52BAR5M.woff2\",weight:\"500\"}]},...ButtonNewFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW6S8SB9mq\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"673\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"r_ObuOm_N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KEWDOHJM8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EAYqtz4e5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZGLMKLXVA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W6S8SB9mq.map"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "LinkToDashboard", "window", "useStore", "createStore", "withLinkToDashboard", "C", "props", "re", "DataObserverContext", "p", "LinkToDashboard", "ImageWithFX", "withFX", "Image2", "ImageWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "MotionDivWithFXWithOptimizedAppearEffect", "motion", "MotionDivWithFX", "RichTextWithFX", "RichText", "ButtonNewFonts", "getFonts", "awXdIx_WH_default", "ButtonNewWithLinkToDashboard1lxl3zsWithMappedReactProps15ail9y", "withMappedReactProps", "withCodeBoundaryForOverrides", "withLinkToDashboard", "awXdIx_WH_exports", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "animation3", "transition3", "animation4", "animation5", "animation6", "animation7", "animation8", "transition4", "animation9", "transition5", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "LayoutGroup", "u", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "css", "FramerW6S8SB9mq", "withCSS", "W6S8SB9mq_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
