{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/c5P69WXy1TehCTOYOk4M/PAUX8E20W1HINDPAcs2X/SDfkUGdag.js", "ssg:https://framerusercontent.com/modules/o2wtvDEQbfsKzkVTfkJs/10iilnjDmwFBrA77bSRE/IYIn9UDV8.js", "ssg:https://framerusercontent.com/modules/pTZbh2oWbe43oycTgIVJ/JV7SP6ittpKtgHDxTpXY/L7_Y3pVJs.js", "ssg:https://framerusercontent.com/modules/jm4maMQXnGMXopYevg0T/PUEh96j8xDCNVzfr0f6f/MQRoUVKXa.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 (4240133)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/zZLcG7jx0AHYnBZS7GFI/7DpfiiiBNljJUpXp295Y/Te7Qe2lcf.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/geQpI0KhSveetr9VfXnF/jEBkwe1ycdio1itEGOW4/VIw96SZkW.js\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"UEUm0NRBp\",\"bLLiXTy0l\",\"Rx3dPrxCi\",\"kDqeSNWZo\"];const serializationHash=\"framer-TbJdS\";const variantClassNames={bLLiXTy0l:\"framer-v-15aulit\",kDqeSNWZo:\"framer-v-3pwqmf\",Rx3dPrxCi:\"framer-v-1aej951\",UEUm0NRBp:\"framer-v-hruemy\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-40};const transition1={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"bLLiXTy0l\",FAQMobileClosed:\"kDqeSNWZo\",FAQMobileOpen:\"Rx3dPrxCi\",Open:\"UEUm0NRBp\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,m1wBZJAoM:(_ref=answer!==null&&answer!==void 0?answer:props.m1wBZJAoM)!==null&&_ref!==void 0?_ref:\"Uobo is an online pre-owned vehicle marketplace that allows customers to purchase their next vehicle from local dealerships completely online. We do that by partnering with dealers to help them reach an online market without significant time or money invested into it. Reach out to us for more info!\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"UEUm0NRBp\",vd59XDbg4:(_ref2=question!==null&&question!==void 0?question:props.vd59XDbg4)!==null&&_ref2!==void 0?_ref2:\"How does Uobo's platform work?\"};};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,vd59XDbg4,m1wBZJAoM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UEUm0NRBp\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapstur0d=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"bLLiXTy0l\");});const onTap2zrycv=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"UEUm0NRBp\");});const onTap1t370ha=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"kDqeSNWZo\");});const onTapwskxq3=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"Rx3dPrxCi\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"bLLiXTy0l\",\"kDqeSNWZo\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-hruemy\",className,classNames),\"data-framer-name\":\"Open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UEUm0NRBp\",onTap:onTapstur0d,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({bLLiXTy0l:{\"data-framer-name\":\"Closed\",onTap:onTap2zrycv},kDqeSNWZo:{\"data-framer-name\":\"FAQMobileClosed\",onTap:onTapwskxq3},Rx3dPrxCi:{\"data-framer-name\":\"FAQMobileOpen\",onTap:onTap1t370ha}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p2nlq\",layoutDependency:layoutDependency,layoutId:\"BFufxfBcz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(60, 130, 243)))\"},children:\"Which pricing plan is right for me?\"})}),className:\"framer-1qweuly\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VgnYnSzDr\",style:{\"--extracted-r6o4lv\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(60, 130, 243))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vd59XDbg4,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-znwc4x\",\"data-framer-name\":\"Chevron\",layoutDependency:layoutDependency,layoutId:\"a_hcA3M1j\",style:{rotate:-180},variants:{bLLiXTy0l:{rotate:0},kDqeSNWZo:{rotate:0}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-w2dmkq\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"rrUYJQXbm\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 19.5 8.25 L 12 15.75 L 4.5 8.25\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(223, 255, 222))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10716666806,withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cy0nto\",layoutDependency:layoutDependency,layoutId:\"mDGSYl82l\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2swmad\",\"data-styles-preset\":\"VIw96SZkW\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(60, 130, 243)))\"},children:\"You can cancel your plan whenever you\u2019d like. You\u2019ll be downgraded to the free plan. You won\u2019t be locked out of any projects that have paid plans.\"})}),className:\"framer-1se1vy2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lRTo4Lt4u\",style:{\"--extracted-r6o4lv\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(60, 130, 243))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:m1wBZJAoM,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kxqo3p\",\"data-framer-name\":\"Line Bottom\",layoutDependency:layoutDependency,layoutId:\"EezKioJON\",style:{backgroundColor:\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(223, 255, 222))\",opacity:.7}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TbJdS.framer-1uc7eiv, .framer-TbJdS .framer-1uc7eiv { display: block; }\",\".framer-TbJdS.framer-hruemy { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 617px; }\",\".framer-TbJdS .framer-1p2nlq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 24px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TbJdS .framer-1qweuly { flex: 1 0 0px; height: auto; max-width: 90%; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-TbJdS .framer-znwc4x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-TbJdS .framer-w2dmkq { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-TbJdS .framer-1cy0nto { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 0px; position: relative; width: 100%; }\",\".framer-TbJdS .framer-1se1vy2 { flex: 1 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-TbJdS .framer-1kxqo3p { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TbJdS.framer-hruemy, .framer-TbJdS .framer-znwc4x, .framer-TbJdS .framer-1cy0nto { gap: 0px; } .framer-TbJdS.framer-hruemy > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-TbJdS.framer-hruemy > :first-child { margin-top: 0px; } .framer-TbJdS.framer-hruemy > :last-child { margin-bottom: 0px; } .framer-TbJdS .framer-znwc4x > *, .framer-TbJdS .framer-1cy0nto > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TbJdS .framer-znwc4x > :first-child, .framer-TbJdS .framer-1cy0nto > :first-child { margin-left: 0px; } .framer-TbJdS .framer-znwc4x > :last-child, .framer-TbJdS .framer-1cy0nto > :last-child { margin-right: 0px; } }\",\".framer-TbJdS.framer-v-15aulit .framer-1p2nlq { height: min-content; }\",\".framer-TbJdS.framer-v-1aej951.framer-hruemy, .framer-TbJdS.framer-v-3pwqmf.framer-hruemy { width: 390px; }\",\".framer-TbJdS.framer-v-1aej951 .framer-1p2nlq, .framer-TbJdS.framer-v-3pwqmf .framer-1p2nlq { align-content: flex-start; align-items: flex-start; height: min-content; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 185\n * @framerIntrinsicWidth 617\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bLLiXTy0l\":{\"layout\":[\"fixed\",\"auto\"]},\"Rx3dPrxCi\":{\"layout\":[\"fixed\",\"auto\"]},\"kDqeSNWZo\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vd59XDbg4\":\"question\",\"m1wBZJAoM\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSDfkUGdag=withCSS(Component,css,\"framer-TbJdS\");export default FramerSDfkUGdag;FramerSDfkUGdag.displayName=\"FAQ\";FramerSDfkUGdag.defaultProps={height:185,width:617};addPropertyControls(FramerSDfkUGdag,{variant:{options:[\"UEUm0NRBp\",\"bLLiXTy0l\",\"Rx3dPrxCi\",\"kDqeSNWZo\"],optionTitles:[\"Open\",\"Closed\",\"FAQMobileOpen\",\"FAQMobileClosed\"],title:\"Variant\",type:ControlType.Enum},vd59XDbg4:{defaultValue:\"How does Uobo's platform work?\",displayTextArea:true,title:\"Question\",type:ControlType.String},m1wBZJAoM:{defaultValue:\"Uobo is an online pre-owned vehicle marketplace that allows customers to purchase their next vehicle from local dealerships completely online. We do that by partnering with dealers to help them reach an online market without significant time or money invested into it. Reach out to us for more info!\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerSDfkUGdag,[{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),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSDfkUGdag\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"185\",\"framerVariables\":\"{\\\"vd59XDbg4\\\":\\\"question\\\",\\\"m1wBZJAoM\\\":\\\"answer\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bLLiXTy0l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Rx3dPrxCi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kDqeSNWZo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"617\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SDfkUGdag.map", "// Generated by Framer (4240133)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import FAQ from\"https://framerusercontent.com/modules/c5P69WXy1TehCTOYOk4M/PAUX8E20W1HINDPAcs2X/SDfkUGdag.js\";const FAQFonts=getFonts(FAQ);const cycleOrder=[\"Sgkk7k_7P\",\"vgGMPPJp0\"];const serializationHash=\"framer-WbTo0\";const variantClassNames={Sgkk7k_7P:\"framer-v-1ui1dk5\",vgGMPPJp0:\"framer-v-1q3a7nt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={FAQDesktop:\"Sgkk7k_7P\",FAQMobile:\"vgGMPPJp0\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Sgkk7k_7P\"};};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:\"Sgkk7k_7P\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.ul,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ui1dk5\",className,classNames),\"data-framer-name\":\"FAQDesktop\",layoutDependency:layoutDependency,layoutId:\"Sgkk7k_7P\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({vgGMPPJp0:{\"data-framer-name\":\"FAQMobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:185,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-am3lcd-container\",layoutDependency:layoutDependency,layoutId:\"QqXQQnt3_-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"QqXQQnt3_\",layoutId:\"QqXQQnt3_\",m1wBZJAoM:\"Uobo is an online pre-owned vehicle marketplace that allows customers to purchase their next vehicle from local dealerships completely online. We do that by partnering with dealers to help them reach an online market without significant time or money invested into it. Reach out to us for more info!\",style:{width:\"100%\"},variant:\"bLLiXTy0l\",vd59XDbg4:\"How does Uobo's platform work?\",width:\"100%\",...addPropertyOverrides({vgGMPPJp0:{variant:\"kDqeSNWZo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:185,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+217,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-ka3zti-container\",layoutDependency:layoutDependency,layoutId:\"x7h3TI_EN-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"x7h3TI_EN\",layoutId:\"x7h3TI_EN\",m1wBZJAoM:\"Uobo has launched! You can find us on apple and android store.\",style:{width:\"100%\"},variant:\"bLLiXTy0l\",vd59XDbg4:\"When will the platform launch?\",width:\"100%\",...addPropertyOverrides({vgGMPPJp0:{variant:\"kDqeSNWZo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:185,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+434,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-t6p7gu-container\",layoutDependency:layoutDependency,layoutId:\"M7SGmYiaY-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"M7SGmYiaY\",layoutId:\"M7SGmYiaY\",m1wBZJAoM:\"Dealerships can easily join Uobo via the 'Join Uobo' button on our homepage. Simply fill in your dealership's information and you will be set!\",style:{width:\"100%\"},variant:\"bLLiXTy0l\",vd59XDbg4:\"How can dealerships join the platform?\\n\",width:\"100%\",...addPropertyOverrides({vgGMPPJp0:{variant:\"kDqeSNWZo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:185,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+651,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-1svihmh-container\",layoutDependency:layoutDependency,layoutId:\"HdLM49mgB-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"HdLM49mgB\",layoutId:\"HdLM49mgB\",m1wBZJAoM:\"Currently, Uobo focuses on partnering with dealerships in Ontario to transform the local car buying experience. Expansion plans will be announced post-launch.\",style:{width:\"100%\"},variant:\"bLLiXTy0l\",vd59XDbg4:\"Is Uobo operating in Ontario, Canada?\",width:\"100%\",...addPropertyOverrides({vgGMPPJp0:{variant:\"kDqeSNWZo\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WbTo0.framer-smthbw, .framer-WbTo0 .framer-smthbw { display: block; }\",\".framer-WbTo0.framer-1ui1dk5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; list-style: none; margin: 0px; overflow: visible; padding: 0px; position: relative; width: 1008px; }\",\".framer-WbTo0 .framer-am3lcd-container, .framer-WbTo0 .framer-ka3zti-container, .framer-WbTo0 .framer-t6p7gu-container, .framer-WbTo0 .framer-1svihmh-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WbTo0.framer-1ui1dk5 { gap: 0px; } .framer-WbTo0.framer-1ui1dk5 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-WbTo0.framer-1ui1dk5 > :first-child { margin-top: 0px; } .framer-WbTo0.framer-1ui1dk5 > :last-child { margin-bottom: 0px; } }\",\".framer-WbTo0.framer-v-1q3a7nt.framer-1ui1dk5 { width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 343\n * @framerIntrinsicWidth 1008\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vgGMPPJp0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIYIn9UDV8=withCSS(Component,css,\"framer-WbTo0\");export default FramerIYIn9UDV8;FramerIYIn9UDV8.displayName=\"FAQList\";FramerIYIn9UDV8.defaultProps={height:343,width:1008};addPropertyControls(FramerIYIn9UDV8,{variant:{options:[\"Sgkk7k_7P\",\"vgGMPPJp0\"],optionTitles:[\"FAQDesktop\",\"FAQMobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerIYIn9UDV8,[{explicitInter:true,fonts:[]},...FAQFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIYIn9UDV8\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vgGMPPJp0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1008\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"343\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IYIn9UDV8.map", "// Generated by Framer (21ec140)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"BJ65TGro0\",\"bBm11Cq9m\"];const serializationHash=\"framer-Vuv5d\";const variantClassNames={bBm11Cq9m:\"framer-v-wstdxs\",BJ65TGro0:\"framer-v-da9bnz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Apple:\"BJ65TGro0\",Google:\"bBm11Cq9m\"};const getProps=({height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"BJ65TGro0\",WUob8kdGD:link!==null&&link!==void 0?link:props.WUob8kdGD};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,WUob8kdGD,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BJ65TGro0\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"bBm11Cq9m\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"bBm11Cq9m\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:WUob8kdGD,openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,\"aria-label\":\"button\",className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-da9bnz\",className,classNames)} framer-2skbph`,\"data-framer-name\":\"Apple\",layoutDependency:layoutDependency,layoutId:\"BJ65TGro0\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115))\",borderBottomLeftRadius:308,borderBottomRightRadius:308,borderTopLeftRadius:308,borderTopRightRadius:308,...style},...addPropertyOverrides({bBm11Cq9m:{\"data-framer-name\":\"Google\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1c8h4s4\",\"data-framer-name\":\"app_store_5f767c31\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"uPnkkgaZa\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100 40\"><path d=\"M 71.527 19.2 L 71.527 21.492 L 70.09 21.492 L 70.09 22.994 L 71.526 22.994 L 71.526 28.1 C 71.526 29.844 72.314 30.54 74.298 30.54 C 74.647 30.54 74.978 30.5 75.269 30.45 L 75.269 28.964 C 75.02 28.988 74.863 29.005 74.589 29.005 C 73.7 29.005 73.31 28.59 73.31 27.644 L 73.31 22.995 L 75.27 22.995 L 75.27 21.493 L 73.31 21.493 L 73.31 19.2 L 71.526 19.2 Z M 80.324 30.664 C 82.964 30.664 84.582 28.896 84.582 25.966 C 84.582 23.052 82.956 21.276 80.324 21.276 C 77.684 21.276 76.058 23.052 76.058 25.966 C 76.058 28.896 77.676 30.664 80.324 30.664 Z M 80.324 29.079 C 78.772 29.079 77.9 27.942 77.9 25.966 C 77.9 24.007 78.772 22.861 80.324 22.861 C 81.868 22.861 82.748 24.007 82.748 25.966 C 82.748 27.933 81.868 29.079 80.324 29.079 Z M 85.967 30.49 L 87.752 30.49 L 87.752 25.153 C 87.752 23.883 88.707 23.028 90.06 23.028 C 90.375 23.028 90.906 23.086 91.056 23.135 L 91.056 21.375 C 90.865 21.325 90.524 21.301 90.259 21.301 C 89.08 21.301 88.076 21.948 87.819 22.837 L 87.686 22.837 L 87.686 21.45 L 85.967 21.45 Z M 95.487 22.795 C 96.807 22.795 97.67 23.716 97.712 25.135 L 93.146 25.135 C 93.246 23.725 94.167 22.795 95.487 22.795 Z M 97.703 28.049 C 97.371 28.755 96.633 29.145 95.553 29.145 C 94.126 29.145 93.204 28.141 93.146 26.555 L 93.146 26.455 L 99.53 26.455 L 99.53 25.833 C 99.53 22.994 98.01 21.276 95.495 21.276 C 92.947 21.276 91.328 23.11 91.328 25.999 C 91.328 28.888 92.914 30.664 95.504 30.664 C 97.571 30.664 99.015 29.668 99.422 28.049 Z M 59.823 27.152 C 59.961 29.372 61.811 30.791 64.563 30.791 C 67.506 30.791 69.347 29.303 69.347 26.928 C 69.347 25.061 68.297 24.028 65.751 23.435 L 64.383 23.1 C 62.766 22.72 62.112 22.213 62.112 21.327 C 62.112 20.209 63.127 19.477 64.65 19.477 C 66.095 19.477 67.093 20.192 67.274 21.336 L 69.149 21.336 C 69.037 19.246 67.196 17.774 64.675 17.774 C 61.965 17.774 60.159 19.245 60.159 21.456 C 60.159 23.28 61.182 24.364 63.428 24.889 L 65.028 25.276 C 66.671 25.663 67.394 26.231 67.394 27.178 C 67.394 28.278 66.258 29.078 64.71 29.078 C 63.05 29.078 61.897 28.33 61.733 27.152 Z M 41.336 21.301 C 40.107 21.301 39.045 21.915 38.496 22.945 L 38.364 22.945 L 38.364 21.45 L 36.646 21.45 L 36.646 33.495 L 38.431 33.495 L 38.431 29.12 L 38.571 29.12 C 39.045 30.075 40.066 30.64 41.352 30.64 C 43.635 30.64 45.088 28.838 45.088 25.966 C 45.088 23.094 43.635 21.301 41.336 21.301 Z M 40.829 29.037 C 39.335 29.037 38.397 27.859 38.397 25.974 C 38.397 24.082 39.335 22.903 40.837 22.903 C 42.348 22.903 43.253 24.057 43.253 25.966 C 43.253 27.884 42.348 29.037 40.829 29.037 Z M 51.333 21.301 C 50.104 21.301 49.042 21.915 48.493 22.945 L 48.361 22.945 L 48.361 21.45 L 46.643 21.45 L 46.643 33.495 L 48.427 33.495 L 48.427 29.12 L 48.568 29.12 C 49.042 30.075 50.063 30.64 51.349 30.64 C 53.632 30.64 55.085 28.838 55.085 25.966 C 55.085 23.094 53.632 21.301 51.333 21.301 Z M 50.826 29.037 C 49.332 29.037 48.394 27.859 48.394 25.974 C 48.394 24.082 49.332 22.903 50.834 22.903 C 52.345 22.903 53.25 24.057 53.25 25.966 C 53.25 27.884 52.345 29.037 50.826 29.037 Z M 33.444 30.49 L 35.491 30.49 L 31.01 18.075 L 28.937 18.075 L 24.453 30.49 L 26.432 30.49 L 27.576 27.195 L 32.308 27.195 Z M 29.874 20.33 L 30.02 20.33 L 31.818 25.577 L 28.067 25.577 L 29.873 20.329 Z M 25.65 8.71 L 25.65 14.7 L 27.813 14.7 C 29.597 14.7 30.631 13.6 30.631 11.687 C 30.631 9.802 29.589 8.711 27.813 8.711 L 25.65 8.711 Z M 26.58 9.558 L 27.709 9.558 C 28.95 9.558 29.685 10.346 29.685 11.699 C 29.685 13.073 28.962 13.853 27.709 13.853 L 26.58 13.853 Z M 33.796 14.787 C 35.116 14.787 35.926 13.903 35.926 12.438 C 35.926 10.981 35.112 10.093 33.796 10.093 C 32.476 10.093 31.663 10.981 31.663 12.438 C 31.663 13.903 32.472 14.788 33.796 14.788 Z M 33.796 13.994 C 33.02 13.994 32.584 13.426 32.584 12.438 C 32.584 11.458 33.02 10.886 33.796 10.886 C 34.568 10.886 35.008 11.459 35.008 12.438 C 35.008 13.422 34.568 13.994 33.796 13.994 Z M 42.817 10.18 L 41.925 10.18 L 41.12 13.63 L 41.05 13.63 L 40.12 10.18 L 39.265 10.18 L 38.335 13.63 L 38.268 13.63 L 37.459 10.18 L 36.554 10.18 L 37.8 14.7 L 38.718 14.7 L 39.648 11.371 L 39.718 11.371 L 40.652 14.7 L 41.577 14.7 L 42.818 10.18 Z M 43.845 14.7 L 44.737 14.7 L 44.737 12.056 C 44.737 11.351 45.157 10.911 45.817 10.911 C 46.477 10.911 46.792 11.271 46.792 11.998 L 46.792 14.7 L 47.684 14.7 L 47.684 11.774 C 47.684 10.699 47.128 10.093 46.119 10.093 C 45.439 10.093 44.99 10.396 44.77 10.898 L 44.704 10.898 L 44.704 10.18 L 43.844 10.18 L 43.844 14.7 Z M 49.09 14.7 L 49.982 14.7 L 49.982 8.416 L 49.089 8.416 L 49.089 14.7 Z M 53.338 14.787 C 54.658 14.787 55.467 13.903 55.467 12.438 C 55.467 10.981 54.653 10.093 53.337 10.093 C 52.017 10.093 51.204 10.981 51.204 12.438 C 51.204 13.903 52.014 14.788 53.338 14.788 Z M 53.338 13.994 C 52.562 13.994 52.126 13.426 52.126 12.438 C 52.126 11.458 52.562 10.886 53.338 10.886 C 54.11 10.886 54.55 11.459 54.55 12.438 C 54.55 13.422 54.11 13.994 53.338 13.994 Z M 58.126 14.023 C 57.64 14.023 57.287 13.787 57.287 13.38 C 57.287 12.982 57.569 12.77 58.192 12.728 L 59.296 12.658 L 59.296 13.036 C 59.296 13.596 58.798 14.023 58.126 14.023 Z M 57.897 14.775 C 58.491 14.775 58.985 14.517 59.254 14.065 L 59.325 14.065 L 59.325 14.7 L 60.185 14.7 L 60.185 11.612 C 60.185 10.658 59.545 10.093 58.412 10.093 C 57.387 10.093 56.656 10.591 56.565 11.367 L 57.428 11.367 C 57.528 11.047 57.872 10.865 58.37 10.865 C 58.98 10.865 59.296 11.135 59.296 11.612 L 59.296 12.002 L 58.072 12.072 C 56.997 12.139 56.391 12.608 56.391 13.422 C 56.391 14.248 57.026 14.775 57.897 14.775 Z M 63.212 14.775 C 63.835 14.775 64.362 14.48 64.632 13.986 L 64.702 13.986 L 64.702 14.7 L 65.557 14.7 L 65.557 8.416 L 64.665 8.416 L 64.665 10.898 L 64.598 10.898 C 64.354 10.4 63.831 10.105 63.212 10.105 C 62.071 10.105 61.336 11.01 61.336 12.438 C 61.336 13.87 62.063 14.775 63.212 14.775 Z M 63.465 10.906 C 64.213 10.906 64.681 11.5 64.681 12.442 C 64.681 13.388 64.217 13.974 63.465 13.974 C 62.71 13.974 62.258 13.397 62.258 12.438 C 62.258 11.488 62.714 10.906 63.465 10.906 Z M 71.344 14.787 C 72.664 14.787 73.473 13.903 73.473 12.438 C 73.473 10.981 72.659 10.093 71.343 10.093 C 70.023 10.093 69.21 10.981 69.21 12.438 C 69.21 13.903 70.02 14.788 71.344 14.788 Z M 71.344 13.994 C 70.568 13.994 70.132 13.426 70.132 12.438 C 70.132 11.458 70.568 10.886 71.344 10.886 C 72.116 10.886 72.556 11.459 72.556 12.438 C 72.556 13.422 72.116 13.994 71.344 13.994 Z M 74.654 14.7 L 75.546 14.7 L 75.546 12.056 C 75.546 11.351 75.966 10.911 76.626 10.911 C 77.286 10.911 77.601 11.271 77.601 11.998 L 77.601 14.7 L 78.493 14.7 L 78.493 11.774 C 78.493 10.699 77.937 10.093 76.929 10.093 C 76.248 10.093 75.799 10.396 75.579 10.898 L 75.513 10.898 L 75.513 10.18 L 74.654 10.18 Z M 82.603 9.055 L 82.603 10.201 L 81.885 10.201 L 81.885 10.952 L 82.603 10.952 L 82.603 13.505 C 82.603 14.376 82.997 14.725 83.989 14.725 C 84.163 14.725 84.329 14.705 84.475 14.679 L 84.475 13.936 C 84.362 13.95 84.249 13.957 84.135 13.957 C 83.69 13.957 83.495 13.749 83.495 13.277 L 83.495 10.952 L 84.475 10.952 L 84.475 10.201 L 83.495 10.201 L 83.495 9.055 Z M 85.672 14.7 L 86.565 14.7 L 86.565 12.06 C 86.565 11.376 86.972 10.915 87.702 10.915 C 88.332 10.915 88.669 11.28 88.669 12.002 L 88.669 14.7 L 89.561 14.7 L 89.561 11.782 C 89.561 10.707 88.968 10.097 88.005 10.097 C 87.325 10.097 86.847 10.4 86.627 10.907 L 86.557 10.907 L 86.557 8.417 L 85.672 8.417 Z M 92.78 10.852 C 93.44 10.852 93.872 11.313 93.893 12.022 L 91.61 12.022 C 91.66 11.317 92.121 10.852 92.78 10.852 Z M 93.889 13.48 C 93.723 13.832 93.353 14.028 92.814 14.028 C 92.1 14.028 91.639 13.525 91.61 12.733 L 91.61 12.683 L 94.802 12.683 L 94.802 12.372 C 94.802 10.952 94.042 10.093 92.785 10.093 C 91.51 10.093 90.701 11.01 90.701 12.455 C 90.701 13.899 91.494 14.787 92.789 14.787 C 93.822 14.787 94.544 14.289 94.748 13.48 Z M 14.77 20.3 C 14.8 18.606 15.687 17.043 17.127 16.149 C 16.204 14.848 14.729 14.05 13.135 13.991 C 11.456 13.815 9.828 14.996 8.972 14.996 C 8.1 14.996 6.782 14.009 5.364 14.038 C 3.5 14.107 1.806 15.14 0.891 16.766 C -1.043 20.114 0.4 25.036 2.252 27.742 C 3.179 29.067 4.262 30.547 5.68 30.495 C 7.067 30.437 7.585 29.61 9.26 29.61 C 10.918 29.61 11.404 30.495 12.85 30.462 C 14.339 30.438 15.276 29.13 16.17 27.792 C 16.836 26.848 17.349 25.804 17.69 24.7 C 15.929 23.944 14.783 22.216 14.77 20.3 Z M 12.038 12.211 C 12.849 11.237 13.249 9.985 13.153 8.721 C 11.913 8.851 10.768 9.444 9.945 10.381 C 9.138 11.307 8.727 12.514 8.802 13.741 C 10.057 13.747 11.246 13.184 12.038 12.211 Z\" fill=\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(18, 18, 18)) /* {&quot;name&quot;:&quot;BgColor&quot;} */\"></path></svg>',svgContentId:223571334,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-15sv4v9\",\"data-framer-name\":\"play_store_b3d2b74a\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"NBg4KcyCq\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 116 40\"><path d=\"M 58.137 21.751 C 55.785 21.751 53.868 23.541 53.868 26.004 C 53.868 28.454 55.785 30.257 58.137 30.257 C 60.49 30.257 62.407 28.453 62.407 26.004 C 62.406 23.54 60.489 21.751 58.137 21.751 Z M 58.137 28.583 C 56.848 28.583 55.737 27.52 55.737 26.005 C 55.737 24.475 56.849 23.427 58.137 23.427 C 59.426 23.427 60.537 24.474 60.537 26.005 C 60.537 27.519 59.426 28.583 58.137 28.583 Z M 48.823 21.751 C 46.471 21.751 44.554 23.541 44.554 26.004 C 44.554 28.454 46.471 30.257 48.823 30.257 C 51.176 30.257 53.093 28.453 53.093 26.004 C 53.093 23.54 51.176 21.751 48.823 21.751 Z M 48.823 28.583 C 47.534 28.583 46.423 27.52 46.423 26.005 C 46.423 24.475 47.535 23.427 48.823 23.427 C 50.112 23.427 51.223 24.474 51.223 26.005 C 51.224 27.519 50.112 28.583 48.823 28.583 Z M 37.745 23.057 L 37.745 24.861 L 42.063 24.861 C 41.934 25.876 41.596 26.617 41.08 27.132 C 40.452 27.76 39.469 28.453 37.745 28.453 C 35.087 28.453 33.009 26.31 33.009 23.653 C 33.009 20.994 35.087 18.851 37.745 18.851 C 39.179 18.851 40.226 19.415 40.999 20.141 L 42.272 18.867 C 41.192 17.837 39.759 17.047 37.745 17.047 C 34.104 17.047 31.043 20.011 31.043 23.652 C 31.043 27.293 34.104 30.257 37.745 30.257 C 39.71 30.257 41.193 29.612 42.352 28.404 C 43.544 27.212 43.915 25.536 43.915 24.184 C 43.919 23.806 43.887 23.428 43.818 23.056 L 37.745 23.056 Z M 83.053 24.458 C 82.699 23.508 81.619 21.751 79.412 21.751 C 77.221 21.751 75.4 23.475 75.4 26.004 C 75.4 28.388 77.205 30.257 79.621 30.257 C 81.57 30.257 82.698 29.065 83.166 28.372 L 81.716 27.405 C 81.233 28.115 80.572 28.581 79.621 28.581 C 78.671 28.581 77.994 28.146 77.559 27.292 L 83.246 24.94 Z M 77.253 25.876 C 77.205 24.232 78.526 23.396 79.477 23.396 C 80.218 23.396 80.846 23.766 81.056 24.297 L 77.253 25.877 Z M 72.63 30 L 74.498 30 L 74.498 17.5 L 72.63 17.5 Z M 69.568 22.702 L 69.504 22.702 C 69.085 22.202 68.279 21.752 67.265 21.752 C 65.138 21.752 63.189 23.62 63.189 26.022 C 63.189 28.405 65.138 30.258 67.265 30.258 C 68.28 30.258 69.085 29.808 69.504 29.292 L 69.568 29.292 L 69.568 29.904 C 69.568 31.531 68.698 32.401 67.297 32.401 C 66.153 32.401 65.444 31.581 65.154 30.887 L 63.527 31.564 C 63.994 32.691 65.234 34.077 67.297 34.077 C 69.488 34.077 71.341 32.788 71.341 29.647 L 71.341 22.01 L 69.569 22.01 L 69.569 22.702 Z M 67.426 28.583 C 66.137 28.583 65.058 27.503 65.058 26.021 C 65.058 24.522 66.137 23.427 67.426 23.427 C 68.698 23.427 69.697 24.522 69.697 26.021 C 69.697 27.503 68.698 28.583 67.426 28.583 Z M 91.807 17.5 L 87.336 17.5 L 87.336 30 L 89.201 30 L 89.201 25.264 L 91.806 25.264 C 93.874 25.264 95.908 23.767 95.908 21.382 C 95.908 18.997 93.875 17.499 91.807 17.499 Z M 91.855 23.525 L 89.201 23.525 L 89.201 19.24 L 91.855 19.24 C 93.25 19.24 94.042 20.395 94.042 21.383 C 94.042 22.351 93.25 23.525 91.855 23.525 Z M 103.387 21.73 C 102.036 21.73 100.637 22.325 100.058 23.644 L 101.714 24.335 C 102.068 23.645 102.728 23.418 103.419 23.418 C 104.384 23.418 105.365 23.998 105.381 25.026 L 105.381 25.156 C 105.043 24.962 104.319 24.673 103.435 24.673 C 101.65 24.673 99.832 25.654 99.832 27.487 C 99.832 29.16 101.296 30.237 102.936 30.237 C 104.19 30.237 104.882 29.674 105.316 29.014 L 105.38 29.014 L 105.38 29.979 L 107.182 29.979 L 107.182 25.186 C 107.183 22.968 105.525 21.73 103.387 21.73 Z M 103.161 28.581 C 102.551 28.581 101.698 28.275 101.698 27.519 C 101.698 26.554 102.76 26.184 103.677 26.184 C 104.496 26.184 104.883 26.361 105.381 26.602 C 105.24 27.724 104.292 28.57 103.161 28.582 Z M 113.744 22.003 L 111.605 27.423 L 111.541 27.423 L 109.321 22.003 L 107.311 22.003 L 110.64 29.578 L 108.742 33.792 L 110.688 33.792 L 115.819 22.003 Z M 96.938 30 L 98.803 30 L 98.803 17.5 L 96.938 17.5 Z M 37.418 10.243 C 37.418 11.081 37.17 11.748 36.673 12.246 C 36.109 12.838 35.373 13.134 34.469 13.134 C 33.603 13.134 32.866 12.834 32.261 12.234 C 31.655 11.633 31.351 10.889 31.351 10.001 C 31.351 9.111 31.655 8.368 32.261 7.768 C 32.866 7.167 33.603 6.867 34.469 6.867 C 34.899 6.867 35.309 6.951 35.699 7.117 C 36.091 7.286 36.404 7.509 36.638 7.787 L 36.111 8.316 C 35.714 7.841 35.167 7.604 34.468 7.604 C 33.836 7.604 33.29 7.826 32.828 8.27 C 32.368 8.714 32.138 9.29 32.138 10 C 32.138 10.709 32.368 11.286 32.828 11.73 C 33.263 12.164 33.854 12.404 34.468 12.396 C 35.138 12.396 35.697 12.173 36.144 11.726 C 36.434 11.435 36.602 11.03 36.647 10.511 L 34.467 10.511 L 34.467 9.79 L 37.375 9.79 C 37.405 9.947 37.418 10.098 37.418 10.243 Z M 42.028 7.737 L 39.296 7.737 L 39.296 9.639 L 41.76 9.639 L 41.76 10.36 L 39.296 10.36 L 39.296 12.262 L 42.028 12.262 L 42.028 13 L 38.525 13 L 38.525 7 L 42.028 7 Z M 45.279 13 L 44.507 13 L 44.507 7.737 L 42.832 7.737 L 42.832 7 L 46.955 7 L 46.955 7.737 L 45.279 7.737 Z M 49.938 13 L 49.938 7 L 50.708 7 L 50.708 13 Z M 54.128 13 L 53.357 13 L 53.357 7.737 L 51.68 7.737 L 51.68 7 L 55.803 7 L 55.803 7.737 L 54.127 7.737 L 54.127 13 Z M 63.608 12.225 C 63.018 12.831 62.285 13.134 61.408 13.134 C 60.531 13.134 59.798 12.831 59.209 12.225 C 58.619 11.619 58.325 10.877 58.325 10 C 58.325 9.123 58.619 8.381 59.209 7.775 C 59.799 7.169 60.531 6.865 61.409 6.865 C 62.28 6.865 63.012 7.17 63.604 7.779 C 64.196 8.388 64.492 9.128 64.492 10 C 64.492 10.877 64.197 11.619 63.608 12.225 Z M 59.778 11.722 C 60.204 12.164 60.794 12.409 61.408 12.396 C 62.051 12.396 62.595 12.171 63.038 11.722 C 63.482 11.272 63.705 10.698 63.705 10 C 63.705 9.302 63.482 8.728 63.038 8.278 C 62.613 7.836 62.022 7.591 61.408 7.604 C 60.765 7.604 60.222 7.829 59.778 8.278 C 59.335 8.728 59.112 9.302 59.112 10 C 59.112 10.698 59.335 11.272 59.778 11.722 Z M 65.575 13 L 65.575 7 L 66.513 7 L 69.428 11.667 L 69.462 11.667 L 69.428 10.511 L 69.428 7 L 70.2 7 L 70.2 13 L 69.394 13 L 66.344 8.106 L 66.311 8.106 L 66.343 9.262 L 66.343 13 L 65.574 13 Z\" fill=\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(18, 18, 18)) /* {&quot;name&quot;:&quot;BgColor&quot;} */\"></path><path d=\"M 37.418 10.243 C 37.418 11.081 37.17 11.748 36.673 12.246 C 36.109 12.838 35.373 13.134 34.469 13.134 C 33.603 13.134 32.866 12.834 32.261 12.234 C 31.655 11.633 31.351 10.889 31.351 10.001 C 31.351 9.111 31.655 8.368 32.261 7.768 C 32.866 7.167 33.603 6.867 34.469 6.867 C 34.899 6.867 35.309 6.951 35.699 7.117 C 36.091 7.286 36.404 7.509 36.638 7.787 L 36.111 8.316 C 35.714 7.841 35.167 7.604 34.468 7.604 C 33.836 7.604 33.29 7.826 32.828 8.27 C 32.368 8.714 32.138 9.29 32.138 10 C 32.138 10.709 32.368 11.286 32.828 11.73 C 33.263 12.164 33.854 12.404 34.468 12.396 C 35.138 12.396 35.697 12.173 36.144 11.726 C 36.434 11.435 36.602 11.03 36.647 10.511 L 34.467 10.511 L 34.467 9.79 L 37.375 9.79 C 37.405 9.947 37.418 10.098 37.418 10.243 Z M 42.028 7.737 L 39.296 7.737 L 39.296 9.639 L 41.76 9.639 L 41.76 10.36 L 39.296 10.36 L 39.296 12.262 L 42.028 12.262 L 42.028 13 L 38.525 13 L 38.525 7 L 42.028 7 Z M 45.279 13 L 44.507 13 L 44.507 7.737 L 42.832 7.737 L 42.832 7 L 46.955 7 L 46.955 7.737 L 45.279 7.737 Z M 49.938 13 L 49.938 7 L 50.708 7 L 50.708 13 Z M 54.128 13 L 53.357 13 L 53.357 7.737 L 51.68 7.737 L 51.68 7 L 55.803 7 L 55.803 7.737 L 54.127 7.737 L 54.127 13 Z M 63.608 12.225 C 63.018 12.831 62.285 13.134 61.408 13.134 C 60.531 13.134 59.798 12.831 59.209 12.225 C 58.619 11.619 58.325 10.877 58.325 10 C 58.325 9.123 58.619 8.381 59.209 7.775 C 59.799 7.169 60.531 6.865 61.409 6.865 C 62.28 6.865 63.012 7.17 63.604 7.779 C 64.196 8.388 64.492 9.128 64.492 10 C 64.492 10.877 64.197 11.619 63.608 12.225 Z M 59.778 11.722 C 60.204 12.164 60.794 12.409 61.408 12.396 C 62.051 12.396 62.595 12.171 63.038 11.722 C 63.482 11.272 63.705 10.698 63.705 10 C 63.705 9.302 63.482 8.728 63.038 8.278 C 62.613 7.836 62.022 7.591 61.408 7.604 C 60.765 7.604 60.222 7.829 59.778 8.278 C 59.335 8.728 59.112 9.302 59.112 10 C 59.112 10.698 59.335 11.272 59.778 11.722 Z M 65.575 13 L 65.575 7 L 66.513 7 L 69.428 11.667 L 69.462 11.667 L 69.428 10.511 L 69.428 7 L 70.2 7 L 70.2 13 L 69.394 13 L 66.344 8.106 L 66.311 8.106 L 66.343 9.262 L 66.343 13 L 65.574 13 Z\" fill=\"transparent\" stroke-width=\"0.2\" stroke=\"rgba(255, 255, 255, 0)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 15.855 14.232 L 4.334 7.551 C 3.885 7.282 3.371 7.14 2.848 7.14 C 1.726 7.14 0.741 7.819 0.268 8.769 L 0.354 8.855 L 10.794 19.293 L 15.855 14.233 Z M -0.026 9.89 C -0.028 9.932 -0.029 9.975 -0.029 10.017 L -0.029 29.985 C -0.029 30.027 -0.029 30.07 -0.026 30.112 L 10.087 20 L -0.026 9.889 Z M 0.268 31.232 C 0.741 32.182 1.727 32.862 2.848 32.862 C 3.379 32.862 3.878 32.718 4.307 32.465 L 4.341 32.445 L 15.875 25.788 L 10.795 20.708 L 0.355 31.146 Z M 16.772 25.27 L 21.469 22.56 C 22.399 22.06 22.981 21.091 22.985 20.035 C 22.988 18.979 22.413 18.006 21.486 17.5 L 21.476 17.493 L 16.751 14.753 L 11.5 20 L 16.771 25.27 Z\" fill=\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(18, 18, 18)) /* {&quot;name&quot;:&quot;BgColor&quot;} */\"></path></svg>',svgContentId:11142628854,withExternalLayout:true,...addPropertyOverrides({bBm11Cq9m:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 116 40\"><path d=\"M 58.137 21.751 C 55.785 21.751 53.868 23.541 53.868 26.004 C 53.868 28.454 55.785 30.257 58.137 30.257 C 60.49 30.257 62.407 28.453 62.407 26.004 C 62.406 23.54 60.489 21.751 58.137 21.751 Z M 58.137 28.583 C 56.848 28.583 55.737 27.52 55.737 26.005 C 55.737 24.475 56.849 23.427 58.137 23.427 C 59.426 23.427 60.537 24.474 60.537 26.005 C 60.537 27.519 59.426 28.583 58.137 28.583 Z M 48.823 21.751 C 46.471 21.751 44.554 23.541 44.554 26.004 C 44.554 28.454 46.471 30.257 48.823 30.257 C 51.176 30.257 53.093 28.453 53.093 26.004 C 53.093 23.54 51.176 21.751 48.823 21.751 Z M 48.823 28.583 C 47.534 28.583 46.423 27.52 46.423 26.005 C 46.423 24.475 47.535 23.427 48.823 23.427 C 50.112 23.427 51.223 24.474 51.223 26.005 C 51.224 27.519 50.112 28.583 48.823 28.583 Z M 37.745 23.057 L 37.745 24.861 L 42.063 24.861 C 41.934 25.876 41.596 26.617 41.08 27.132 C 40.452 27.76 39.469 28.453 37.745 28.453 C 35.087 28.453 33.009 26.31 33.009 23.653 C 33.009 20.994 35.087 18.851 37.745 18.851 C 39.179 18.851 40.226 19.415 40.999 20.141 L 42.272 18.867 C 41.192 17.837 39.759 17.047 37.745 17.047 C 34.104 17.047 31.043 20.011 31.043 23.652 C 31.043 27.293 34.104 30.257 37.745 30.257 C 39.71 30.257 41.193 29.612 42.352 28.404 C 43.544 27.212 43.915 25.536 43.915 24.184 C 43.919 23.806 43.887 23.428 43.818 23.056 L 37.745 23.056 Z M 83.053 24.458 C 82.699 23.508 81.619 21.751 79.412 21.751 C 77.221 21.751 75.4 23.475 75.4 26.004 C 75.4 28.388 77.205 30.257 79.621 30.257 C 81.57 30.257 82.698 29.065 83.166 28.372 L 81.716 27.405 C 81.233 28.115 80.572 28.581 79.621 28.581 C 78.671 28.581 77.994 28.146 77.559 27.292 L 83.246 24.94 Z M 77.253 25.876 C 77.205 24.232 78.526 23.396 79.477 23.396 C 80.218 23.396 80.846 23.766 81.056 24.297 L 77.253 25.877 Z M 72.63 30 L 74.498 30 L 74.498 17.5 L 72.63 17.5 Z M 69.568 22.702 L 69.504 22.702 C 69.085 22.202 68.279 21.752 67.265 21.752 C 65.138 21.752 63.189 23.62 63.189 26.022 C 63.189 28.405 65.138 30.258 67.265 30.258 C 68.28 30.258 69.085 29.808 69.504 29.292 L 69.568 29.292 L 69.568 29.904 C 69.568 31.531 68.698 32.401 67.297 32.401 C 66.153 32.401 65.444 31.581 65.154 30.887 L 63.527 31.564 C 63.994 32.691 65.234 34.077 67.297 34.077 C 69.488 34.077 71.341 32.788 71.341 29.647 L 71.341 22.01 L 69.569 22.01 L 69.569 22.702 Z M 67.426 28.583 C 66.137 28.583 65.058 27.503 65.058 26.021 C 65.058 24.522 66.137 23.427 67.426 23.427 C 68.698 23.427 69.697 24.522 69.697 26.021 C 69.697 27.503 68.698 28.583 67.426 28.583 Z M 91.807 17.5 L 87.336 17.5 L 87.336 30 L 89.201 30 L 89.201 25.264 L 91.806 25.264 C 93.874 25.264 95.908 23.767 95.908 21.382 C 95.908 18.997 93.875 17.499 91.807 17.499 Z M 91.855 23.525 L 89.201 23.525 L 89.201 19.24 L 91.855 19.24 C 93.25 19.24 94.042 20.395 94.042 21.383 C 94.042 22.351 93.25 23.525 91.855 23.525 Z M 103.387 21.73 C 102.036 21.73 100.637 22.325 100.058 23.644 L 101.714 24.335 C 102.068 23.645 102.728 23.418 103.419 23.418 C 104.384 23.418 105.365 23.998 105.381 25.026 L 105.381 25.156 C 105.043 24.962 104.319 24.673 103.435 24.673 C 101.65 24.673 99.832 25.654 99.832 27.487 C 99.832 29.16 101.296 30.237 102.936 30.237 C 104.19 30.237 104.882 29.674 105.316 29.014 L 105.38 29.014 L 105.38 29.979 L 107.182 29.979 L 107.182 25.186 C 107.183 22.968 105.525 21.73 103.387 21.73 Z M 103.161 28.581 C 102.551 28.581 101.698 28.275 101.698 27.519 C 101.698 26.554 102.76 26.184 103.677 26.184 C 104.496 26.184 104.883 26.361 105.381 26.602 C 105.24 27.724 104.292 28.57 103.161 28.582 Z M 113.744 22.003 L 111.605 27.423 L 111.541 27.423 L 109.321 22.003 L 107.311 22.003 L 110.64 29.578 L 108.742 33.792 L 110.688 33.792 L 115.819 22.003 Z M 96.938 30 L 98.803 30 L 98.803 17.5 L 96.938 17.5 Z M 37.418 10.243 C 37.418 11.081 37.17 11.748 36.673 12.246 C 36.109 12.838 35.373 13.134 34.469 13.134 C 33.603 13.134 32.866 12.834 32.261 12.234 C 31.655 11.633 31.351 10.889 31.351 10.001 C 31.351 9.111 31.655 8.368 32.261 7.768 C 32.866 7.167 33.603 6.867 34.469 6.867 C 34.899 6.867 35.309 6.951 35.699 7.117 C 36.091 7.286 36.404 7.509 36.638 7.787 L 36.111 8.316 C 35.714 7.841 35.167 7.604 34.468 7.604 C 33.836 7.604 33.29 7.826 32.828 8.27 C 32.368 8.714 32.138 9.29 32.138 10 C 32.138 10.709 32.368 11.286 32.828 11.73 C 33.263 12.164 33.854 12.404 34.468 12.396 C 35.138 12.396 35.697 12.173 36.144 11.726 C 36.434 11.435 36.602 11.03 36.647 10.511 L 34.467 10.511 L 34.467 9.79 L 37.375 9.79 C 37.405 9.947 37.418 10.098 37.418 10.243 Z M 42.028 7.737 L 39.296 7.737 L 39.296 9.639 L 41.76 9.639 L 41.76 10.36 L 39.296 10.36 L 39.296 12.262 L 42.028 12.262 L 42.028 13 L 38.525 13 L 38.525 7 L 42.028 7 Z M 45.279 13 L 44.507 13 L 44.507 7.737 L 42.832 7.737 L 42.832 7 L 46.955 7 L 46.955 7.737 L 45.279 7.737 Z M 49.938 13 L 49.938 7 L 50.708 7 L 50.708 13 Z M 54.128 13 L 53.357 13 L 53.357 7.737 L 51.68 7.737 L 51.68 7 L 55.803 7 L 55.803 7.737 L 54.127 7.737 L 54.127 13 Z M 63.608 12.225 C 63.018 12.831 62.285 13.134 61.408 13.134 C 60.531 13.134 59.798 12.831 59.209 12.225 C 58.619 11.619 58.325 10.877 58.325 10 C 58.325 9.123 58.619 8.381 59.209 7.775 C 59.799 7.169 60.531 6.865 61.409 6.865 C 62.28 6.865 63.012 7.17 63.604 7.779 C 64.196 8.388 64.492 9.128 64.492 10 C 64.492 10.877 64.197 11.619 63.608 12.225 Z M 59.778 11.722 C 60.204 12.164 60.794 12.409 61.408 12.396 C 62.051 12.396 62.595 12.171 63.038 11.722 C 63.482 11.272 63.705 10.698 63.705 10 C 63.705 9.302 63.482 8.728 63.038 8.278 C 62.613 7.836 62.022 7.591 61.408 7.604 C 60.765 7.604 60.222 7.829 59.778 8.278 C 59.335 8.728 59.112 9.302 59.112 10 C 59.112 10.698 59.335 11.272 59.778 11.722 Z M 65.575 13 L 65.575 7 L 66.513 7 L 69.428 11.667 L 69.462 11.667 L 69.428 10.511 L 69.428 7 L 70.2 7 L 70.2 13 L 69.394 13 L 66.344 8.106 L 66.311 8.106 L 66.343 9.262 L 66.343 13 L 65.574 13 Z\" fill=\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(18, 18, 18)) /* {&quot;name&quot;:&quot;BgColor&quot;} */\"></path><path d=\"M 37.418 10.243 C 37.418 11.081 37.17 11.748 36.673 12.246 C 36.109 12.838 35.373 13.134 34.469 13.134 C 33.603 13.134 32.866 12.834 32.261 12.234 C 31.655 11.633 31.351 10.889 31.351 10.001 C 31.351 9.111 31.655 8.368 32.261 7.768 C 32.866 7.167 33.603 6.867 34.469 6.867 C 34.899 6.867 35.309 6.951 35.699 7.117 C 36.091 7.286 36.404 7.509 36.638 7.787 L 36.111 8.316 C 35.714 7.841 35.167 7.604 34.468 7.604 C 33.836 7.604 33.29 7.826 32.828 8.27 C 32.368 8.714 32.138 9.29 32.138 10 C 32.138 10.709 32.368 11.286 32.828 11.73 C 33.263 12.164 33.854 12.404 34.468 12.396 C 35.138 12.396 35.697 12.173 36.144 11.726 C 36.434 11.435 36.602 11.03 36.647 10.511 L 34.467 10.511 L 34.467 9.79 L 37.375 9.79 C 37.405 9.947 37.418 10.098 37.418 10.243 Z M 42.028 7.737 L 39.296 7.737 L 39.296 9.639 L 41.76 9.639 L 41.76 10.36 L 39.296 10.36 L 39.296 12.262 L 42.028 12.262 L 42.028 13 L 38.525 13 L 38.525 7 L 42.028 7 Z M 45.279 13 L 44.507 13 L 44.507 7.737 L 42.832 7.737 L 42.832 7 L 46.955 7 L 46.955 7.737 L 45.279 7.737 Z M 49.938 13 L 49.938 7 L 50.708 7 L 50.708 13 Z M 54.128 13 L 53.357 13 L 53.357 7.737 L 51.68 7.737 L 51.68 7 L 55.803 7 L 55.803 7.737 L 54.127 7.737 L 54.127 13 Z M 63.608 12.225 C 63.018 12.831 62.285 13.134 61.408 13.134 C 60.531 13.134 59.798 12.831 59.209 12.225 C 58.619 11.619 58.325 10.877 58.325 10 C 58.325 9.123 58.619 8.381 59.209 7.775 C 59.799 7.169 60.531 6.865 61.409 6.865 C 62.28 6.865 63.012 7.17 63.604 7.779 C 64.196 8.388 64.492 9.128 64.492 10 C 64.492 10.877 64.197 11.619 63.608 12.225 Z M 59.778 11.722 C 60.204 12.164 60.794 12.409 61.408 12.396 C 62.051 12.396 62.595 12.171 63.038 11.722 C 63.482 11.272 63.705 10.698 63.705 10 C 63.705 9.302 63.482 8.728 63.038 8.278 C 62.613 7.836 62.022 7.591 61.408 7.604 C 60.765 7.604 60.222 7.829 59.778 8.278 C 59.335 8.728 59.112 9.302 59.112 10 C 59.112 10.698 59.335 11.272 59.778 11.722 Z M 65.575 13 L 65.575 7 L 66.513 7 L 69.428 11.667 L 69.462 11.667 L 69.428 10.511 L 69.428 7 L 70.2 7 L 70.2 13 L 69.394 13 L 66.344 8.106 L 66.311 8.106 L 66.343 9.262 L 66.343 13 L 65.574 13 Z\" fill=\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(18, 18, 18)) /* {&quot;name&quot;:&quot;BgColor&quot;} */\" stroke-width=\"0.2\" stroke=\"rgba(255, 255, 255, 0)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 15.855 14.232 L 4.334 7.551 C 3.885 7.282 3.371 7.14 2.848 7.14 C 1.726 7.14 0.741 7.819 0.268 8.769 L 0.354 8.855 L 10.794 19.293 L 15.855 14.233 Z M -0.026 9.89 C -0.028 9.932 -0.029 9.975 -0.029 10.017 L -0.029 29.985 C -0.029 30.027 -0.029 30.07 -0.026 30.112 L 10.087 20 L -0.026 9.889 Z M 0.268 31.232 C 0.741 32.182 1.727 32.862 2.848 32.862 C 3.379 32.862 3.878 32.718 4.307 32.465 L 4.341 32.445 L 15.875 25.788 L 10.795 20.708 L 0.355 31.146 Z M 16.772 25.27 L 21.469 22.56 C 22.399 22.06 22.981 21.091 22.985 20.035 C 22.988 18.979 22.413 18.006 21.486 17.5 L 21.476 17.493 L 16.751 14.753 L 11.5 20 L 16.771 25.27 Z\" fill=\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(18, 18, 18)) /* {&quot;name&quot;:&quot;BgColor&quot;} */\"></path></svg>',svgContentId:9503306499}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Vuv5d.framer-2skbph, .framer-Vuv5d .framer-2skbph { display: block; }\",\".framer-Vuv5d.framer-da9bnz { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 24px 8px 24px; position: relative; text-decoration: none; width: 180px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Vuv5d .framer-1c8h4s4 { flex: none; height: 40px; position: relative; width: 100px; }\",\".framer-Vuv5d .framer-15sv4v9 { flex: none; height: 40px; position: relative; width: 116px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vuv5d.framer-da9bnz { gap: 0px; } .framer-Vuv5d.framer-da9bnz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Vuv5d.framer-da9bnz > :first-child { margin-left: 0px; } .framer-Vuv5d.framer-da9bnz > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 56\n * @framerIntrinsicWidth 180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bBm11Cq9m\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"WUob8kdGD\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerL7_Y3pVJs=withCSS(Component,css,\"framer-Vuv5d\");export default FramerL7_Y3pVJs;FramerL7_Y3pVJs.displayName=\"App Store Logos\";FramerL7_Y3pVJs.defaultProps={height:56,width:180};addPropertyControls(FramerL7_Y3pVJs,{variant:{options:[\"BJ65TGro0\",\"bBm11Cq9m\"],optionTitles:[\"Apple\",\"Google\"],title:\"Variant\",type:ControlType.Enum},WUob8kdGD:{title:\"Link\",type:ControlType.Link}});addFonts(FramerL7_Y3pVJs,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerL7_Y3pVJs\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bBm11Cq9m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"WUob8kdGD\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"56\",\"framerIntrinsicWidth\":\"180\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./L7_Y3pVJs.map", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/yJVhScBXB4dDhSjIcHs5/POrjbYuVzUy0wikYOQNW/QjSybQ6ZQ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/xrQnnNlTnXTxVgIU36ER/aoryVnoRlNtZmGW48mdP/rvGYdiPPQ.js\";import AppStoreLogos from\"https://framerusercontent.com/modules/pTZbh2oWbe43oycTgIVJ/JV7SP6ittpKtgHDxTpXY/L7_Y3pVJs.js\";const AppStoreLogosFonts=getFonts(AppStoreLogos);const cycleOrder=[\"LWLdohSuc\",\"vdvuI7BeP\"];const serializationHash=\"framer-rMtfm\";const variantClassNames={LWLdohSuc:\"framer-v-1mp3fyq\",vdvuI7BeP:\"framer-v-1to2kjx\"};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:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition2};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"LWLdohSuc\",Mobile:\"vdvuI7BeP\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"LWLdohSuc\"};};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:\"LWLdohSuc\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"vdvuI7BeP\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1mp3fyq\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"LWLdohSuc\",ref:ref??ref1,style:{backgroundColor:\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(245, 245, 245))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,...style},...addPropertyOverrides({vdvuI7BeP:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sx6ez3\",\"data-framer-name\":\"Copy\",layoutDependency:layoutDependency,layoutId:\"epSLAIbCQ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kkrq2z\",\"data-framer-name\":\"Copy\",layoutDependency:layoutDependency,layoutId:\"HQwaydHIo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-chmam8\",\"data-styles-preset\":\"rvGYdiPPQ\",children:\"DOWNLOAD THE APP\"})}),className:\"framer-p7s3j7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"D7eRTWaZ1\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-ziq2q0\",\"data-styles-preset\":\"QjSybQ6ZQ\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(60, 130, 243)))\"},children:[\"Car Shopping for the Current Day Shopper\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),className:\"framer-lirl98\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YygKJUmfg\",style:{\"--extracted-1of0zx5\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(60, 130, 243))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:`calc((max(${componentViewport?.width||\"100vw\"} - 40px, 1px) - 40px) * 0.3074)`,y:(componentViewport?.y||0)+(32+((componentViewport?.height||430)-64-264.8)/2)+0+0+0+96.8,...addPropertyOverrides({vdvuI7BeP:{height:52,width:`calc(${componentViewport?.width||\"100vw\"} - 42px)`,y:(componentViewport?.y||0)+32+0+0+0+0+96.8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kmbbb2-container\",layoutDependency:layoutDependency,layoutId:\"uKw0kLYN4-container\",whileHover:animation,children:/*#__PURE__*/_jsx(AppStoreLogos,{height:\"100%\",id:\"uKw0kLYN4\",layoutId:\"uKw0kLYN4\",style:{width:\"100%\"},variant:\"BJ65TGro0\",width:\"100%\",WUob8kdGD:\"https://apps.apple.com/ca/app/uobo/id6478088174\",...addPropertyOverrides({vdvuI7BeP:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:`calc((max(${componentViewport?.width||\"100vw\"} - 40px, 1px) - 40px) * 0.3074)`,y:(componentViewport?.y||0)+(32+((componentViewport?.height||430)-64-264.8)/2)+0+0+0+168.8,...addPropertyOverrides({vdvuI7BeP:{height:52,width:`calc(${componentViewport?.width||\"100vw\"} - 42px)`,y:(componentViewport?.y||0)+32+0+0+0+0+164.8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bn3fzx-container\",layoutDependency:layoutDependency,layoutId:\"mxg3t7UYw-container\",whileHover:animation,children:/*#__PURE__*/_jsx(AppStoreLogos,{height:\"100%\",id:\"mxg3t7UYw\",layoutId:\"mxg3t7UYw\",style:{width:\"100%\"},variant:\"bBm11Cq9m\",width:\"100%\",WUob8kdGD:\"https://play.google.com/store/apps/details?id=com.uobo.uobo\",...addPropertyOverrides({vdvuI7BeP:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fxbrk4\",layoutDependency:layoutDependency,layoutId:\"ZYABTnWR4\"})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rMtfm.framer-q3dqko, .framer-rMtfm .framer-q3dqko { display: block; }\",\".framer-rMtfm.framer-1mp3fyq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 0px 32px 40px; position: relative; width: 1400px; }\",\".framer-rMtfm .framer-sx6ez3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-rMtfm .framer-kkrq2z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 40px; position: relative; width: 100%; }\",\".framer-rMtfm .framer-p7s3j7, .framer-rMtfm .framer-lirl98 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rMtfm .framer-kmbbb2-container, .framer-rMtfm .framer-1bn3fzx-container { flex: none; height: auto; position: relative; width: 31%; }\",\".framer-rMtfm .framer-1fxbrk4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; min-height: 56px; overflow: hidden; padding: 0px 0px 0px 40px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rMtfm.framer-1mp3fyq, .framer-rMtfm .framer-sx6ez3, .framer-rMtfm .framer-kkrq2z, .framer-rMtfm .framer-1fxbrk4 { gap: 0px; } .framer-rMtfm.framer-1mp3fyq > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-rMtfm.framer-1mp3fyq > :first-child, .framer-rMtfm .framer-1fxbrk4 > :first-child { margin-left: 0px; } .framer-rMtfm.framer-1mp3fyq > :last-child, .framer-rMtfm .framer-1fxbrk4 > :last-child { margin-right: 0px; } .framer-rMtfm .framer-sx6ez3 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-rMtfm .framer-sx6ez3 > :first-child, .framer-rMtfm .framer-kkrq2z > :first-child { margin-top: 0px; } .framer-rMtfm .framer-sx6ez3 > :last-child, .framer-rMtfm .framer-kkrq2z > :last-child { margin-bottom: 0px; } .framer-rMtfm .framer-kkrq2z > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-rMtfm .framer-1fxbrk4 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",\".framer-rMtfm.framer-v-1to2kjx.framer-1mp3fyq { flex-direction: column; gap: 0px; padding: 32px 21px 32px 21px; width: 390px; }\",\".framer-rMtfm.framer-v-1to2kjx .framer-sx6ez3 { flex: none; gap: 0px; order: 0; width: 100%; }\",\".framer-rMtfm.framer-v-1to2kjx .framer-kkrq2z { order: 0; padding: 0px; }\",\".framer-rMtfm.framer-v-1to2kjx .framer-p7s3j7 { order: 0; width: 348px; z-index: 1; }\",\".framer-rMtfm.framer-v-1to2kjx .framer-lirl98 { order: 1; width: 348px; z-index: 1; }\",\".framer-rMtfm.framer-v-1to2kjx .framer-kmbbb2-container { height: 52px; order: 2; width: 100%; z-index: 1; }\",\".framer-rMtfm.framer-v-1to2kjx .framer-1bn3fzx-container { height: 52px; order: 3; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rMtfm.framer-v-1to2kjx.framer-1mp3fyq, .framer-rMtfm.framer-v-1to2kjx .framer-sx6ez3 { gap: 0px; } .framer-rMtfm.framer-v-1to2kjx.framer-1mp3fyq > *, .framer-rMtfm.framer-v-1to2kjx .framer-sx6ez3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-rMtfm.framer-v-1to2kjx.framer-1mp3fyq > :first-child, .framer-rMtfm.framer-v-1to2kjx .framer-sx6ez3 > :first-child { margin-top: 0px; } .framer-rMtfm.framer-v-1to2kjx.framer-1mp3fyq > :last-child, .framer-rMtfm.framer-v-1to2kjx .framer-sx6ez3 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 430\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vdvuI7BeP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMQRoUVKXa=withCSS(Component,css,\"framer-rMtfm\");export default FramerMQRoUVKXa;FramerMQRoUVKXa.displayName=\"DownloadApp\";FramerMQRoUVKXa.defaultProps={height:430,width:1400};addPropertyControls(FramerMQRoUVKXa,{variant:{options:[\"LWLdohSuc\",\"vdvuI7BeP\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerMQRoUVKXa,[{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\"}]},...AppStoreLogosFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMQRoUVKXa\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vdvuI7BeP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"430\",\"framerIntrinsicWidth\":\"1400\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MQRoUVKXa.map"],
  "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", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vd59XDbg4", "m1wBZJAoM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapstur0d", "args", "onTap2zrycv", "onTap1t370ha", "onTapwskxq3", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "SVG", "css", "FramerSDfkUGdag", "withCSS", "SDfkUGdag_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FAQFonts", "getFonts", "SDfkUGdag_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerIYIn9UDV8", "withCSS", "IYIn9UDV8_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "WUob8kdGD", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "SVG", "css", "FramerL7_Y3pVJs", "withCSS", "L7_Y3pVJs_default", "addPropertyControls", "ControlType", "addFonts", "AppStoreLogosFonts", "getFonts", "L7_Y3pVJs_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "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", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "css", "FramerMQRoUVKXa", "withCSS", "MQRoUVKXa_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
