{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/LmE66Qg6Sibd8XMTgI1D/LKtOM77Kev6smEIcaFsM/j4h9ZMZNY.js", "ssg:https://framerusercontent.com/modules/9jBw2G6htY9UQMZlkEZm/XUKl1ai482f8x4ZTSkSA/aHjYBcJ6n.js", "ssg:https://framerusercontent.com/modules/uUx7OGjhgPhMK0ZB3kQ5/gQbr98Io6dk8fa9XROXS/I30vi3MSb.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 directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\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 transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children: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;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);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)})});});}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:\"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(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// 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||supportsAcceleratedAnimations){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?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):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\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (abcfa95)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Lark Circular Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Lark Circular Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/XcA9QJt41sY3ngmrhhTnxQd43g.otf\"}]}];export const css=['.framer-Irm59 .framer-styles-preset-1dfqrom:not(.rich-text-wrapper), .framer-Irm59 .framer-styles-preset-1dfqrom.rich-text-wrapper p { --framer-font-family: \"Lark Circular Regular\", \"Lark Circular Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.4px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, #646a73); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 600px) { .framer-Irm59 .framer-styles-preset-1dfqrom:not(.rich-text-wrapper), .framer-Irm59 .framer-styles-preset-1dfqrom.rich-text-wrapper p { --framer-font-family: \"Lark Circular Regular\", \"Lark Circular Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.4px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, #646a73); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 599px) and (min-width: 0px) { .framer-Irm59 .framer-styles-preset-1dfqrom:not(.rich-text-wrapper), .framer-Irm59 .framer-styles-preset-1dfqrom.rich-text-wrapper p { --framer-font-family: \"Lark Circular Regular\", \"Lark Circular Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.4px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, #646a73); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Irm59\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (315fd46)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/LmE66Qg6Sibd8XMTgI1D/LKtOM77Kev6smEIcaFsM/j4h9ZMZNY.js\";const cycleOrder=[\"M2Re1U7w_\",\"nH2Lu0oy_\",\"UnCqrHh8B\",\"bpnIrMoRV\",\"TIBxokR1q\",\"ToP_xPtJE\",\"Lv9uAiKw2\",\"HeWcGrRBX\",\"vpKumhACx\",\"ynlWBmh0X\"];const serializationHash=\"framer-rnXVQ\";const variantClassNames={bpnIrMoRV:\"framer-v-1m1ykju\",HeWcGrRBX:\"framer-v-1p93cd4\",Lv9uAiKw2:\"framer-v-gnmdv9\",M2Re1U7w_:\"framer-v-13t17s2\",nH2Lu0oy_:\"framer-v-rcshat\",TIBxokR1q:\"framer-v-it4fq1\",ToP_xPtJE:\"framer-v-gltmjy\",UnCqrHh8B:\"framer-v-em1oln\",vpKumhACx:\"framer-v-1fvkbal\",ynlWBmh0X:\"framer-v-11ahf0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"rectangle hover S\":\"HeWcGrRBX\",\"rectangle hover\":\"bpnIrMoRV\",\"rectangle logo S\":\"Lv9uAiKw2\",\"rectangle logo\":\"UnCqrHh8B\",\"rectangle middle\":\"ynlWBmh0X\",\"square hover S\":\"ToP_xPtJE\",\"square hover\":\"nH2Lu0oy_\",\"square logo S\":\"TIBxokR1q\",\"square logo\":\"M2Re1U7w_\",\"square middle\":\"vpKumhACx\"};const getProps=({content,height,id,image,visible,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,lNaLyt2jH:(_ref=image!==null&&image!==void 0?image:props.lNaLyt2jH)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/YNFAdhVppnr1GjP3ZX7jdE9EVo.png\"},pNI7oFRkn:(_ref1=visible!==null&&visible!==void 0?visible:props.pNI7oFRkn)!==null&&_ref1!==void 0?_ref1:true,sQlTfobF_:(_ref2=content!==null&&content!==void 0?content:props.sQlTfobF_)!==null&&_ref2!==void 0?_ref2:\"Slack?\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"M2Re1U7w_\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,pNI7oFRkn,lNaLyt2jH,sQlTfobF_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"M2Re1U7w_\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseLeave3hoia=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});await delay(()=>setVariant(\"M2Re1U7w_\"),5e3);});const onMouseEnter1of39np=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"bpnIrMoRV\");});const onMouseLeave1kazuro=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});await delay(()=>setVariant(\"UnCqrHh8B\"),5e3);});const onMouseEnter75ybv2=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"vpKumhACx\");});const onMouseLeave1qpnopg=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});await delay(()=>setVariant(\"TIBxokR1q\"),5e3);});const onMouseEnterjzp74g=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"ynlWBmh0X\");});const onMouseLeaveiys10v=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});await delay(()=>setVariant(\"Lv9uAiKw2\"),5e3);});const onAppear1ys7xwf=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ToP_xPtJE\"),300);});const onAppears2jm1q=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"HeWcGrRBX\"),500);});useOnVariantChange(baseVariant,{vpKumhACx:onAppear1ys7xwf,ynlWBmh0X:onAppears2jm1q});const ref1=React.useRef(null);const isDisplayed=value=>{if([\"nH2Lu0oy_\",\"UnCqrHh8B\",\"bpnIrMoRV\",\"ToP_xPtJE\",\"Lv9uAiKw2\",\"HeWcGrRBX\",\"vpKumhACx\",\"ynlWBmh0X\"].includes(baseVariant))return false;return value;};const isDisplayed1=value=>{if([\"nH2Lu0oy_\",\"bpnIrMoRV\",\"TIBxokR1q\",\"ToP_xPtJE\",\"Lv9uAiKw2\",\"HeWcGrRBX\",\"vpKumhACx\",\"ynlWBmh0X\"].includes(baseVariant))return false;return value;};const isDisplayed2=()=>{if([\"UnCqrHh8B\",\"Lv9uAiKw2\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-13t17s2\",className,classNames),\"data-border\":true,\"data-framer-name\":\"square logo\",layoutDependency:layoutDependency,layoutId:\"M2Re1U7w_\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(31, 35, 41, 0.05)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-7346c956-2945-4614-93bd-7323a4c57dab, rgb(255, 255, 255))\",...style},variants:{bpnIrMoRV:{backgroundColor:\"rgba(0, 0, 0, 0)\"},HeWcGrRBX:{backgroundColor:\"rgba(0, 0, 0, 0)\"},nH2Lu0oy_:{backgroundColor:\"rgba(0, 0, 0, 0)\"},ToP_xPtJE:{backgroundColor:\"rgba(0, 0, 0, 0)\"},vpKumhACx:{backgroundColor:\"rgb(245, 245, 245)\"},ynlWBmh0X:{backgroundColor:\"rgb(245, 245, 245)\"}},...addPropertyOverrides({bpnIrMoRV:{\"data-framer-name\":\"rectangle hover\",\"data-highlight\":true,onMouseLeave:onMouseLeave1kazuro},HeWcGrRBX:{\"data-framer-name\":\"rectangle hover S\",\"data-highlight\":true,onMouseLeave:onMouseLeaveiys10v},Lv9uAiKw2:{\"data-framer-name\":\"rectangle logo S\",\"data-highlight\":true,onMouseEnter:onMouseEnterjzp74g},nH2Lu0oy_:{\"data-framer-name\":\"square hover\",\"data-highlight\":true,onMouseLeave:onMouseLeave3hoia},TIBxokR1q:{\"data-framer-name\":\"square logo S\",\"data-highlight\":true,onMouseEnter:onMouseEnter75ybv2},ToP_xPtJE:{\"data-framer-name\":\"square hover S\",\"data-highlight\":true,onMouseLeave:onMouseLeave1qpnopg},UnCqrHh8B:{\"data-framer-name\":\"rectangle logo\",\"data-highlight\":true,onMouseEnter:onMouseEnter1of39np},vpKumhACx:{\"data-framer-name\":\"square middle\",\"data-highlight\":true},ynlWBmh0X:{\"data-framer-name\":\"rectangle middle\",\"data-highlight\":true}},baseVariant,gestureVariant),children:[isDisplayed(pNI7oFRkn)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",sizes:\"60px\",...toResponsiveImage(lNaLyt2jH),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-19dfols\",\"data-framer-name\":\"square logo\",layoutDependency:layoutDependency,layoutId:\"vwrVDQa4Y\",...addPropertyOverrides({TIBxokR1q:{background:{alt:\"\",fit:\"fit\",sizes:\"34px\",...toResponsiveImage(lNaLyt2jH),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),isDisplayed1(pNI7oFRkn)&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dfqrom\",\"data-styles-preset\":\"j4h9ZMZNY\",children:\"Slack?\"})}),className:\"framer-1fafri8\",\"data-framer-name\":\"brand name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"q8vf_vGbw\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.8},text:sQlTfobF_,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",...toResponsiveImage(lNaLyt2jH),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1dtz5qg\",\"data-framer-name\":\"rectangle logo\",layoutDependency:layoutDependency,layoutId:\"I128:1285;63:933\",...addPropertyOverrides({Lv9uAiKw2:{background:{alt:\"\",fit:\"stretch\",sizes:\"62px\",...toResponsiveImage(lNaLyt2jH),...{positionX:\"center\",positionY:\"center\"}}},UnCqrHh8B:{background:{alt:\"\",fit:\"stretch\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(lNaLyt2jH),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rnXVQ.framer-164foxf, .framer-rnXVQ .framer-164foxf { display: block; }\",\".framer-rnXVQ.framer-13t17s2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 126px; justify-content: center; padding: 4px 0px 0px 0px; position: relative; width: 126px; }\",\".framer-rnXVQ .framer-19dfols { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 60px; }\",\".framer-rnXVQ .framer-1fafri8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 107px; word-break: break-word; word-wrap: break-word; }\",\".framer-rnXVQ .framer-1dtz5qg { aspect-ratio: 2.1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 95px); position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rnXVQ.framer-13t17s2 { gap: 0px; } .framer-rnXVQ.framer-13t17s2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-rnXVQ.framer-13t17s2 > :first-child { margin-top: 0px; } .framer-rnXVQ.framer-13t17s2 > :last-child { margin-bottom: 0px; } }\",\".framer-rnXVQ.framer-v-em1oln.framer-13t17s2 { gap: 12px; padding: 7px 0px 0px 0px; }\",\".framer-rnXVQ.framer-v-em1oln .framer-1fafri8 { order: 2; }\",\".framer-rnXVQ.framer-v-em1oln .framer-1dtz5qg { height: var(--framer-aspect-ratio-supported, 60px); order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rnXVQ.framer-v-em1oln.framer-13t17s2 { gap: 0px; } .framer-rnXVQ.framer-v-em1oln.framer-13t17s2 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-rnXVQ.framer-v-em1oln.framer-13t17s2 > :first-child { margin-top: 0px; } .framer-rnXVQ.framer-v-em1oln.framer-13t17s2 > :last-child { margin-bottom: 0px; } }\",\".framer-rnXVQ.framer-v-it4fq1.framer-13t17s2 { gap: 6px; height: 85px; width: 85px; }\",\".framer-rnXVQ.framer-v-it4fq1 .framer-19dfols { height: var(--framer-aspect-ratio-supported, 34px); order: 0; width: 34px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rnXVQ.framer-v-it4fq1.framer-13t17s2 { gap: 0px; } .framer-rnXVQ.framer-v-it4fq1.framer-13t17s2 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-rnXVQ.framer-v-it4fq1.framer-13t17s2 > :first-child { margin-top: 0px; } .framer-rnXVQ.framer-v-it4fq1.framer-13t17s2 > :last-child { margin-bottom: 0px; } }\",\".framer-rnXVQ.framer-v-gltmjy.framer-13t17s2, .framer-rnXVQ.framer-v-1p93cd4.framer-13t17s2, .framer-rnXVQ.framer-v-1fvkbal.framer-13t17s2, .framer-rnXVQ.framer-v-11ahf0.framer-13t17s2 { height: 85px; width: 85px; }\",\".framer-rnXVQ.framer-v-gnmdv9.framer-13t17s2 { gap: 6px; height: 85px; padding: 3px 0px 0px 0px; width: 85px; }\",\".framer-rnXVQ.framer-v-gnmdv9 .framer-1dtz5qg { height: var(--framer-aspect-ratio-supported, 30px); order: 1; width: 62px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rnXVQ.framer-v-gnmdv9.framer-13t17s2 { gap: 0px; } .framer-rnXVQ.framer-v-gnmdv9.framer-13t17s2 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-rnXVQ.framer-v-gnmdv9.framer-13t17s2 > :first-child { margin-top: 0px; } .framer-rnXVQ.framer-v-gnmdv9.framer-13t17s2 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-rnXVQ[data-border=\"true\"]::after, .framer-rnXVQ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 126\n * @framerIntrinsicWidth 126\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"nH2Lu0oy_\":{\"layout\":[\"fixed\",\"fixed\"]},\"UnCqrHh8B\":{\"layout\":[\"fixed\",\"fixed\"]},\"bpnIrMoRV\":{\"layout\":[\"fixed\",\"fixed\"]},\"TIBxokR1q\":{\"layout\":[\"fixed\",\"fixed\"]},\"ToP_xPtJE\":{\"layout\":[\"fixed\",\"fixed\"]},\"Lv9uAiKw2\":{\"layout\":[\"fixed\",\"fixed\"]},\"HeWcGrRBX\":{\"layout\":[\"fixed\",\"fixed\"]},\"vpKumhACx\":{\"layout\":[\"fixed\",\"fixed\"]},\"ynlWBmh0X\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"pNI7oFRkn\":\"visible\",\"lNaLyt2jH\":\"image\",\"sQlTfobF_\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraHjYBcJ6n=withCSS(Component,css,\"framer-rnXVQ\");export default FrameraHjYBcJ6n;FrameraHjYBcJ6n.displayName=\"minesweeper S\";FrameraHjYBcJ6n.defaultProps={height:126,width:126};addPropertyControls(FrameraHjYBcJ6n,{variant:{options:[\"M2Re1U7w_\",\"nH2Lu0oy_\",\"UnCqrHh8B\",\"bpnIrMoRV\",\"TIBxokR1q\",\"ToP_xPtJE\",\"Lv9uAiKw2\",\"HeWcGrRBX\",\"vpKumhACx\",\"ynlWBmh0X\"],optionTitles:[\"square logo\",\"square hover\",\"rectangle logo\",\"rectangle hover\",\"square logo S\",\"square hover S\",\"rectangle logo S\",\"rectangle hover S\",\"square middle\",\"rectangle middle\"],title:\"Variant\",type:ControlType.Enum},pNI7oFRkn:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean},lNaLyt2jH:{__defaultAssetReference:\"data:framer/asset-reference,YNFAdhVppnr1GjP3ZX7jdE9EVo.png?originalFilename=Slack-mark-RGB+2.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},sQlTfobF_:{defaultValue:\"Slack?\",displayTextArea:false,title:\"content\",type:ControlType.String}});addFonts(FrameraHjYBcJ6n,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraHjYBcJ6n\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"126\",\"framerVariables\":\"{\\\"pNI7oFRkn\\\":\\\"visible\\\",\\\"lNaLyt2jH\\\":\\\"image\\\",\\\"sQlTfobF_\\\":\\\"content\\\"}\",\"framerIntrinsicWidth\":\"126\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nH2Lu0oy_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UnCqrHh8B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bpnIrMoRV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TIBxokR1q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ToP_xPtJE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Lv9uAiKw2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HeWcGrRBX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vpKumhACx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ynlWBmh0X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aHjYBcJ6n.map", "// Generated by Framer (2c4b293)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{mobileUspClick}from\"https://framerusercontent.com/modules/gVPb7PGJr800ZxIczjwx/RfTVe7oOfNKvs3vSrsJ0/APACStorylineTracking.js\";import MinesweeperS from\"https://framerusercontent.com/modules/9jBw2G6htY9UQMZlkEZm/XUKl1ai482f8x4ZTSkSA/aHjYBcJ6n.js\";import ButtonAnimated,*as ButtonAnimatedInfo from\"https://framerusercontent.com/modules/e6xNuzJpuAaqIxEEJIqC/dBQQN8c7hPam493Uby7H/KDumY2tu3.js\";const ButtonAnimatedFonts=getFonts(ButtonAnimated);const ButtonAnimatedMobileUspClickWithMappedReactProps1ibbo0l=withMappedReactProps(mobileUspClick(ButtonAnimated),ButtonAnimatedInfo);const MinesweeperSFonts=getFonts(MinesweeperS);const cycleOrder=[\"mQZL7Kudg\",\"zQeJy3WUT\",\"E11R2Aa4j\",\"jWFjgYG2j\",\"EkpekXwVk\",\"zMDrxlipW\",\"JZpLl8KQa\",\"oXBhxRSvD\",\"KvpMxwQgb\",\"BHIr78lyk\",\"GeWGT8Q3J\"];const serializationHash=\"framer-3KmK4\";const variantClassNames={BHIr78lyk:\"framer-v-1wqsfj1\",E11R2Aa4j:\"framer-v-1gigb6i\",EkpekXwVk:\"framer-v-iqi1z7\",GeWGT8Q3J:\"framer-v-149iymc\",jWFjgYG2j:\"framer-v-1cl5pka\",JZpLl8KQa:\"framer-v-1thtf7l\",KvpMxwQgb:\"framer-v-mzn47w\",mQZL7Kudg:\"framer-v-1pvheok\",oXBhxRSvD:\"framer-v-1xmdxcs\",zMDrxlipW:\"framer-v-3szmp\",zQeJy3WUT:\"framer-v-maxtt1\"};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={damping:15,delay:0,mass:1.4,stiffness:69,type:\"spring\"};const transition3={damping:14,delay:0,mass:1,stiffness:63,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Clickup-flip\":\"jWFjgYG2j\",\"multi-A\":\"KvpMxwQgb\",\"multi-B\":\"BHIr78lyk\",\"multi-C\":\"GeWGT8Q3J\",\"Notion-flip\":\"oXBhxRSvD\",\"slack-flip\":\"zQeJy3WUT\",\"ZOOM-flip\":\"zMDrxlipW\",clickup:\"E11R2Aa4j\",Notion:\"JZpLl8KQa\",slack:\"mQZL7Kudg\",ZOOM:\"EkpekXwVk\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"mQZL7Kudg\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mQZL7Kudg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterjk8gpi=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"zQeJy3WUT\");});const onMouseLeave1sky7wa=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});await delay(()=>setVariant(\"mQZL7Kudg\"),6e3);});const onMouseEnter1rpcmmk=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"jWFjgYG2j\");});const onMouseLeave1j7acjv=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});await delay(()=>setVariant(\"E11R2Aa4j\"),5e3);});const onMouseEnterbzanwc=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"zMDrxlipW\");});const onMouseLeave1wbebeh=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});await delay(()=>setVariant(\"EkpekXwVk\"),5e3);});const onMouseEnter10u8ko8=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"oXBhxRSvD\");});const onMouseLeave1s01wez=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});await delay(()=>setVariant(\"JZpLl8KQa\"),5e3);});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"KvpMxwQgb\",\"BHIr78lyk\",\"GeWGT8Q3J\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"EkpekXwVk\",\"zMDrxlipW\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"EkpekXwVk\",\"zMDrxlipW\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"zQeJy3WUT\",\"jWFjgYG2j\",\"zMDrxlipW\",\"oXBhxRSvD\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"KvpMxwQgb\",\"BHIr78lyk\",\"GeWGT8Q3J\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({E11R2Aa4j:{value:transition2},jWFjgYG2j:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1pvheok\",className,classNames),\"data-framer-name\":\"slack\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"mQZL7Kudg\",onMouseEnter:onMouseEnterjk8gpi,ref:ref??ref1,style:{...style},...addPropertyOverrides({BHIr78lyk:{\"data-framer-name\":\"multi-B\",\"data-highlight\":undefined,onMouseEnter:undefined},E11R2Aa4j:{\"data-framer-name\":\"clickup\",onMouseEnter:onMouseEnter1rpcmmk},EkpekXwVk:{\"data-framer-name\":\"ZOOM\",onMouseEnter:onMouseEnterbzanwc},GeWGT8Q3J:{\"data-framer-name\":\"multi-C\",\"data-highlight\":undefined,onMouseEnter:undefined},jWFjgYG2j:{\"data-framer-name\":\"Clickup-flip\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ZkCu6GnRQ28hQotZ4warurwGFs.png\",srcSet:\"https://framerusercontent.com/images/ZkCu6GnRQ28hQotZ4warurwGFs.png 504w\"},onMouseEnter:onMouseEnter1rpcmmk,onMouseLeave:onMouseLeave1j7acjv},JZpLl8KQa:{\"data-framer-name\":\"Notion\",onMouseEnter:onMouseEnter10u8ko8},KvpMxwQgb:{\"data-framer-name\":\"multi-A\",\"data-highlight\":undefined,onMouseEnter:undefined},oXBhxRSvD:{\"data-framer-name\":\"Notion-flip\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ZkCu6GnRQ28hQotZ4warurwGFs.png\",srcSet:\"https://framerusercontent.com/images/ZkCu6GnRQ28hQotZ4warurwGFs.png 504w\"},onMouseEnter:undefined,onMouseLeave:onMouseLeave1s01wez},zMDrxlipW:{\"data-framer-name\":\"ZOOM-flip\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ZkCu6GnRQ28hQotZ4warurwGFs.png\",srcSet:\"https://framerusercontent.com/images/ZkCu6GnRQ28hQotZ4warurwGFs.png 504w\"},onMouseEnter:undefined,onMouseLeave:onMouseLeave1wbebeh},zQeJy3WUT:{\"data-framer-name\":\"slack-flip\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1sky7wa}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1it67ty\",\"data-framer-name\":\"app\",layoutDependency:layoutDependency,layoutId:\"S_5d9MvUZ\",style:{backgroundColor:\"rgb(255, 255, 255)\",rotateY:0},variants:{jWFjgYG2j:{rotateY:180},oXBhxRSvD:{rotateY:180},zMDrxlipW:{rotateY:180},zQeJy3WUT:{rotateY:180}},children:[isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7ik7fj4SXaukzhCs5rIsakJ3pw.png\",srcSet:\"https://framerusercontent.com/images/7ik7fj4SXaukzhCs5rIsakJ3pw.png?scale-down-to=512 512w,https://framerusercontent.com/images/7ik7fj4SXaukzhCs5rIsakJ3pw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7ik7fj4SXaukzhCs5rIsakJ3pw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7ik7fj4SXaukzhCs5rIsakJ3pw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/7ik7fj4SXaukzhCs5rIsakJ3pw.png 5120w\"},className:\"framer-xbsop2\",\"data-framer-name\":\"Slack-mark-RGB 2\",layoutDependency:layoutDependency,layoutId:\"iM1eJy9Zg\",...addPropertyOverrides({EkpekXwVk:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||340)*.5000000000000002-((componentViewport?.height||340)-0)*1/2)+0+((((componentViewport?.height||340)-0)*1-0-104)/2+0+0)),positionX:\"center\",positionY:\"center\",sizes:\"119.5224px\",src:\"https://framerusercontent.com/images/7ik7fj4SXaukzhCs5rIsakJ3pw.png\",srcSet:\"https://framerusercontent.com/images/7ik7fj4SXaukzhCs5rIsakJ3pw.png?scale-down-to=512 512w,https://framerusercontent.com/images/7ik7fj4SXaukzhCs5rIsakJ3pw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7ik7fj4SXaukzhCs5rIsakJ3pw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7ik7fj4SXaukzhCs5rIsakJ3pw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/7ik7fj4SXaukzhCs5rIsakJ3pw.png 5120w\"}},zMDrxlipW:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||340)*.5000000000000002-((componentViewport?.height||340)-0)*1/2)+0+((((componentViewport?.height||340)-0)*1-0-104)/2+0+0)),positionX:\"center\",positionY:\"center\",sizes:\"119.5224px\",src:\"https://framerusercontent.com/images/7ik7fj4SXaukzhCs5rIsakJ3pw.png\",srcSet:\"https://framerusercontent.com/images/7ik7fj4SXaukzhCs5rIsakJ3pw.png?scale-down-to=512 512w,https://framerusercontent.com/images/7ik7fj4SXaukzhCs5rIsakJ3pw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7ik7fj4SXaukzhCs5rIsakJ3pw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7ik7fj4SXaukzhCs5rIsakJ3pw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/7ik7fj4SXaukzhCs5rIsakJ3pw.png 5120w\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||340)*.5000000000000002-((componentViewport?.height||340)-0)*1/2)+0+((((componentViewport?.height||340)-0)*1-0-108)/2+0+0)),positionX:\"center\",positionY:\"center\",sizes:\"60px\",src:\"https://framerusercontent.com/images/oNRyFpTGaqxE00k3AbVDUSqfpI.png\",srcSet:\"https://framerusercontent.com/images/oNRyFpTGaqxE00k3AbVDUSqfpI.png?scale-down-to=512 512w,https://framerusercontent.com/images/oNRyFpTGaqxE00k3AbVDUSqfpI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oNRyFpTGaqxE00k3AbVDUSqfpI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/oNRyFpTGaqxE00k3AbVDUSqfpI.png 3200w\"},className:\"framer-mfexy5\",\"data-framer-name\":\"\u56FE\",layoutDependency:layoutDependency,layoutId:\"k4nnQ2xL5\",...addPropertyOverrides({E11R2Aa4j:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||340)*.5000000000000002-((componentViewport?.height||340)-0)*1/2)+0+((((componentViewport?.height||340)-0)*1-0-108)/2+0+0)),positionX:\"center\",positionY:\"center\",sizes:\"60px\",src:\"https://framerusercontent.com/images/6R9NHKzsHJqcVPQ9nP3BLwGTWqQ.png\",srcSet:\"https://framerusercontent.com/images/6R9NHKzsHJqcVPQ9nP3BLwGTWqQ.png 502w\"}},jWFjgYG2j:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||340)*.5000000000000002-((componentViewport?.height||340)-0)*1/2)+0+((((componentViewport?.height||340)-0)*1-0-108)/2+0+0)),positionX:\"center\",positionY:\"center\",sizes:\"60px\",src:\"https://framerusercontent.com/images/6R9NHKzsHJqcVPQ9nP3BLwGTWqQ.png\",srcSet:\"https://framerusercontent.com/images/6R9NHKzsHJqcVPQ9nP3BLwGTWqQ.png 502w\"}},JZpLl8KQa:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||340)*.5000000000000002-((componentViewport?.height||340)-0)*1/2)+0+((((componentViewport?.height||340)-0)*1-0-108)/2+0+0)),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9CrWK3bsTL9gmD1NfaqxkjSYc.png\"}},oXBhxRSvD:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||340)*.5000000000000002-((componentViewport?.height||340)-0)*1/2)+0+((((componentViewport?.height||340)-0)*1-0-108)/2+0+0)),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9CrWK3bsTL9gmD1NfaqxkjSYc.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmsgQ2lyY3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Lark Circular Medium\", \"Lark Circular Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"Replace Slack\"})}),className:\"framer-1g4s98r\",\"data-framer-name\":\"Slack?\",fonts:[\"CUSTOM;Lark Circular Medium\"],layoutDependency:layoutDependency,layoutId:\"toeT5liEc\",style:{\"--extracted-r6o4lv\":\"var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({E11R2Aa4j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmsgQ2lyY3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Lark Circular Medium\", \"Lark Circular Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"Replace Clickup\"})})},EkpekXwVk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmsgQ2lyY3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Lark Circular Medium\", \"Lark Circular Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"Replace Zoom\"})})},jWFjgYG2j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmsgQ2lyY3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Lark Circular Medium\", \"Lark Circular Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"Replace Clickup\"})})},JZpLl8KQa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmsgQ2lyY3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Lark Circular Medium\", \"Lark Circular Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"Replace Notion\"})})},oXBhxRSvD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmsgQ2lyY3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Lark Circular Medium\", \"Lark Circular Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"Replace Notion\"})})},zMDrxlipW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmsgQ2lyY3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Lark Circular Medium\", \"Lark Circular Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"Replace Zoom\"})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:1008,pixelWidth:504,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pgCITBO645kJek0g2HYGMIamA.png\",srcSet:\"https://framerusercontent.com/images/pgCITBO645kJek0g2HYGMIamA.png 340w\"},className:\"framer-jm6uma\",\"data-framer-name\":\"app-flip\",layoutDependency:layoutDependency,layoutId:\"iGqsv4DWh\",style:{rotateY:180,transformPerspective:500},variants:{jWFjgYG2j:{rotateY:0},oXBhxRSvD:{rotateY:0},zMDrxlipW:{rotateY:0},zQeJy3WUT:{rotateY:0}},...addPropertyOverrides({E11R2Aa4j:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:1008,pixelWidth:504,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/6Jjc0Wsl36ZFvKGtkNPcI8pXcg.png\",srcSet:\"https://framerusercontent.com/images/6Jjc0Wsl36ZFvKGtkNPcI8pXcg.png 340w\"}},EkpekXwVk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:1008,pixelWidth:504,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/lw3sgB3qRTqQTE8fwVkUPoB70.png\",srcSet:\"https://framerusercontent.com/images/lw3sgB3qRTqQTE8fwVkUPoB70.png 504w\"}},jWFjgYG2j:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:1008,pixelWidth:504,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/lcByqNQc1Uhd944LXzREzajtNZU.png\",srcSet:\"https://framerusercontent.com/images/lcByqNQc1Uhd944LXzREzajtNZU.png 504w\"}},JZpLl8KQa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:1008,pixelWidth:504,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/sVIpNRwdQ5nO99J4x7wmlIqdKE.png\",srcSet:\"https://framerusercontent.com/images/sVIpNRwdQ5nO99J4x7wmlIqdKE.png 340w\"}},oXBhxRSvD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:1008,pixelWidth:504,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/sVIpNRwdQ5nO99J4x7wmlIqdKE.png\",srcSet:\"https://framerusercontent.com/images/sVIpNRwdQ5nO99J4x7wmlIqdKE.png 340w\"}},zMDrxlipW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:1008,pixelWidth:504,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/lw3sgB3qRTqQTE8fwVkUPoB70.png\",srcSet:\"https://framerusercontent.com/images/lw3sgB3qRTqQTE8fwVkUPoB70.png 504w\"}}},baseVariant,gestureVariant),children:isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({jWFjgYG2j:{height:74,y:(componentViewport?.y||0)+0+(((componentViewport?.height||340)-0)*.8764705882352943-37)},oXBhxRSvD:{height:74,y:(componentViewport?.y||0)+0+(((componentViewport?.height||340)-0)*.8764705882352943-37)},zMDrxlipW:{height:74,y:(componentViewport?.y||0)+0+(((componentViewport?.height||340)-0)*.8764705882352943-37)},zQeJy3WUT:{height:74,y:(componentViewport?.y||0)+0+266}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gdzx04-container\",layoutDependency:layoutDependency,layoutId:\"JmDo_xmLx-container\",...addPropertyOverrides({jWFjgYG2j:{transformTemplate:transformTemplate1},oXBhxRSvD:{transformTemplate:transformTemplate1},zMDrxlipW:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ButtonAnimatedMobileUspClickWithMappedReactProps1ibbo0l,{EqRQundoP:\"Learn more\",height:\"100%\",id:\"JmDo_xmLx\",layoutId:\"JmDo_xmLx\",rM7R4t_Ft:\"https://www.larksuite.com/en_us/blog/lark-slack-difference-advantage-cost-useful-global?from=minesweeper\",variant:\"sXcnQ4unO\",width:\"100%\",...addPropertyOverrides({jWFjgYG2j:{EqRQundoP:\"Discover\",rM7R4t_Ft:\"https://www.larksuite.com/en_us/blog/lark-clickup-difference-advantage-cost-frontline-mobile-global?from=minesweeper_replace_clickup\"},oXBhxRSvD:{EqRQundoP:\"Discover\",rM7R4t_Ft:\"https://www.larksuite.com/en_us/blog/notion-alternatives-2024?from=minesweeper_replace_notion\"},zMDrxlipW:{EqRQundoP:\"Discover\",rM7R4t_Ft:\"https://www.larksuite.com/paid/lark-vs-zoom?from=minesweeper_replace_zoom\"},zQeJy3WUT:{EqRQundoP:\"Discover\",rM7R4t_Ft:\"https://www.larksuite.com/en_us/blog/lark-slack-difference-advantage-cost-useful-global?from=minesweeper_replace_slack\"}},baseVariant,gestureVariant)})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:504,intrinsicWidth:252,pixelHeight:1008,pixelWidth:504,src:\"https://framerusercontent.com/images/ErIlgyjKq0M0F93R68Xn7KqgZC8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ErIlgyjKq0M0F93R68Xn7KqgZC8.png 504w\"},className:\"framer-btgovn\",\"data-framer-name\":\"multi apps / background\",layoutDependency:layoutDependency,layoutId:\"nutbJDike\",...addPropertyOverrides({BHIr78lyk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:504,intrinsicWidth:252,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:1008,pixelWidth:504,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/NxljtjhXH8FQzdCzmKCfswiO34.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/NxljtjhXH8FQzdCzmKCfswiO34.png 504w\"}},GeWGT8Q3J:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:504,intrinsicWidth:252,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:1008,pixelWidth:504,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/B6buFmkLFPIz5gzgCxbaMycmYok.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/B6buFmkLFPIz5gzgCxbaMycmYok.png 504w\"}},KvpMxwQgb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:504,intrinsicWidth:252,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:1008,pixelWidth:504,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xlRg5hRCY68ElUDQpIEMa0elA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/xlRg5hRCY68ElUDQpIEMa0elA.png 504w\"}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-ru7akx\",\"data-framer-name\":\"multi apps\",layoutDependency:layoutDependency,layoutId:\"nuShe3fA0\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({BHIr78lyk:{height:85,width:\"85px\",y:(componentViewport?.y||0)+0+0+0},GeWGT8Q3J:{height:85,width:\"85px\",y:(componentViewport?.y||0)+0+0+0},KvpMxwQgb:{height:85,width:\"85px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h0vncg-container\",layoutDependency:layoutDependency,layoutId:\"v0UdGsuxg-container\",children:/*#__PURE__*/_jsx(MinesweeperS,{height:\"100%\",id:\"v0UdGsuxg\",layoutId:\"v0UdGsuxg\",pNI7oFRkn:false,sQlTfobF_:\"Slack?\",style:{height:\"100%\",width:\"100%\"},variant:\"M2Re1U7w_\",width:\"100%\",...addPropertyOverrides({BHIr78lyk:{variant:\"TIBxokR1q\"},GeWGT8Q3J:{variant:\"TIBxokR1q\"},KvpMxwQgb:{variant:\"TIBxokR1q\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({BHIr78lyk:{height:85,width:\"85px\",y:(componentViewport?.y||0)+0+0+0},GeWGT8Q3J:{height:85,width:\"85px\",y:(componentViewport?.y||0)+0+0+0},KvpMxwQgb:{height:85,width:\"85px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ssf85z-container\",layoutDependency:layoutDependency,layoutId:\"zY3HtmYF3-container\",children:/*#__PURE__*/_jsx(MinesweeperS,{height:\"100%\",id:\"zY3HtmYF3\",layoutId:\"zY3HtmYF3\",lNaLyt2jH:addImageAlt({src:\"https://framerusercontent.com/images/zMsZJE3W8mpuQunzjIohob1Zj0E.svg\"},\"\"),pNI7oFRkn:true,sQlTfobF_:\"Google?\",style:{height:\"100%\",width:\"100%\"},variant:\"M2Re1U7w_\",width:\"100%\",...addPropertyOverrides({BHIr78lyk:{lNaLyt2jH:addImageAlt({src:\"https://framerusercontent.com/images/BdQ4SHZXA1vrRJOcRZTzJDgFkw.png\",srcSet:\"https://framerusercontent.com/images/BdQ4SHZXA1vrRJOcRZTzJDgFkw.png?scale-down-to=1024 795w,https://framerusercontent.com/images/BdQ4SHZXA1vrRJOcRZTzJDgFkw.png?scale-down-to=2048 1590w,https://framerusercontent.com/images/BdQ4SHZXA1vrRJOcRZTzJDgFkw.png 3180w\"},\"\"),sQlTfobF_:\"Obsidian?\",variant:\"TIBxokR1q\"},GeWGT8Q3J:{lNaLyt2jH:addImageAlt({src:\"https://framerusercontent.com/images/wxcJg9OMPkSCAYWtbGNRdOJOfBo.png\",srcSet:\"https://framerusercontent.com/images/wxcJg9OMPkSCAYWtbGNRdOJOfBo.png?scale-down-to=1024 856w,https://framerusercontent.com/images/wxcJg9OMPkSCAYWtbGNRdOJOfBo.png?scale-down-to=2048 1713w,https://framerusercontent.com/images/wxcJg9OMPkSCAYWtbGNRdOJOfBo.png?scale-down-to=4096 3427w,https://framerusercontent.com/images/wxcJg9OMPkSCAYWtbGNRdOJOfBo.png 4184w\"},\"\"),sQlTfobF_:\"Evernote?\",variant:\"TIBxokR1q\"},KvpMxwQgb:{variant:\"TIBxokR1q\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({BHIr78lyk:{height:85,width:\"85px\",y:(componentViewport?.y||0)+0+0+85},GeWGT8Q3J:{height:85,width:\"85px\",y:(componentViewport?.y||0)+0+0+85},KvpMxwQgb:{height:85,width:\"85px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xvb7se-container\",layoutDependency:layoutDependency,layoutId:\"vjKo4C_fB-container\",children:/*#__PURE__*/_jsx(MinesweeperS,{height:\"100%\",id:\"vjKo4C_fB\",layoutId:\"vjKo4C_fB\",lNaLyt2jH:addImageAlt({src:\"https://framerusercontent.com/images/e4YSiS9ouWS6HIt0gtBF0O7pis.svg\"},\"\"),pNI7oFRkn:true,sQlTfobF_:\"Teams?\",style:{height:\"100%\",width:\"100%\"},variant:\"M2Re1U7w_\",width:\"100%\",...addPropertyOverrides({BHIr78lyk:{lNaLyt2jH:addImageAlt({src:\"https://framerusercontent.com/images/QbM0LDC4c7UzlFe9yGb6oBY.svg\"},\"\"),sQlTfobF_:\"Airtable?\",variant:\"TIBxokR1q\"},GeWGT8Q3J:{lNaLyt2jH:addImageAlt({src:\"https://framerusercontent.com/images/nFEpzuAQQhApgtCvI0ZQOAQeA.png\",srcSet:\"https://framerusercontent.com/images/nFEpzuAQQhApgtCvI0ZQOAQeA.png?scale-down-to=512 512w,https://framerusercontent.com/images/nFEpzuAQQhApgtCvI0ZQOAQeA.png 600w\"},\"\"),sQlTfobF_:\"Wrike?\",variant:\"TIBxokR1q\"},KvpMxwQgb:{lNaLyt2jH:addImageAlt({src:\"https://framerusercontent.com/images/jX9D5m0xcamIP8EVJY0yO6FOYs.png\",srcSet:\"https://framerusercontent.com/images/jX9D5m0xcamIP8EVJY0yO6FOYs.png?scale-down-to=512 512w,https://framerusercontent.com/images/jX9D5m0xcamIP8EVJY0yO6FOYs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jX9D5m0xcamIP8EVJY0yO6FOYs.png 1280w\"},\"\"),variant:\"TIBxokR1q\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({BHIr78lyk:{height:85,width:\"85px\",y:(componentViewport?.y||0)+0+0+85},GeWGT8Q3J:{height:85,width:\"85px\",y:(componentViewport?.y||0)+0+0+85},KvpMxwQgb:{height:85,width:\"85px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-k9gxyp-container\",layoutDependency:layoutDependency,layoutId:\"TjploSI16-container\",children:/*#__PURE__*/_jsx(MinesweeperS,{height:\"100%\",id:\"TjploSI16\",layoutId:\"TjploSI16\",pNI7oFRkn:false,sQlTfobF_:\"Slack?\",style:{height:\"100%\",width:\"100%\"},variant:\"M2Re1U7w_\",width:\"100%\",...addPropertyOverrides({BHIr78lyk:{variant:\"TIBxokR1q\"},GeWGT8Q3J:{variant:\"TIBxokR1q\"},KvpMxwQgb:{variant:\"TIBxokR1q\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({BHIr78lyk:{height:85,width:\"85px\",y:(componentViewport?.y||0)+0+0+170},GeWGT8Q3J:{height:85,width:\"85px\",y:(componentViewport?.y||0)+0+0+170},KvpMxwQgb:{height:85,width:\"85px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15137to-container\",layoutDependency:layoutDependency,layoutId:\"lTHwS61No-container\",children:/*#__PURE__*/_jsx(MinesweeperS,{height:\"100%\",id:\"lTHwS61No\",layoutId:\"lTHwS61No\",lNaLyt2jH:addImageAlt({src:\"https://framerusercontent.com/images/1ZZzGFgyE8hlAMTURjC3OykbM0.svg\"},\"\"),pNI7oFRkn:true,sQlTfobF_:\"Zolo?\",style:{height:\"100%\",width:\"100%\"},variant:\"UnCqrHh8B\",width:\"100%\",...addPropertyOverrides({BHIr78lyk:{lNaLyt2jH:addImageAlt({src:\"https://framerusercontent.com/images/lmpZz29RB5UfcypD29T0nulyM9U.svg\"},\"\"),sQlTfobF_:\"Asana?\",variant:\"TIBxokR1q\"},GeWGT8Q3J:{lNaLyt2jH:addImageAlt({src:\"https://framerusercontent.com/images/NO3QHcuPAYRghBTfS2i9p1F54g.svg\"},\"\"),sQlTfobF_:\"Coda?\",variant:\"TIBxokR1q\"},KvpMxwQgb:{variant:\"Lv9uAiKw2\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({BHIr78lyk:{height:85,width:\"85px\",y:(componentViewport?.y||0)+0+0+170},GeWGT8Q3J:{height:85,width:\"85px\",y:(componentViewport?.y||0)+0+0+170},KvpMxwQgb:{height:85,width:\"85px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jkcj3l-container\",layoutDependency:layoutDependency,layoutId:\"YVdqS1Jxf-container\",children:/*#__PURE__*/_jsx(MinesweeperS,{height:\"100%\",id:\"YVdqS1Jxf\",layoutId:\"YVdqS1Jxf\",pNI7oFRkn:false,sQlTfobF_:\"Slack?\",style:{height:\"100%\",width:\"100%\"},variant:\"M2Re1U7w_\",width:\"100%\",...addPropertyOverrides({BHIr78lyk:{variant:\"TIBxokR1q\"},GeWGT8Q3J:{variant:\"TIBxokR1q\"},KvpMxwQgb:{variant:\"TIBxokR1q\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({BHIr78lyk:{height:85,width:\"85px\",y:(componentViewport?.y||0)+0+0+255},GeWGT8Q3J:{height:85,width:\"85px\",y:(componentViewport?.y||0)+0+0+255},KvpMxwQgb:{height:85,width:\"85px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s13gn0-container\",layoutDependency:layoutDependency,layoutId:\"XguDbUpYS-container\",children:/*#__PURE__*/_jsx(MinesweeperS,{height:\"100%\",id:\"XguDbUpYS\",layoutId:\"XguDbUpYS\",pNI7oFRkn:false,sQlTfobF_:\"Slack?\",style:{height:\"100%\",width:\"100%\"},variant:\"M2Re1U7w_\",width:\"100%\",...addPropertyOverrides({BHIr78lyk:{variant:\"TIBxokR1q\"},GeWGT8Q3J:{variant:\"TIBxokR1q\"},KvpMxwQgb:{variant:\"TIBxokR1q\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({BHIr78lyk:{height:85,width:\"85px\",y:(componentViewport?.y||0)+0+0+255},GeWGT8Q3J:{height:85,width:\"85px\",y:(componentViewport?.y||0)+0+0+255},KvpMxwQgb:{height:85,width:\"85px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-731ndk-container\",layoutDependency:layoutDependency,layoutId:\"cScUrTjAh-container\",children:/*#__PURE__*/_jsx(MinesweeperS,{height:\"100%\",id:\"cScUrTjAh\",layoutId:\"cScUrTjAh\",lNaLyt2jH:addImageAlt({src:\"https://framerusercontent.com/images/ckV1nP9nPBXNIUSBGHysUN5jkh8.svg\"},\"\"),pNI7oFRkn:true,sQlTfobF_:\"Zoho?\",style:{height:\"100%\",width:\"100%\"},variant:\"UnCqrHh8B\",width:\"100%\",...addPropertyOverrides({BHIr78lyk:{lNaLyt2jH:addImageAlt({src:\"https://framerusercontent.com/images/aqNZ4vEMRLehTrpj9e1sKem9q4.svg\"},\"\"),sQlTfobF_:\"Jira?\",variant:\"TIBxokR1q\"},GeWGT8Q3J:{lNaLyt2jH:addImageAlt({src:\"https://framerusercontent.com/images/EBcwaAjhhVNU90d5Xle47bOWaBo.png\",srcSet:\"https://framerusercontent.com/images/EBcwaAjhhVNU90d5Xle47bOWaBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/EBcwaAjhhVNU90d5Xle47bOWaBo.png 560w\"},\"\"),sQlTfobF_:\"Monday?\",variant:\"TIBxokR1q\"},KvpMxwQgb:{variant:\"Lv9uAiKw2\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3KmK4.framer-1w6b2fr, .framer-3KmK4 .framer-1w6b2fr { display: block; }\",\".framer-3KmK4.framer-1pvheok { height: 340px; position: relative; width: 170px; }\",\".framer-3KmK4 .framer-1it67ty { align-content: center; align-items: center; backface-visibility: hidden; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-3KmK4 .framer-xbsop2 { aspect-ratio: 2.1343283582089554 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); position: relative; width: 120px; }\",\".framer-3KmK4 .framer-mfexy5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 60px; }\",\".framer-3KmK4 .framer-1g4s98r { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3KmK4 .framer-jm6uma { backface-visibility: hidden; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-3KmK4 .framer-1gdzx04-container { bottom: 4px; flex: none; height: auto; left: 9px; position: absolute; width: auto; }\",\".framer-3KmK4 .framer-btgovn { aspect-ratio: 0.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 504px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-3KmK4 .framer-ru7akx { display: grid; flex: none; gap: 0px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(4, minmax(0, 1fr)); height: 504px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 252px; }\",\".framer-3KmK4 .framer-1h0vncg-container, .framer-3KmK4 .framer-ssf85z-container, .framer-3KmK4 .framer-1xvb7se-container, .framer-3KmK4 .framer-k9gxyp-container, .framer-3KmK4 .framer-15137to-container, .framer-3KmK4 .framer-1jkcj3l-container, .framer-3KmK4 .framer-s13gn0-container, .framer-3KmK4 .framer-731ndk-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3KmK4 .framer-1it67ty { gap: 0px; } .framer-3KmK4 .framer-1it67ty > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3KmK4 .framer-1it67ty > :first-child { margin-top: 0px; } .framer-3KmK4 .framer-1it67ty > :last-child { margin-bottom: 0px; } }\",\".framer-3KmK4.framer-v-maxtt1 .framer-1gdzx04-container { bottom: unset; left: unset; right: 25px; top: 266px; }\",\".framer-3KmK4.framer-v-1cl5pka .framer-1gdzx04-container, .framer-3KmK4.framer-v-3szmp .framer-1gdzx04-container, .framer-3KmK4.framer-v-1xmdxcs .framer-1gdzx04-container { bottom: unset; left: 25px; top: 88%; }\",\".framer-3KmK4.framer-v-mzn47w .framer-btgovn, .framer-3KmK4.framer-v-1wqsfj1 .framer-btgovn, .framer-3KmK4.framer-v-149iymc .framer-btgovn { height: var(--framer-aspect-ratio-supported, 340px); }\",\".framer-3KmK4.framer-v-mzn47w .framer-ru7akx { bottom: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(85px, 1fr)); height: unset; right: 0px; width: unset; }\",\".framer-3KmK4.framer-v-mzn47w .framer-1h0vncg-container, .framer-3KmK4.framer-v-1wqsfj1 .framer-ssf85z-container, .framer-3KmK4.framer-v-149iymc .framer-1h0vncg-container { height: 85px; order: 0; width: 85px; }\",\".framer-3KmK4.framer-v-mzn47w .framer-ssf85z-container, .framer-3KmK4.framer-v-1wqsfj1 .framer-1h0vncg-container, .framer-3KmK4.framer-v-149iymc .framer-ssf85z-container { height: 85px; order: 1; width: 85px; }\",\".framer-3KmK4.framer-v-mzn47w .framer-1xvb7se-container, .framer-3KmK4.framer-v-1wqsfj1 .framer-k9gxyp-container, .framer-3KmK4.framer-v-149iymc .framer-1xvb7se-container { height: 85px; order: 2; width: 85px; }\",\".framer-3KmK4.framer-v-mzn47w .framer-k9gxyp-container, .framer-3KmK4.framer-v-1wqsfj1 .framer-1xvb7se-container, .framer-3KmK4.framer-v-149iymc .framer-k9gxyp-container { height: 85px; order: 3; width: 85px; }\",\".framer-3KmK4.framer-v-mzn47w .framer-15137to-container, .framer-3KmK4.framer-v-1wqsfj1 .framer-1jkcj3l-container, .framer-3KmK4.framer-v-149iymc .framer-15137to-container { height: 85px; order: 5; width: 85px; }\",\".framer-3KmK4.framer-v-mzn47w .framer-1jkcj3l-container, .framer-3KmK4.framer-v-1wqsfj1 .framer-15137to-container, .framer-3KmK4.framer-v-149iymc .framer-1jkcj3l-container { height: 85px; order: 4; width: 85px; }\",\".framer-3KmK4.framer-v-mzn47w .framer-s13gn0-container, .framer-3KmK4.framer-v-1wqsfj1 .framer-731ndk-container, .framer-3KmK4.framer-v-149iymc .framer-s13gn0-container { height: 85px; order: 7; width: 85px; }\",\".framer-3KmK4.framer-v-mzn47w .framer-731ndk-container, .framer-3KmK4.framer-v-1wqsfj1 .framer-s13gn0-container, .framer-3KmK4.framer-v-149iymc .framer-731ndk-container { height: 85px; order: 6; width: 85px; }\",\".framer-3KmK4.framer-v-1wqsfj1 .framer-ru7akx { bottom: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(85px, 1fr)); grid-template-rows: repeat(4, min-content); height: unset; right: 0px; width: unset; }\",\".framer-3KmK4.framer-v-149iymc .framer-ru7akx { grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(85px, 1fr)); grid-template-rows: repeat(4, min-content); height: 340px; width: 170px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 340\n * @framerIntrinsicWidth 170\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"zQeJy3WUT\":{\"layout\":[\"fixed\",\"fixed\"]},\"E11R2Aa4j\":{\"layout\":[\"fixed\",\"fixed\"]},\"jWFjgYG2j\":{\"layout\":[\"fixed\",\"fixed\"]},\"EkpekXwVk\":{\"layout\":[\"fixed\",\"fixed\"]},\"zMDrxlipW\":{\"layout\":[\"fixed\",\"fixed\"]},\"JZpLl8KQa\":{\"layout\":[\"fixed\",\"fixed\"]},\"oXBhxRSvD\":{\"layout\":[\"fixed\",\"fixed\"]},\"KvpMxwQgb\":{\"layout\":[\"fixed\",\"fixed\"]},\"BHIr78lyk\":{\"layout\":[\"fixed\",\"fixed\"]},\"GeWGT8Q3J\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerI30vi3MSb=withCSS(Component,css,\"framer-3KmK4\");export default FramerI30vi3MSb;FramerI30vi3MSb.displayName=\"minesweeper Copy\";FramerI30vi3MSb.defaultProps={height:340,width:170};addPropertyControls(FramerI30vi3MSb,{variant:{options:[\"mQZL7Kudg\",\"zQeJy3WUT\",\"E11R2Aa4j\",\"jWFjgYG2j\",\"EkpekXwVk\",\"zMDrxlipW\",\"JZpLl8KQa\",\"oXBhxRSvD\",\"KvpMxwQgb\",\"BHIr78lyk\",\"GeWGT8Q3J\"],optionTitles:[\"slack\",\"slack-flip\",\"clickup\",\"Clickup-flip\",\"ZOOM\",\"ZOOM-flip\",\"Notion\",\"Notion-flip\",\"multi-A\",\"multi-B\",\"multi-C\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerI30vi3MSb,[{explicitInter:true,fonts:[{family:\"Lark Circular Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/kD6uHRQCWWP966PnsDtH7Pe1pU.otf\"}]},...ButtonAnimatedFonts,...MinesweeperSFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerI30vi3MSb\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zQeJy3WUT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"E11R2Aa4j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jWFjgYG2j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EkpekXwVk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zMDrxlipW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JZpLl8KQa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oXBhxRSvD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KvpMxwQgb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BHIr78lyk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GeWGT8Q3J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"340\",\"framerIntrinsicWidth\":\"170\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "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", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "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", "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", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "content", "height", "id", "image", "visible", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pNI7oFRkn", "lNaLyt2jH", "sQlTfobF_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseLeave3hoia", "args", "onMouseEnter1of39np", "onMouseLeave1kazuro", "onMouseEnter75ybv2", "onMouseLeave1qpnopg", "onMouseEnterjzp74g", "onMouseLeaveiys10v", "onAppear1ys7xwf", "onAppears2jm1q", "useOnVariantChange", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "RichText", "css", "FrameraHjYBcJ6n", "withCSS", "aHjYBcJ6n_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonAnimatedFonts", "getFonts", "KDumY2tu3_default", "ButtonAnimatedMobileUspClickWithMappedReactProps1ibbo0l", "withMappedReactProps", "mobileUspClick", "KDumY2tu3_exports", "MinesweeperSFonts", "aHjYBcJ6n_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transformTemplate1", "_", "t", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterjk8gpi", "args", "onMouseLeave1sky7wa", "onMouseEnter1rpcmmk", "onMouseLeave1j7acjv", "onMouseEnterbzanwc", "onMouseLeave1wbebeh", "onMouseEnter10u8ko8", "onMouseLeave1s01wez", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "getLoadingLazyAtYPosition", "Image2", "RichText", "ComponentViewportProvider", "css", "FramerI30vi3MSb", "withCSS", "I30vi3MSb_default", "addPropertyControls", "ControlType", "addFonts"]
}
