{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/ANYzC6oeZBQAIojjstct/CWRoCpJsl9HvXux694DF/Aa6aFLA5U.js", "ssg:https://framerusercontent.com/modules/ih2G62HdMCm0Phr3GqaR/Rr5PuM2zAWrrgLJZvwXA/HpI4qthM6.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})},index+\"-original\");});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:isLayerTooBig===true?\"auto\":\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsWaapi){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/q0MlUMW4ntpkYbiWujBh/hc1J9qPJaQMPQWbqTzMH/MGZphnYHX.js\";import ButtonRunningStroke from\"https://framerusercontent.com/modules/ih2G62HdMCm0Phr3GqaR/Rr5PuM2zAWrrgLJZvwXA/HpI4qthM6.js\";import NavbarItemTextLinkMenu from\"https://framerusercontent.com/modules/jEjZlQsJkYomA1527JTZ/Bf1a8s1WJQJueMQvJay5/wIrD0oued.js\";const FeatherFonts=getFonts(Feather);const MotionDivWithFX=withFX(motion.div);const NavbarItemTextLinkMenuFonts=getFonts(NavbarItemTextLinkMenu);const ButtonRunningStrokeFonts=getFonts(ButtonRunningStroke);const cycleOrder=[\"oK3wc7phb\",\"FbKeNhVe4\",\"jtB_YTNDa\",\"ChykpOtFU\",\"Nm2_2nBFn\"];const serializationHash=\"framer-z6m5i\";const variantClassNames={ChykpOtFU:\"framer-v-13u1n5o\",FbKeNhVe4:\"framer-v-1xpnjvo\",jtB_YTNDa:\"framer-v-1xtldv\",Nm2_2nBFn:\"framer-v-139c77t\",oK3wc7phb:\"framer-v-16uxfsh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone Open\":\"ChykpOtFU\",Desktop:\"oK3wc7phb\",Phone:\"jtB_YTNDa\",Tablet:\"FbKeNhVe4\",Variant:\"Nm2_2nBFn\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"oK3wc7phb\"};};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:\"oK3wc7phb\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapl9qnvc=activeVariantCallback(async(...args)=>{setVariant(\"jtB_YTNDa\");});const onTap4eln2r=activeVariantCallback(async(...args)=>{setVariant(\"ChykpOtFU\");});const onMouseEntertxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"jtB_YTNDa\",\"ChykpOtFU\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"ChykpOtFU\")return true;return false;};const isDisplayed2=()=>{if([\"jtB_YTNDa\",\"Nm2_2nBFn\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"FbKeNhVe4\")return false;return true;};const ref1=React.useRef(null);const ref2=React.useRef(null);const isDisplayed4=()=>{if(baseVariant===\"jtB_YTNDa\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-16uxfsh\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"oK3wc7phb\",ref:refBinding,style:{background:'linear-gradient(180deg, var(--token-4d6fb0aa-347b-4d07-918a-f12b70b08ad3, rgb(33, 33, 33)) /* {\"name\":\"Dark/300\"} */ 0%, rgba(33, 33, 33, 0.4) 100%)',borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,...style},variants:{ChykpOtFU:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}},...addPropertyOverrides({ChykpOtFU:{\"data-framer-name\":\"Phone Open\"},FbKeNhVe4:{\"data-framer-name\":\"Tablet\"},jtB_YTNDa:{\"data-framer-name\":\"Phone\"},Nm2_2nBFn:{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8sfp7r\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"jRbe0H1XV\",style:{backgroundColor:\"var(--token-c311f7eb-2396-4f7f-8edd-f790b3c42ec3, rgb(5, 5, 5))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},variants:{ChykpOtFU:{borderBottomLeftRadius:23,borderBottomRightRadius:23,borderTopLeftRadius:23,borderTopRightRadius:23}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6vrb0m\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"xD69Du7El\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e9pozt\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"YHlr30vOv\",...addPropertyOverrides({ChykpOtFU:{\"data-highlight\":true,onTap:onTapl9qnvc}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.bunnyshell.com\",motionChild:true,nodeId:\"akWhZnTqS\",openInNewTab:false,scopeId:\"Aa6aFLA5U\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1chpb8b framer-o6ss55\",\"data-framer-name\":\"bunnyshell_logo_new_white_5902af8a24dbac215955316f42dda317\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"akWhZnTqS\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 165 31\"><path d=\"M 29.281 2.796 C 30.126 3.132 30.498 4.109 30.16 4.917 C 29.905 5.53 29.305 5.929 28.64 5.927 C 28.437 5.927 28.2 5.893 27.998 5.792 C 23.91 4.075 19.551 3.233 15.125 3.233 C 14.213 3.233 13.503 2.493 13.503 1.617 C 13.503 0.742 14.247 0.001 15.125 0.001 C 20.024 -0.033 24.788 0.91 29.281 2.796 Z M 29.282 9.328 C 30.126 9.664 30.498 10.641 30.16 11.449 C 29.905 12.062 29.305 12.461 28.64 12.459 C 28.437 12.459 28.2 12.426 27.998 12.325 C 23.91 10.607 19.585 9.765 15.125 9.765 C 10.631 9.765 6.307 10.607 2.253 12.291 C 1.408 12.628 0.462 12.257 0.124 11.415 C -0.214 10.574 0.158 9.631 1.003 9.294 C 5.462 7.442 10.192 6.499 15.125 6.499 C 20.024 6.499 24.788 7.442 29.282 9.328 Z M 22.964 13.874 C 23.842 14.076 24.416 14.918 24.214 15.793 C 24.011 16.669 23.166 17.241 22.288 17.039 C 19.889 16.534 17.49 16.265 15.159 16.265 C 10.665 16.265 6.341 17.106 2.287 18.824 C 2.084 18.891 1.881 18.959 1.644 18.959 C 0.979 18.96 0.379 18.561 0.124 17.948 C -0.214 17.107 0.158 16.164 1.003 15.827 C 5.462 13.975 10.192 13.032 15.125 13.032 C 17.727 13.032 20.362 13.302 22.964 13.874 Z M 15.159 19.531 C 16.071 19.531 16.781 20.271 16.781 21.147 C 16.781 22.022 16.037 22.763 15.159 22.763 C 10.665 22.763 6.341 23.605 2.287 25.322 C 2.084 25.39 1.881 25.457 1.644 25.457 C 0.979 25.458 0.379 25.059 0.124 24.447 C -0.214 23.605 0.158 22.662 1.003 22.325 C 5.496 20.474 10.226 19.531 15.159 19.531 Z\" fill=\"var(--token-70aac566-01ef-4793-b172-f614e217462f, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Neutral/0&quot;} */\"></path><path d=\"M 44.862 25.856 L 44.862 24.619 C 46.139 25.987 46.855 26.162 48.592 26.162 C 52.168 26.162 54.518 23.336 54.518 19.543 C 54.518 15.826 52.398 13 48.719 13 C 46.855 13 45.475 13.815 44.913 14.706 L 44.913 7.425 L 41.567 7.425 L 41.567 25.856 Z M 51.461 19.623 C 51.461 21.914 49.741 23.132 48.004 23.132 C 46.293 23.132 44.543 21.889 44.543 19.623 C 44.543 17.332 46.293 16.029 48.004 16.029 C 49.741 16.029 51.461 17.332 51.461 19.623 Z M 65.127 25.856 L 68.371 25.856 C 68.32 25.423 68.243 24.558 68.243 23.59 L 68.243 13.331 L 64.846 13.331 L 64.846 20.612 C 64.846 22.063 63.978 23.081 62.471 23.081 C 60.887 23.081 60.172 21.961 60.172 20.561 L 60.172 13.331 L 56.774 13.331 L 56.774 21.248 C 56.774 23.972 58.511 26.187 61.551 26.187 C 62.879 26.187 64.335 25.678 65.025 24.507 C 65.025 25.016 65.076 25.601 65.127 25.856 Z M 75.011 18.652 C 75.011 17.2 75.879 16.055 77.361 16.055 C 78.995 16.055 79.685 17.15 79.685 18.55 L 79.685 25.856 L 83.083 25.856 L 83.083 17.964 C 83.083 15.215 80.729 13.331 78.601 13.259 C 77.832 13.233 76.061 13 75.011 14.088 L 75.011 13.331 L 71.614 13.331 L 71.614 25.856 L 75.011 25.856 L 75.011 18.652 Z M 113.502 22.368 C 113.656 23.794 114.958 26.238 118.739 26.238 C 122.034 26.238 123.618 24.15 123.618 22.114 C 123.618 20.281 122.366 18.779 119.888 18.27 L 118.1 17.888 C 117.41 17.761 116.951 17.379 116.951 16.768 C 116.951 16.055 117.666 15.52 118.56 15.52 C 119.99 15.52 120.527 16.462 120.629 17.2 L 123.464 16.564 C 123.311 15.215 122.111 12.949 118.534 12.949 C 115.827 12.949 113.834 14.808 113.834 17.048 C 113.834 18.804 114.933 20.255 117.359 20.79 L 119.02 21.172 C 119.99 21.376 120.374 21.834 120.374 22.394 C 120.374 23.056 119.837 23.641 118.713 23.641 C 117.232 23.641 116.491 22.725 116.414 21.732 Z M 129.491 18.499 C 129.567 17.124 130.41 16.055 131.841 16.055 C 133.476 16.055 134.165 17.15 134.165 18.55 L 134.165 25.856 L 137.563 25.856 L 137.563 17.964 C 137.563 15.215 136.081 13 132.888 13 C 131.688 13 130.308 13.407 129.491 14.375 L 129.491 7.425 L 126.094 7.425 L 126.094 25.856 L 129.491 25.856 L 129.491 18.499 Z M 143.233 18.168 C 143.309 17.022 144.28 15.699 146.043 15.699 C 147.984 15.699 148.801 16.92 148.852 18.168 Z M 149.184 21.427 C 148.776 22.547 147.907 23.336 146.323 23.336 C 144.638 23.336 143.233 22.139 143.156 20.485 L 152.147 20.485 C 152.147 20.434 152.198 19.925 152.198 19.441 C 152.198 15.418 149.874 12.949 145.991 12.949 C 142.773 12.949 139.81 15.546 139.81 19.543 C 139.81 23.769 142.85 26.238 146.298 26.238 C 149.389 26.238 151.381 24.43 152.02 22.267 Z M 158.016 25.856 L 158.016 7.425 L 154.618 7.425 L 154.618 25.856 Z M 164.794 25.856 L 164.794 7.425 L 161.397 7.425 L 161.397 25.856 Z M 105.054 30.795 L 116.414 7.425 L 112.658 7.425 L 101.453 30.795 Z M 102.364 13 L 98.558 13 L 100.951 18.592 L 102.148 21.388 L 102.746 22.786 L 104.874 18.499 L 104.037 16.666 L 103.201 14.833 Z M 89.636 18.652 C 89.636 17.2 90.505 16.055 91.986 16.055 C 93.621 16.055 94.311 17.15 94.311 18.55 L 94.311 25.856 L 97.708 25.856 L 97.708 17.964 C 97.708 15.215 95.355 13.331 93.226 13.259 C 92.458 13.233 90.687 13 89.636 14.088 L 89.636 13.331 L 86.239 13.331 L 86.239 25.856 L 89.636 25.856 L 89.636 18.652 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 44.862 25.856 L 44.862 24.619 C 46.139 25.987 46.855 26.162 48.592 26.162 C 52.168 26.162 54.518 23.336 54.518 19.543 C 54.518 15.826 52.398 13 48.719 13 C 46.855 13 45.475 13.815 44.913 14.706 L 44.913 7.425 L 41.567 7.425 L 41.567 25.856 Z M 51.461 19.623 C 51.461 21.914 49.741 23.132 48.004 23.132 C 46.293 23.132 44.543 21.889 44.543 19.623 C 44.543 17.332 46.293 16.029 48.004 16.029 C 49.741 16.029 51.461 17.332 51.461 19.623 Z M 65.127 25.856 L 68.371 25.856 C 68.32 25.423 68.243 24.558 68.243 23.59 L 68.243 13.331 L 64.846 13.331 L 64.846 20.612 C 64.846 22.063 63.978 23.081 62.471 23.081 C 60.887 23.081 60.172 21.961 60.172 20.561 L 60.172 13.331 L 56.774 13.331 L 56.774 21.248 C 56.774 23.972 58.511 26.187 61.551 26.187 C 62.879 26.187 64.335 25.678 65.025 24.507 C 65.025 25.016 65.076 25.601 65.127 25.856 Z M 75.011 18.652 C 75.011 17.2 75.879 16.055 77.361 16.055 C 78.995 16.055 79.685 17.15 79.685 18.55 L 79.685 25.856 L 83.083 25.856 L 83.083 17.964 C 83.083 15.215 80.729 13.331 78.601 13.259 C 77.832 13.233 76.061 13 75.011 14.088 L 75.011 13.331 L 71.614 13.331 L 71.614 25.856 L 75.011 25.856 L 75.011 18.652 Z M 113.502 22.368 C 113.656 23.794 114.958 26.238 118.739 26.238 C 122.034 26.238 123.618 24.15 123.618 22.114 C 123.618 20.281 122.366 18.779 119.888 18.27 L 118.1 17.888 C 117.41 17.761 116.951 17.379 116.951 16.768 C 116.951 16.055 117.666 15.52 118.56 15.52 C 119.99 15.52 120.527 16.462 120.629 17.2 L 123.464 16.564 C 123.311 15.215 122.111 12.949 118.534 12.949 C 115.827 12.949 113.834 14.808 113.834 17.048 C 113.834 18.804 114.933 20.255 117.359 20.79 L 119.02 21.172 C 119.99 21.376 120.374 21.834 120.374 22.394 C 120.374 23.056 119.837 23.641 118.713 23.641 C 117.232 23.641 116.491 22.725 116.414 21.732 Z M 129.491 18.499 C 129.567 17.124 130.41 16.055 131.841 16.055 C 133.476 16.055 134.165 17.15 134.165 18.55 L 134.165 25.856 L 137.563 25.856 L 137.563 17.964 C 137.563 15.215 136.081 13 132.888 13 C 131.688 13 130.308 13.407 129.491 14.375 L 129.491 7.425 L 126.094 7.425 L 126.094 25.856 L 129.491 25.856 L 129.491 18.499 Z M 143.233 18.168 C 143.309 17.022 144.28 15.699 146.043 15.699 C 147.984 15.699 148.801 16.92 148.852 18.168 Z M 149.184 21.427 C 148.776 22.547 147.907 23.336 146.323 23.336 C 144.638 23.336 143.233 22.139 143.156 20.485 L 152.147 20.485 C 152.147 20.434 152.198 19.925 152.198 19.441 C 152.198 15.418 149.874 12.949 145.991 12.949 C 142.773 12.949 139.81 15.546 139.81 19.543 C 139.81 23.769 142.85 26.238 146.298 26.238 C 149.389 26.238 151.381 24.43 152.02 22.267 Z M 158.016 25.856 L 158.016 7.425 L 154.618 7.425 L 154.618 25.856 Z M 164.794 25.856 L 164.794 7.425 L 161.397 7.425 L 161.397 25.856 Z M 105.054 30.795 L 116.414 7.425 L 112.658 7.425 L 101.453 30.795 Z M 102.364 13 L 98.558 13 L 100.951 18.592 L 102.148 21.388 L 102.746 22.786 L 104.874 18.499 L 104.037 16.666 L 103.201 14.833 Z M 89.636 18.652 C 89.636 17.2 90.505 16.055 91.986 16.055 C 93.621 16.055 94.311 17.15 94.311 18.55 L 94.311 25.856 L 97.708 25.856 L 97.708 17.964 C 97.708 15.215 95.355 13.331 93.226 13.259 C 92.458 13.233 90.687 13 89.636 14.088 L 89.636 13.331 L 86.239 13.331 L 86.239 25.856 L 89.636 25.856 L 89.636 18.652 Z\" fill=\"var(--token-70aac566-01ef-4793-b172-f614e217462f, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Neutral/0&quot;} */\"></path></svg>',svgContentId:9221494210,withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f565dv\",\"data-framer-name\":\"Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"nlo_imCK3\",onTap:onTap4eln2r,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-m9k11r\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"MYLuR5iDK\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{ChykpOtFU:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-309utn\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"mO934Nal4\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{ChykpOtFU:{rotate:45}}})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fzy6q9\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"m8eakEUQp\",style:{background:'linear-gradient(90deg, rgba(61, 61, 61, 0) 0%, var(--token-4d6fb0aa-347b-4d07-918a-f12b70b08ad3, rgb(33, 33, 33)) /* {\"name\":\"Dark/300\"} */ 25%, var(--token-4d6fb0aa-347b-4d07-918a-f12b70b08ad3, rgb(33, 33, 33)) /* {\"name\":\"Dark/300\"} */ 75%, rgba(0, 80, 138, 0) 100%)'}})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zm3fw4\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"A9wOk1k61\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-180noy4\",\"data-styles-preset\":\"SdN8D7okU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-70aac566-01ef-4793-b172-f614e217462f, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TPoouOqix\"},motionChild:true,nodeId:\"J7xtR1deG\",openInNewTab:false,scopeId:\"Aa6aFLA5U\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-xfwwyj\",\"data-styles-preset\":\"MGZphnYHX\",children:\"Pricing\"})})})}),className:\"framer-1njec72\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"J7xtR1deG\",style:{\"--extracted-r6o4lv\":\"var(--token-70aac566-01ef-4793-b172-f614e217462f, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-180noy4\",\"data-styles-preset\":\"SdN8D7okU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-70aac566-01ef-4793-b172-f614e217462f, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.bunnyshell.com/blog/\",motionChild:true,nodeId:\"XXruA7Ia0\",openInNewTab:false,scopeId:\"Aa6aFLA5U\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-xfwwyj\",\"data-styles-preset\":\"MGZphnYHX\",children:\"Blog\"})})})}),className:\"framer-59da0g\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XXruA7Ia0\",style:{\"--extracted-r6o4lv\":\"var(--token-70aac566-01ef-4793-b172-f614e217462f, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-180noy4\",\"data-styles-preset\":\"SdN8D7okU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-70aac566-01ef-4793-b172-f614e217462f, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.bunnyshell.com/templates/\",motionChild:true,nodeId:\"Iocyglbjf\",openInNewTab:false,scopeId:\"Aa6aFLA5U\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-xfwwyj\",\"data-styles-preset\":\"MGZphnYHX\",children:\"Templates\"})})})}),className:\"framer-1blcc3c\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Iocyglbjf\",style:{\"--extracted-r6o4lv\":\"var(--token-70aac566-01ef-4793-b172-f614e217462f, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1agl9qa\",\"data-framer-name\":\"Button/Button\",\"data-highlight\":true,id:`${layoutId}-1agl9qa`,layoutDependency:layoutDependency,layoutId:\"IBswFWDu5\",onMouseEnter:onMouseEntertxyyif({overlay}),ref:ref1,style:{background:'radial-gradient(50% 50% at 50% 50%, var(--token-065bb33d-7292-4233-a4eb-34ed6e0e0150, rgba(17, 17, 17, 0)) /* {\"name\":\"Transparent\"} */ 0%, var(--token-065bb33d-7292-4233-a4eb-34ed6e0e0150, rgba(17, 17, 17, 0)) /* {\"name\":\"Transparent\"} */ 100%)',borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-180noy4\",\"data-styles-preset\":\"SdN8D7okU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-70aac566-01ef-4793-b172-f614e217462f, rgb(255, 255, 255)))\"},children:\"Developers\"})}),className:\"framer-uofmhd\",\"data-framer-name\":\"Pages\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"njcZJgOCk\",style:{\"--extracted-r6o4lv\":\"var(--token-70aac566-01ef-4793-b172-f614e217462f, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g2ansa\",\"data-framer-name\":\"Icon Flip\",layoutDependency:layoutDependency,layoutId:\"cPIpaxBEI\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1s70c8o-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rlIhGcEgr-container\",nodeId:\"rlIhGcEgr\",rendersWithMotion:true,scopeId:\"Aa6aFLA5U\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-70aac566-01ef-4793-b172-f614e217462f, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"chevron-down\",id:\"rlIhGcEgr\",layoutId:\"rlIhGcEgr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18i6a0m-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EY2zAD8Jc-container\",nodeId:\"EY2zAD8Jc\",rendersWithMotion:true,scopeId:\"Aa6aFLA5U\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-70aac566-01ef-4793-b172-f614e217462f, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"chevron-down\",id:\"EY2zAD8Jc\",layoutId:\"EY2zAD8Jc\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:0,\"data-framer-portal-id\":`${layoutId}-1agl9qa`,offsetX:-28,offsetY:32,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1w5dxxq\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"UAJWg_Jof\",ref:ref2,role:\"dialog\",style:{background:'linear-gradient(180deg, var(--token-732f0c12-a153-4d05-a230-fb1517b34513, rgb(38, 38, 38)) /* {\"name\":\"Dark/300\"} */ 0%, rgba(33, 33, 33, 0.4) 100%)',borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17a4np5\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"l9UyD39UD\",style:{backgroundColor:\"var(--token-9549fd32-e096-4487-9975-7db098967369, rgb(5, 5, 5))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-180noy4\",\"data-styles-preset\":\"SdN8D7okU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-70aac566-01ef-4793-b172-f614e217462f, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://documentation.bunnyshell.com/docs/how-bunnyshell-works\",motionChild:true,nodeId:\"R5adD0A4d\",openInNewTab:true,scopeId:\"Aa6aFLA5U\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-xfwwyj\",\"data-styles-preset\":\"MGZphnYHX\",children:\"Documentation\"})})})}),className:\"framer-vyxcef\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"R5adD0A4d\",style:{\"--extracted-r6o4lv\":\"var(--token-70aac566-01ef-4793-b172-f614e217462f, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-180noy4\",\"data-styles-preset\":\"SdN8D7okU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-70aac566-01ef-4793-b172-f614e217462f, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://documentation.bunnyshell.com/docs/how-bunnyshell-works\",motionChild:true,nodeId:\"Zoq2qv_Ui\",openInNewTab:true,scopeId:\"Aa6aFLA5U\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-xfwwyj\",\"data-styles-preset\":\"MGZphnYHX\",children:\"How it works\"})})})}),className:\"framer-m4ah1c\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Zoq2qv_Ui\",style:{\"--extracted-r6o4lv\":\"var(--token-70aac566-01ef-4793-b172-f614e217462f, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-180noy4\",\"data-styles-preset\":\"SdN8D7okU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-70aac566-01ef-4793-b172-f614e217462f, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/playlist?list=PLZehJJ9s5mC73noi_Fry0GUBSOCN8ssps\",motionChild:true,nodeId:\"QIeGeVMuk\",openInNewTab:true,scopeId:\"Aa6aFLA5U\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-xfwwyj\",\"data-styles-preset\":\"MGZphnYHX\",children:\"Video Tutorials\"})})})}),className:\"framer-10z2wvw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QIeGeVMuk\",style:{\"--extracted-r6o4lv\":\"var(--token-70aac566-01ef-4793-b172-f614e217462f, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})]})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cohl6d-container\",layoutDependency:layoutDependency,layoutId:\"Cgrb4JP_N-container\",nodeId:\"Cgrb4JP_N\",rendersWithMotion:true,scopeId:\"Aa6aFLA5U\",children:/*#__PURE__*/_jsx(NavbarItemTextLinkMenu,{dsIlKX9du:\"Log In\",height:\"100%\",id:\"Cgrb4JP_N\",jy_ZvG6BT:true,layoutId:\"Cgrb4JP_N\",QeQwYLL9t:\"https://environments.bunnyshell.com/login\",variant:\"JrQAyBJIl\",width:\"100%\",zdSaNARwG:false})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,y:(componentViewport?.y||0)+(1+((componentViewport?.height||66)-2-64)/2)+13,...addPropertyOverrides({ChykpOtFU:{y:(componentViewport?.y||0)+1+0+8+297.6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1r96g4c-container\",layoutDependency:layoutDependency,layoutId:\"eHnyxgnEr-container\",nodeId:\"eHnyxgnEr\",rendersWithMotion:true,scopeId:\"Aa6aFLA5U\",children:/*#__PURE__*/_jsx(ButtonRunningStroke,{GS3bSUXSK:\"https://environments.bunnyshell.com/register/\",height:\"100%\",id:\"eHnyxgnEr\",layoutId:\"eHnyxgnEr\",ofLqZhEO8:\"Try it for FREE\",variant:\"mkPMpWLtq\",width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-z6m5i.framer-o6ss55, .framer-z6m5i .framer-o6ss55 { display: block; }\",\".framer-z6m5i.framer-16uxfsh { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 1px; position: relative; width: 1100px; will-change: var(--framer-will-change-override, transform); }\",\".framer-z6m5i .framer-8sfp7r { 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: 13px 46px 13px 46px; position: relative; width: 1px; }\",\".framer-z6m5i .framer-6vrb0m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-z6m5i .framer-e9pozt { 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: 0px; position: relative; width: min-content; }\",\".framer-z6m5i .framer-1chpb8b { flex: none; height: 31px; position: relative; text-decoration: none; width: 165px; }\",\".framer-z6m5i .framer-1f565dv { cursor: pointer; flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-z6m5i .framer-m9k11r { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-z6m5i .framer-309utn { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-z6m5i .framer-1fzy6q9 { flex: none; height: 1px; overflow: hidden; position: relative; width: 254px; }\",\".framer-z6m5i .framer-zm3fw4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-z6m5i .framer-1njec72, .framer-z6m5i .framer-59da0g, .framer-z6m5i .framer-1blcc3c, .framer-z6m5i .framer-vyxcef, .framer-z6m5i .framer-m4ah1c, .framer-z6m5i .framer-10z2wvw { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-z6m5i .framer-1agl9qa { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-z6m5i .framer-uofmhd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-z6m5i .framer-1g2ansa { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 20px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 20px; }\",\".framer-z6m5i .framer-1s70c8o-container { flex: none; height: 20px; position: absolute; right: 0px; top: 0px; width: 20px; }\",\".framer-z6m5i .framer-18i6a0m-container { bottom: -24px; flex: none; height: 20px; left: -24px; position: absolute; width: 20px; }\",\".framer-z6m5i .framer-1w5dxxq { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 1px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-z6m5i .framer-17a4np5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; min-width: 230px; overflow: visible; padding: 28px; position: relative; width: min-content; }\",\".framer-z6m5i .framer-cohl6d-container, .framer-z6m5i .framer-1r96g4c-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-z6m5i.framer-16uxfsh, .framer-z6m5i .framer-6vrb0m, .framer-z6m5i .framer-e9pozt, .framer-z6m5i .framer-zm3fw4, .framer-z6m5i .framer-1agl9qa, .framer-z6m5i .framer-1g2ansa, .framer-z6m5i .framer-1w5dxxq, .framer-z6m5i .framer-17a4np5 { gap: 0px; } .framer-z6m5i.framer-16uxfsh > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-z6m5i.framer-16uxfsh > :first-child, .framer-z6m5i .framer-e9pozt > :first-child, .framer-z6m5i .framer-zm3fw4 > :first-child, .framer-z6m5i .framer-1agl9qa > :first-child { margin-left: 0px; } .framer-z6m5i.framer-16uxfsh > :last-child, .framer-z6m5i .framer-e9pozt > :last-child, .framer-z6m5i .framer-zm3fw4 > :last-child, .framer-z6m5i .framer-1agl9qa > :last-child { margin-right: 0px; } .framer-z6m5i .framer-6vrb0m > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-z6m5i .framer-6vrb0m > :first-child, .framer-z6m5i .framer-1g2ansa > :first-child, .framer-z6m5i .framer-1w5dxxq > :first-child, .framer-z6m5i .framer-17a4np5 > :first-child { margin-top: 0px; } .framer-z6m5i .framer-6vrb0m > :last-child, .framer-z6m5i .framer-1g2ansa > :last-child, .framer-z6m5i .framer-1w5dxxq > :last-child, .framer-z6m5i .framer-17a4np5 > :last-child { margin-bottom: 0px; } .framer-z6m5i .framer-e9pozt > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-z6m5i .framer-zm3fw4 > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-z6m5i .framer-1agl9qa > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-z6m5i .framer-1g2ansa > *, .framer-z6m5i .framer-1w5dxxq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-z6m5i .framer-17a4np5 > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } }\",\".framer-z6m5i.framer-v-1xpnjvo .framer-8sfp7r { padding: 13px 30px 13px 30px; }\",\".framer-z6m5i.framer-v-1xtldv.framer-16uxfsh { flex-direction: column; gap: 0px; width: 390px; }\",\".framer-z6m5i.framer-v-1xtldv .framer-8sfp7r { flex: none; padding: 8px 30px 8px 30px; width: 100%; }\",\".framer-z6m5i.framer-v-1xtldv .framer-6vrb0m { flex: 1 0 0px; width: 1px; }\",\".framer-z6m5i.framer-v-1xtldv .framer-e9pozt { gap: unset; justify-content: space-between; width: 100%; }\",\".framer-z6m5i.framer-v-1xtldv .framer-m9k11r, .framer-z6m5i.framer-v-1xtldv .framer-309utn { left: calc(65.00000000000003% - 20px / 2); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-z6m5i.framer-v-1xtldv.framer-16uxfsh, .framer-z6m5i.framer-v-1xtldv .framer-e9pozt { gap: 0px; } .framer-z6m5i.framer-v-1xtldv.framer-16uxfsh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-z6m5i.framer-v-1xtldv.framer-16uxfsh > :first-child { margin-top: 0px; } .framer-z6m5i.framer-v-1xtldv.framer-16uxfsh > :last-child { margin-bottom: 0px; } .framer-z6m5i.framer-v-1xtldv .framer-e9pozt > *, .framer-z6m5i.framer-v-1xtldv .framer-e9pozt > :first-child, .framer-z6m5i.framer-v-1xtldv .framer-e9pozt > :last-child { margin: 0px; } }\",\".framer-z6m5i.framer-v-13u1n5o.framer-16uxfsh { flex-direction: column; gap: 0px; max-height: calc(var(--framer-viewport-height, 100vh) * 1); width: 390px; }\",\".framer-z6m5i.framer-v-13u1n5o .framer-8sfp7r { flex: none; flex-direction: column; gap: 32px; justify-content: flex-start; padding: 8px 30px 40px 30px; width: 100%; }\",\".framer-z6m5i.framer-v-13u1n5o .framer-6vrb0m { gap: 12px; order: 0; width: 100%; }\",\".framer-z6m5i.framer-v-13u1n5o .framer-e9pozt { cursor: pointer; gap: unset; justify-content: space-between; width: 100%; }\",\".framer-z6m5i.framer-v-13u1n5o .framer-m9k11r, .framer-z6m5i.framer-v-13u1n5o .framer-309utn { left: calc(63.636363636363654% - 20px / 2); top: calc(50.00000000000002% - 2px / 2); }\",\".framer-z6m5i.framer-v-13u1n5o .framer-zm3fw4 { flex-direction: column; order: 1; }\",\".framer-z6m5i.framer-v-13u1n5o .framer-cohl6d-container { order: 2; }\",\".framer-z6m5i.framer-v-13u1n5o .framer-1r96g4c-container { order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-z6m5i.framer-v-13u1n5o.framer-16uxfsh, .framer-z6m5i.framer-v-13u1n5o .framer-8sfp7r, .framer-z6m5i.framer-v-13u1n5o .framer-6vrb0m, .framer-z6m5i.framer-v-13u1n5o .framer-e9pozt, .framer-z6m5i.framer-v-13u1n5o .framer-zm3fw4 { gap: 0px; } .framer-z6m5i.framer-v-13u1n5o.framer-16uxfsh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-z6m5i.framer-v-13u1n5o.framer-16uxfsh > :first-child, .framer-z6m5i.framer-v-13u1n5o .framer-8sfp7r > :first-child, .framer-z6m5i.framer-v-13u1n5o .framer-6vrb0m > :first-child, .framer-z6m5i.framer-v-13u1n5o .framer-zm3fw4 > :first-child { margin-top: 0px; } .framer-z6m5i.framer-v-13u1n5o.framer-16uxfsh > :last-child, .framer-z6m5i.framer-v-13u1n5o .framer-8sfp7r > :last-child, .framer-z6m5i.framer-v-13u1n5o .framer-6vrb0m > :last-child, .framer-z6m5i.framer-v-13u1n5o .framer-zm3fw4 > :last-child { margin-bottom: 0px; } .framer-z6m5i.framer-v-13u1n5o .framer-8sfp7r > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-z6m5i.framer-v-13u1n5o .framer-6vrb0m > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-z6m5i.framer-v-13u1n5o .framer-e9pozt > *, .framer-z6m5i.framer-v-13u1n5o .framer-e9pozt > :first-child, .framer-z6m5i.framer-v-13u1n5o .framer-e9pozt > :last-child { margin: 0px; } .framer-z6m5i.framer-v-13u1n5o .framer-zm3fw4 > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 66\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FbKeNhVe4\":{\"layout\":[\"fixed\",\"auto\"]},\"jtB_YTNDa\":{\"layout\":[\"fixed\",\"auto\"]},\"ChykpOtFU\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"Nm2_2nBFn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAa6aFLA5U=withCSS(Component,css,\"framer-z6m5i\");export default FramerAa6aFLA5U;FramerAa6aFLA5U.displayName=\"Section/Navigation\";FramerAa6aFLA5U.defaultProps={height:66,width:1100};addPropertyControls(FramerAa6aFLA5U,{variant:{options:[\"oK3wc7phb\",\"FbKeNhVe4\",\"jtB_YTNDa\",\"ChykpOtFU\",\"Nm2_2nBFn\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"Phone Open\",\"Variant\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerAa6aFLA5U,[{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\"}]},...FeatherFonts,...NavbarItemTextLinkMenuFonts,...ButtonRunningStrokeFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAa6aFLA5U\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FbKeNhVe4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jtB_YTNDa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ChykpOtFU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"Nm2_2nBFn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1100\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"66\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Aa6aFLA5U.map", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,CycleVariantState,getFonts,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";const FeatherFonts=getFonts(Feather);const enabledGestures={mkPMpWLtq:{hover:true},oLb9rJytq:{hover:true},WFOweYwIp:{hover:true},yD4SixqAC:{hover:true}};const cycleOrder=[\"mkPMpWLtq\",\"WFOweYwIp\",\"yD4SixqAC\",\"oLb9rJytq\"];const serializationHash=\"framer-5l90r\";const variantClassNames={mkPMpWLtq:\"framer-v-fpi4sb\",oLb9rJytq:\"framer-v-1v4dugn\",WFOweYwIp:\"framer-v-ef92te\",yD4SixqAC:\"framer-v-iu6tyx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[0,0,1,1],type:\"tween\"};const transition2={delay:0,duration:.8,ease:[0,0,1,1],type:\"tween\"};const transition3={delay:0,duration:.3,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={Bottom:\"yD4SixqAC\",Left:\"oLb9rJytq\",Right:\"WFOweYwIp\",Top:\"mkPMpWLtq\"};const getProps=({buttonText,height,id,link,width,...props})=>{return{...props,GS3bSUXSK:link??props.GS3bSUXSK,ofLqZhEO8:buttonText??props.ofLqZhEO8??\"Running stroke\",variant:humanReadableVariantMap[props.variant]??props.variant??\"mkPMpWLtq\"};};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,ofLqZhEO8,GS3bSUXSK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mkPMpWLtq\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear138cof=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),300);});const onAppear17vk1v4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),800);});useOnVariantChange(baseVariant,{default:onAppear138cof,oLb9rJytq:onAppear17vk1v4,WFOweYwIp:onAppear17vk1v4});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({oLb9rJytq:{value:transition2},WFOweYwIp:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:GS3bSUXSK,motionChild:true,nodeId:\"mkPMpWLtq\",openInNewTab:false,scopeId:\"HpI4qthM6\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-fpi4sb\",className,classNames)} framer-1v74ozi`,\"data-framer-name\":\"Top\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"mkPMpWLtq\",ref:refBinding,style:{backgroundColor:\"rgb(32, 32, 32)\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7,...style},...addPropertyOverrides({\"mkPMpWLtq-hover\":{\"data-framer-name\":undefined},\"oLb9rJytq-hover\":{\"data-framer-name\":undefined},\"WFOweYwIp-hover\":{\"data-framer-name\":undefined},\"yD4SixqAC-hover\":{\"data-framer-name\":undefined},oLb9rJytq:{\"data-framer-name\":\"Left\"},WFOweYwIp:{\"data-framer-name\":\"Right\"},yD4SixqAC:{\"data-framer-name\":\"Bottom\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yshg3a\",\"data-framer-name\":\"Stroke\",layoutDependency:layoutDependency,layoutId:\"k5h4J6TT3\",style:{background:\"radial-gradient(20.7% 50% at 0% 0%, rgb(30, 144, 255) 0%, rgba(255, 255, 255, 0) 100%)\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7},variants:{\"mkPMpWLtq-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, rgb(30, 144, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},\"oLb9rJytq-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, rgb(30, 144, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},\"WFOweYwIp-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, rgb(30, 144, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},\"yD4SixqAC-hover\":{background:\"radial-gradient(75% 181.15942028985506% at 50% 50%, rgb(30, 144, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},oLb9rJytq:{background:\"radial-gradient(16.6% 43.1% at 0% 100%, rgb(30, 144, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},WFOweYwIp:{background:\"radial-gradient(16.2% 41.199999999999996% at 100% 0%, rgb(30, 144, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},yD4SixqAC:{background:\"radial-gradient(20.7% 50% at 100% 100%, rgb(30, 144, 255) 0%, rgba(255, 255, 255, 0) 100%)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pw7gs4\",\"data-framer-name\":\"Glow\",layoutDependency:layoutDependency,layoutId:\"itAuRpDxK\",style:{background:\"radial-gradient(25% 50% at 0% 0%, rgb(30, 144, 255) 0%, rgba(255, 255, 255, 0) 100%)\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7,filter:\"blur(15px)\",WebkitFilter:\"blur(15px)\"},variants:{\"mkPMpWLtq-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, rgb(30, 144, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},\"oLb9rJytq-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, rgb(30, 144, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},\"WFOweYwIp-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, rgb(30, 144, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},\"yD4SixqAC-hover\":{background:\"radial-gradient(50% 100% at 50% 50%, rgb(30, 144, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},oLb9rJytq:{background:\"radial-gradient(25% 34.4% at 0% 100%, rgb(30, 144, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},WFOweYwIp:{background:\"radial-gradient(25% 35.4% at 100% 0%, rgb(30, 144, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},yD4SixqAC:{background:\"radial-gradient(25% 50% at 100% 100%, rgb(30, 144, 255) 0%, rgba(255, 255, 255, 0) 100%)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gka4nd\",\"data-framer-name\":\"Fill\",layoutDependency:layoutDependency,layoutId:\"uq3ezRtJ7\",style:{backgroundColor:\"var(--token-70b4ad58-9042-4a72-8dea-68d8a9efadf0, rgb(13, 13, 13))\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jnjuxh\",layoutDependency:layoutDependency,layoutId:\"f60UyCzJn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"1.375em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(56, 232, 16))\"},children:\"Running stroke\"})}),className:\"framer-1c2s0r2\",\"data-framer-name\":\"Text\",fonts:[\"FS;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"drglHIRi2\",style:{\"--extracted-r6o4lv\":\"rgb(56, 232, 16)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:ofLqZhEO8,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Transition,{value:transition3,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mjyzwv\",\"data-framer-name\":\"Icon Flip\",layoutDependency:layoutDependency,layoutId:\"EFTHMXfSU\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1edkf7o-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"tJBxd4Kjo-container\",nodeId:\"tJBxd4Kjo\",rendersWithMotion:true,scopeId:\"HpI4qthM6\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(56, 232, 16)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"tJBxd4Kjo\",layoutId:\"tJBxd4Kjo\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tsz482-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Yx_uafPBy-container\",nodeId:\"Yx_uafPBy\",rendersWithMotion:true,scopeId:\"HpI4qthM6\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-4a89092a-27d2-4444-a4b5-4bb982a67f8e, rgb(222, 222, 222))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"Yx_uafPBy\",layoutId:\"Yx_uafPBy\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"mkPMpWLtq-hover\":{color:\"rgb(56, 232, 16)\"},\"oLb9rJytq-hover\":{color:\"rgb(56, 232, 16)\"},\"WFOweYwIp-hover\":{color:\"rgb(56, 232, 16)\"},\"yD4SixqAC-hover\":{color:\"rgb(56, 232, 16)\"}},baseVariant,gestureVariant)})})})]})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5l90r.framer-1v74ozi, .framer-5l90r .framer-1v74ozi { display: block; }\",\".framer-5l90r.framer-fpi4sb { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 21px 8px 21px; position: relative; text-decoration: none; width: min-content; }\",\".framer-5l90r .framer-1yshg3a, .framer-5l90r .framer-1pw7gs4 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-5l90r .framer-1gka4nd { bottom: 1px; flex: none; left: 1px; overflow: hidden; position: absolute; right: 1px; top: 1px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-5l90r .framer-1jnjuxh { align-content: center; align-items: center; align-self: stretch; 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: auto; }\",\".framer-5l90r .framer-1c2s0r2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5l90r .framer-1mjyzwv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 18px; }\",\".framer-5l90r .framer-1edkf7o-container { flex: none; height: 18px; left: calc(50.00000000000002% - 18px / 2); position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 18px; z-index: 1; }\",\".framer-5l90r .framer-tsz482-container { bottom: -22px; flex: none; height: 18px; left: -22px; position: absolute; width: 18px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5l90r.framer-fpi4sb, .framer-5l90r .framer-1jnjuxh, .framer-5l90r .framer-1mjyzwv { gap: 0px; } .framer-5l90r.framer-fpi4sb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5l90r.framer-fpi4sb > :first-child { margin-top: 0px; } .framer-5l90r.framer-fpi4sb > :last-child { margin-bottom: 0px; } .framer-5l90r .framer-1jnjuxh > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-5l90r .framer-1jnjuxh > :first-child, .framer-5l90r .framer-1mjyzwv > :first-child { margin-left: 0px; } .framer-5l90r .framer-1jnjuxh > :last-child, .framer-5l90r .framer-1mjyzwv > :last-child { margin-right: 0px; } .framer-5l90r .framer-1mjyzwv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-5l90r.framer-v-fpi4sb.hover .framer-1edkf7o-container, .framer-5l90r.framer-v-ef92te.hover .framer-1edkf7o-container, .framer-5l90r.framer-v-iu6tyx.hover .framer-1edkf7o-container, .framer-5l90r.framer-v-1v4dugn.hover .framer-1edkf7o-container { left: unset; right: -22px; top: -22px; }\",\".framer-5l90r.framer-v-fpi4sb.hover .framer-tsz482-container { bottom: unset; left: calc(50.00000000000002% - 18px / 2); top: calc(50.00000000000002% - 18px / 2); }\",\".framer-5l90r.framer-v-ef92te.hover .framer-tsz482-container, .framer-5l90r.framer-v-iu6tyx.hover .framer-tsz482-container, .framer-5l90r.framer-v-1v4dugn.hover .framer-tsz482-container { bottom: 0px; left: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38\n * @framerIntrinsicWidth 180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"WFOweYwIp\":{\"layout\":[\"auto\",\"auto\"]},\"yD4SixqAC\":{\"layout\":[\"auto\",\"auto\"]},\"oLb9rJytq\":{\"layout\":[\"auto\",\"auto\"]},\"XeB8jdSyz\":{\"layout\":[\"auto\",\"auto\"]},\"FujOV2Qv8\":{\"layout\":[\"auto\",\"auto\"]},\"fJdgQ3MdI\":{\"layout\":[\"auto\",\"auto\"]},\"E8N6LZYNO\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ofLqZhEO8\":\"buttonText\",\"GS3bSUXSK\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHpI4qthM6=withCSS(Component,css,\"framer-5l90r\");export default FramerHpI4qthM6;FramerHpI4qthM6.displayName=\"Button/Running-Stroke\";FramerHpI4qthM6.defaultProps={height:38,width:180};addPropertyControls(FramerHpI4qthM6,{variant:{options:[\"mkPMpWLtq\",\"WFOweYwIp\",\"yD4SixqAC\",\"oLb9rJytq\"],optionTitles:[\"Top\",\"Right\",\"Bottom\",\"Left\"],title:\"Variant\",type:ControlType.Enum},ofLqZhEO8:{defaultValue:\"Running stroke\",displayTextArea:false,title:\"Button text\",type:ControlType.String},GS3bSUXSK:{title:\"Link\",type:ControlType.Link}});addFonts(FramerHpI4qthM6,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"}]},...FeatherFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHpI4qthM6\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WFOweYwIp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yD4SixqAC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"oLb9rJytq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"XeB8jdSyz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FujOV2Qv8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fJdgQ3MdI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"E8N6LZYNO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"38\",\"framerIntrinsicWidth\":\"180\",\"framerVariables\":\"{\\\"ofLqZhEO8\\\":\\\"buttonText\\\",\\\"GS3bSUXSK\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HpI4qthM6.map"],
  "mappings": "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",
  "names": ["init_ssg_sandbox_shims", "MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "keyframes", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "FeatherFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "buttonText", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ofLqZhEO8", "GS3bSUXSK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear138cof", "args", "CycleVariantState", "onAppear17vk1v4", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerHpI4qthM6", "withCSS", "HpI4qthM6_default", "addPropertyControls", "ControlType", "addFonts", "FeatherFonts", "getFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "NavbarItemTextLinkMenuFonts", "wIrD0oued_default", "ButtonRunningStrokeFonts", "HpI4qthM6_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "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", "onTapl9qnvc", "args", "onTap4eln2r", "onMouseEntertxyyif", "overlay", "loadMore", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "ref1", "ref2", "isDisplayed4", "LayoutGroup", "u", "Link", "SVG", "RichText2", "l", "ComponentViewportProvider", "SmartComponentScopedContainer", "AnimatePresence", "Floating", "css", "FramerAa6aFLA5U", "withCSS", "Aa6aFLA5U_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
