{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/gvGK2KLJ0l5bGXf9oV3u/DjPudp7i4Fxrmi9ajrgG/HxhW3huKb.js", "ssg:https://framerusercontent.com/modules/pgGmsW3zXYqJrZfKs5zr/HGAxOw1IASteIITTbUAj/ppZHVPsVM.js", "ssg:https://framerusercontent.com/modules/sGfbPdsGmO4kZiYCICiq/6j86L59KbTjUXbfRhPkr/NRiOLaQ2h.js", "ssg:https://framerusercontent.com/modules/nxxUtaGQGXAdGAIL5gcT/fZUJaH2eg8nN3mTFtxdL/gMD2onU9r.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 (1d71865)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-bold\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-TFM2B .framer-styles-preset-1y84o26:not(.rich-text-wrapper), .framer-TFM2B .framer-styles-preset-1y84o26.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 17px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-22ef1630-be9f-4e13-af29-12d1fd0a0e30, #404040); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-TFM2B .framer-styles-preset-1y84o26:not(.rich-text-wrapper), .framer-TFM2B .framer-styles-preset-1y84o26.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-22ef1630-be9f-4e13-af29-12d1fd0a0e30, #404040); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-TFM2B .framer-styles-preset-1y84o26:not(.rich-text-wrapper), .framer-TFM2B .framer-styles-preset-1y84o26.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-22ef1630-be9f-4e13-af29-12d1fd0a0e30, #404040); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-TFM2B\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1d71865)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-medium\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NID3I7RITWZSKXRCJGOCMP5NOADJK6IG/2HLHGD7OBTWCOHW64YXOE5KFXHU4KJHM/ZHME2QIRFR7UPJ47NLY27RCAFY44CKZJ.woff2\",weight:\"500\"}]}];export const css=['.framer-Q8jy9 .framer-styles-preset-jp2ime:not(.rich-text-wrapper), .framer-Q8jy9 .framer-styles-preset-jp2ime.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 27px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-740d842b-74e7-479e-bd96-ff83ba10a93b, #757575); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-Q8jy9 .framer-styles-preset-jp2ime:not(.rich-text-wrapper), .framer-Q8jy9 .framer-styles-preset-jp2ime.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-740d842b-74e7-479e-bd96-ff83ba10a93b, #757575); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Q8jy9 .framer-styles-preset-jp2ime:not(.rich-text-wrapper), .framer-Q8jy9 .framer-styles-preset-jp2ime.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-740d842b-74e7-479e-bd96-ff83ba10a93b, #757575); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Q8jy9\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/gvGK2KLJ0l5bGXf9oV3u/DjPudp7i4Fxrmi9ajrgG/HxhW3huKb.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/pgGmsW3zXYqJrZfKs5zr/HGAxOw1IASteIITTbUAj/ppZHVPsVM.js\";const serializationHash=\"framer-idiRx\";const variantClassNames={sg9_qkAso:\"framer-v-1pso5iu\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,name1,photo,text,width,...props})=>{var _ref,_ref1,_ref2;return{...props,lCupi1Dbc:(_ref=text!==null&&text!==void 0?text:props.lCupi1Dbc)!==null&&_ref!==void 0?_ref:\"\u201CRhythmiq transformed how I discover new music. The recommendations are spot-on every time!\u201D\",leK1rU6uL:(_ref1=name1!==null&&name1!==void 0?name1:props.leK1rU6uL)!==null&&_ref1!==void 0?_ref1:\"Emily Parker\",Sxajo7rdy:(_ref2=photo!==null&&photo!==void 0?photo:props.Sxajo7rdy)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/xUiceLQ2U4O34I1rtB76nJGKyy0.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/xUiceLQ2U4O34I1rtB76nJGKyy0.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/xUiceLQ2U4O34I1rtB76nJGKyy0.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/xUiceLQ2U4O34I1rtB76nJGKyy0.jpg 2624w\"}};};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,Sxajo7rdy,leK1rU6uL,lCupi1Dbc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"sg9_qkAso\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1pso5iu\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"sg9_qkAso\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(235, 235, 235)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-ee7ff27e-bc2d-40a1-8a1f-b3d025af745d, rgb(245, 245, 245))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x41w6c\",\"data-framer-name\":\"Avatar Wrapper\",layoutDependency:layoutDependency,layoutId:\"X6az3obV1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+0+45),pixelHeight:3936,pixelWidth:2624,sizes:\"30px\",...toResponsiveImage(Sxajo7rdy),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-yctuaq\",layoutDependency:layoutDependency,layoutId:\"vEXjimMJu\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1y84o26\",\"data-styles-preset\":\"HxhW3huKb\",children:\"Emily Parker\"})}),className:\"framer-133igxa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"onmu_FV6_\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:leK1rU6uL,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jp2ime\",\"data-styles-preset\":\"ppZHVPsVM\",children:\"\u201CRhythmiq transformed how I discover new music. The recommendations are spot-on every time!\u201D\"})}),className:\"framer-1n50y8m\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"unAwtST0h\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:lCupi1Dbc,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-idiRx.framer-nfwv7m, .framer-idiRx .framer-nfwv7m { display: block; }\",\".framer-idiRx.framer-1pso5iu { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px; position: relative; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-idiRx .framer-x41w6c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-idiRx .framer-yctuaq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\".framer-idiRx .framer-133igxa { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-idiRx .framer-1n50y8m { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-idiRx.framer-1pso5iu, .framer-idiRx .framer-x41w6c { gap: 0px; } .framer-idiRx.framer-1pso5iu > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-idiRx.framer-1pso5iu > :first-child { margin-top: 0px; } .framer-idiRx.framer-1pso5iu > :last-child { margin-bottom: 0px; } .framer-idiRx .framer-x41w6c > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-idiRx .framer-x41w6c > :first-child { margin-left: 0px; } .framer-idiRx .framer-x41w6c > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-idiRx[data-border=\"true\"]::after, .framer-idiRx [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 213\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Sxajo7rdy\":\"photo\",\"leK1rU6uL\":\"name1\",\"lCupi1Dbc\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNRiOLaQ2h=withCSS(Component,css,\"framer-idiRx\");export default FramerNRiOLaQ2h;FramerNRiOLaQ2h.displayName=\"Testimonial Card\";FramerNRiOLaQ2h.defaultProps={height:213,width:300};addPropertyControls(FramerNRiOLaQ2h,{Sxajo7rdy:{__defaultAssetReference:\"data:framer/asset-reference,xUiceLQ2U4O34I1rtB76nJGKyy0.jpg?originalFilename=photo-1623039497026-00af61471107%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw0fHxtb2RlbCUyMGdpcmx8ZW58MHx8fHwxNzIzMDQ3Nzc1fDA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Photo\",type:ControlType.ResponsiveImage},leK1rU6uL:{defaultValue:\"Emily Parker\",displayTextArea:false,title:\"Name\",type:ControlType.String},lCupi1Dbc:{defaultValue:\"\u201CRhythmiq transformed how I discover new music. The recommendations are spot-on every time!\u201D\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerNRiOLaQ2h,[{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\":\"FramerNRiOLaQ2h\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"300\",\"framerIntrinsicHeight\":\"213\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"Sxajo7rdy\\\":\\\"photo\\\",\\\"leK1rU6uL\\\":\\\"name1\\\",\\\"lCupi1Dbc\\\":\\\"text\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NRiOLaQ2h.map", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Navbar from\"#framer/local/canvasComponent/GGa2N6vFF/GGa2N6vFF.js\";import TestimonialCard from\"#framer/local/canvasComponent/NRiOLaQ2h/NRiOLaQ2h.js\";import Footer from\"#framer/local/canvasComponent/pvajuIcc0/pvajuIcc0.js\";import Button from\"#framer/local/canvasComponent/tVi9CISYB/tVi9CISYB.js\";import*as sharedStyle from\"#framer/local/css/MNylapF_H/MNylapF_H.js\";import*as sharedStyle1 from\"#framer/local/css/ppZHVPsVM/ppZHVPsVM.js\";import metadataProvider from\"#framer/local/webPageMetadata/gMD2onU9r/gMD2onU9r.js\";const NavbarFonts=getFonts(Navbar);const ButtonFonts=getFonts(Button);const TestimonialCardFonts=getFonts(TestimonialCard);const TickerFonts=getFonts(Ticker);const FooterFonts=getFonts(Footer);const breakpoints={szlPTDXom:\"(min-width: 810px) and (max-width: 1199px)\",yIM2i20Gn:\"(max-width: 809px)\",zYwkBLFGZ:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-oKmQ0\";const variantClassNames={szlPTDXom:\"framer-v-107dhl8\",yIM2i20Gn:\"framer-v-1vhc64t\",zYwkBLFGZ:\"framer-v-fhaq6h\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"zYwkBLFGZ\",Phone:\"yIM2i20Gn\",Tablet:\"szlPTDXom\"};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:\"zYwkBLFGZ\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-oKmQ0`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-oKmQ0`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"yIM2i20Gn\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"szlPTDXom\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"yIM2i20Gn\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"zYwkBLFGZ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-fhaq6h\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{szlPTDXom:{width:\"90vw\"},yIM2i20Gn:{width:\"95vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d21ifi-container\",\"data-framer-name\":\"Navbar\",name:\"Navbar\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{szlPTDXom:{variant:\"BtUz2UgO0\"},yIM2i20Gn:{variant:\"BtUz2UgO0\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"YFeRoZa6F\",layoutId:\"YFeRoZa6F\",name:\"Navbar\",style:{width:\"100%\"},variant:\"uDjqWIKsx\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-tzs2l7\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-f9fw9y\",\"data-framer-name\":\"Container + Padding\",name:\"Container + Padding\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-147zb2x\",\"data-framer-name\":\"Layout\",name:\"Layout\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10heox6\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nwm2cu\",\"data-framer-name\":\"Heading Content\",name:\"Heading Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17w7qtz\",\"data-framer-name\":\"Page Logo\",name:\"Page Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6wju6l\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:2e3,intrinsicWidth:2e3,name:\"graphic\",svg:'<svg width=\"2000\" height=\"2000\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"url(#a)\" d=\"M0 0h2000v2000H0z\"/><path d=\"M1509.12 547.568c-131.05-114.455-330.75-100.993-445.26 29.967l-63.36 71.428-63.365-71.428c-114.51-130.96-314.212-144.417-445.26-29.967-131.095 114.493-144.6 314.294-30.109 445.387l447.061 497.375c23.34 25.97 56.756 40.87 91.673 40.87 34.92 0 68.33-14.9 91.67-40.87l446.67-496.934.39-.438c114.5-131.096 100.99-330.897-30.11-445.39Z\" fill=\"#fff\"/><path d=\"M1509.12 547.568c-131.05-114.455-330.75-100.993-445.26 29.967l-63.36 71.428V1531.2c34.92 0 68.33-14.9 91.67-40.86l446.67-496.944.39-.438c114.5-131.096 100.99-330.897-30.11-445.39Z\" fill=\"#fff\"/><defs><linearGradient id=\"a\" x1=\"1704.11\" y1=\"0\" x2=\"295.886\" y2=\"2000\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#2E2E2E\"/><stop offset=\"1\"/></linearGradient></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-2cd7l5\",\"data-styles-preset\":\"MNylapF_H\",children:[\"Our clients matter \",/*#__PURE__*/_jsx(\"br\",{}),\"the most to us.\"]})}),className:\"framer-t8c1k4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yIM2i20Gn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jp2ime\",\"data-styles-preset\":\"ppZHVPsVM\",style:{\"--framer-text-alignment\":\"center\"},children:\"The wall of love is a special dedicated page where we leave all the amazing reviews our costumers give us.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-jp2ime\",\"data-styles-preset\":\"ppZHVPsVM\",style:{\"--framer-text-alignment\":\"center\"},children:[\"The wall of love is a special dedicated page where \",/*#__PURE__*/_jsx(\"br\",{}),\"we leave all the amazing reviews our costumers give us.\"]})}),className:\"framer-1nh0ylw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1quxf4d\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:518,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jaz4qf-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"FNyDnpiJ4\",layoutId:\"FNyDnpiJ4\",rC1JaUKUM:\"Review us on Trustpilot\",RZvRmrNzQ:\"https://www.trustpilot.com/\",variant:\"roU4Khuxw\",width:\"100%\",XOpkC8gBg:true})})})})]})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-r5l7ev\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gt17sj\",\"data-framer-name\":\"Container + Padding\",name:\"Container + Padding\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4px6mm\",\"data-framer-name\":\"Layout\",name:\"Layout\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9o5zfe hidden-1vhc64t\",\"data-framer-name\":\"Tickers\",name:\"Tickers\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jk3vq7-container\",\"data-framer-name\":\"Ticker Right\",name:\"Ticker Right\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{szlPTDXom:{direction:\"right\"}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"V8nPLwWE_\",layoutId:\"V8nPLwWE_\",name:\"Ticker Right\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ffa5rn-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"c8uP0iYd8\",layoutId:\"c8uP0iYd8\",lCupi1Dbc:\"\u201CRhythmiq transformed how I discover new music. The recommendations are spot-on every time!\u201D\",leK1rU6uL:\"Emily Parker\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ojnrio-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"fFcGc79mO\",layoutId:\"fFcGc79mO\",lCupi1Dbc:'\"As an independent artist, Rhythmiq gives me the exposure I need while fairly compensating my work.\u201D',leK1rU6uL:\"Jon Jones\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg\",srcSet:\"https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg 4800w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9u65r8-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"jE6z8ybLk\",layoutId:\"jE6z8ybLk\",lCupi1Dbc:\"\u201CThe audio quality on Rhythmiq is unbeatable. It\u2019s like hearing my favorite songs for the first time again!\u201D\",leK1rU6uL:\"Jane Austen\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg\",srcSet:\"https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg 4000w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14zm5h2-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"lUtPpoQKF\",layoutId:\"lUtPpoQKF\",lCupi1Dbc:\"\u201CI love how Rhythmiq understands my taste and curates playlists that perfectly match my mood.\u201D\",leK1rU6uL:\"Emilia Clarke\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg\",srcSet:\"https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg 5161w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-khmvty-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"MHColUyyO\",layoutId:\"MHColUyyO\",lCupi1Dbc:\"\u201CRhythmiq\u2019s fair pay model makes me feel good about where my subscription dollars are going.\u201D\",leK1rU6uL:\"Morgan P.\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg\",srcSet:\"https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg?scale-down-to=1024 575w,https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg?scale-down-to=2048 1150w,https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg?scale-down-to=4096 2300w,https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg 2912w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-eakw6u-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"gK0SGUMsk\",layoutId:\"gK0SGUMsk\",lCupi1Dbc:\"\u201CFinally, an app that treats artists with the respect they deserve. Rhythmiq is changing the game!\u201D\",leK1rU6uL:\"Tyler Durden\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg\",srcSet:\"https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg 5000w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12l1k9q-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"xfuyz3o8l\",layoutId:\"xfuyz3o8l\",lCupi1Dbc:\"\u201CI\u2019m impressed with how well Rhythmiq\u2019s algorithm understands my unique taste in music. Nails every time\u201D\",leK1rU6uL:\"Leo Garry\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg\",srcSet:\"https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg 6000w\"},\"\"),width:\"100%\"})})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-601ts2-container\",\"data-framer-name\":\"Ticker Left\",name:\"Ticker Left\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{szlPTDXom:{direction:\"left\"}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"JzamEuu7D\",layoutId:\"JzamEuu7D\",name:\"Ticker Left\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ffa5rn-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"c8uP0iYd8\",layoutId:\"c8uP0iYd8\",lCupi1Dbc:\"\u201CRhythmiq transformed how I discover new music. The recommendations are spot-on every time!\u201D\",leK1rU6uL:\"Emily Parker\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ojnrio-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"fFcGc79mO\",layoutId:\"fFcGc79mO\",lCupi1Dbc:'\"As an independent artist, Rhythmiq gives me the exposure I need while fairly compensating my work.\u201D',leK1rU6uL:\"Jon Jones\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg\",srcSet:\"https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg 4800w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9u65r8-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"jE6z8ybLk\",layoutId:\"jE6z8ybLk\",lCupi1Dbc:\"\u201CThe audio quality on Rhythmiq is unbeatable. It\u2019s like hearing my favorite songs for the first time again!\u201D\",leK1rU6uL:\"Jane Austen\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg\",srcSet:\"https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg 4000w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14zm5h2-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"lUtPpoQKF\",layoutId:\"lUtPpoQKF\",lCupi1Dbc:\"\u201CI love how Rhythmiq understands my taste and curates playlists that perfectly match my mood.\u201D\",leK1rU6uL:\"Emilia Clarke\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg\",srcSet:\"https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg 5161w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-khmvty-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"MHColUyyO\",layoutId:\"MHColUyyO\",lCupi1Dbc:\"\u201CRhythmiq\u2019s fair pay model makes me feel good about where my subscription dollars are going.\u201D\",leK1rU6uL:\"Morgan P.\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg\",srcSet:\"https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg?scale-down-to=1024 575w,https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg?scale-down-to=2048 1150w,https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg?scale-down-to=4096 2300w,https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg 2912w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-eakw6u-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"gK0SGUMsk\",layoutId:\"gK0SGUMsk\",lCupi1Dbc:\"\u201CFinally, an app that treats artists with the respect they deserve. Rhythmiq is changing the game!\u201D\",leK1rU6uL:\"Tyler Durden\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg\",srcSet:\"https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg 5000w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12l1k9q-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"xfuyz3o8l\",layoutId:\"xfuyz3o8l\",lCupi1Dbc:\"\u201CI\u2019m impressed with how well Rhythmiq\u2019s algorithm understands my unique taste in music. Nails every time\u201D\",leK1rU6uL:\"Leo Garry\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg\",srcSet:\"https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg 6000w\"},\"\"),width:\"100%\"})})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ov44qg-container\",\"data-framer-name\":\"Ticker Right\",name:\"Ticker Right\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{szlPTDXom:{direction:\"right\"}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"HDf1BE7sW\",layoutId:\"HDf1BE7sW\",name:\"Ticker Right\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ojnrio-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"fFcGc79mO\",layoutId:\"fFcGc79mO\",lCupi1Dbc:'\"As an independent artist, Rhythmiq gives me the exposure I need while fairly compensating my work.\u201D',leK1rU6uL:\"Jon Jones\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg\",srcSet:\"https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg 4800w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14zm5h2-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"lUtPpoQKF\",layoutId:\"lUtPpoQKF\",lCupi1Dbc:\"\u201CI love how Rhythmiq understands my taste and curates playlists that perfectly match my mood.\u201D\",leK1rU6uL:\"Emilia Clarke\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg\",srcSet:\"https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg 5161w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ffa5rn-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"c8uP0iYd8\",layoutId:\"c8uP0iYd8\",lCupi1Dbc:\"\u201CRhythmiq transformed how I discover new music. The recommendations are spot-on every time!\u201D\",leK1rU6uL:\"Emily Parker\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-eakw6u-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"gK0SGUMsk\",layoutId:\"gK0SGUMsk\",lCupi1Dbc:\"\u201CFinally, an app that treats artists with the respect they deserve. Rhythmiq is changing the game!\u201D\",leK1rU6uL:\"Tyler Durden\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg\",srcSet:\"https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg 5000w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9u65r8-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"jE6z8ybLk\",layoutId:\"jE6z8ybLk\",lCupi1Dbc:\"\u201CThe audio quality on Rhythmiq is unbeatable. It\u2019s like hearing my favorite songs for the first time again!\u201D\",leK1rU6uL:\"Jane Austen\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg\",srcSet:\"https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg 4000w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-khmvty-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"MHColUyyO\",layoutId:\"MHColUyyO\",lCupi1Dbc:\"\u201CRhythmiq\u2019s fair pay model makes me feel good about where my subscription dollars are going.\u201D\",leK1rU6uL:\"Morgan P.\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg\",srcSet:\"https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg?scale-down-to=1024 575w,https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg?scale-down-to=2048 1150w,https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg?scale-down-to=4096 2300w,https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg 2912w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12l1k9q-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"xfuyz3o8l\",layoutId:\"xfuyz3o8l\",lCupi1Dbc:\"\u201CI\u2019m impressed with how well Rhythmiq\u2019s algorithm understands my unique taste in music. Nails every time\u201D\",leK1rU6uL:\"Leo Garry\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg\",srcSet:\"https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg 6000w\"},\"\"),width:\"100%\"})})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-14gocbt hidden-107dhl8\",\"data-framer-name\":\"Gradient Overlay\",name:\"Gradient Overlay\"})]}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yIM2i20Gn:{height:213,width:\"300px\",y:655}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14s8ms2-container hidden-fhaq6h hidden-107dhl8\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"wtTYdU7JN\",layoutId:\"wtTYdU7JN\",lCupi1Dbc:\"\u201CRhythmiq transformed how I discover new music. The recommendations are spot-on every time!\u201D\",leK1rU6uL:\"Emily Parker\",style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yIM2i20Gn:{height:213,width:\"300px\",y:888}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hduueq-container hidden-fhaq6h hidden-107dhl8\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"riHG0vk_R\",layoutId:\"riHG0vk_R\",lCupi1Dbc:'\"As an independent artist, Rhythmiq gives me the exposure I need while fairly compensating my work.\u201D',leK1rU6uL:\"Jon Jones\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg\",srcSet:\"https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/tcrTt7db23GfVXJuPc3CAnja8c.jpg 4800w\"},\"\"),width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yIM2i20Gn:{height:213,width:\"300px\",y:1121}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1smgjok-container hidden-fhaq6h hidden-107dhl8\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"ABNbCypvo\",layoutId:\"ABNbCypvo\",lCupi1Dbc:\"\u201CThe audio quality on Rhythmiq is unbeatable. It\u2019s like hearing my favorite songs for the first time again!\u201D\",leK1rU6uL:\"Jane Austen\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg\",srcSet:\"https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/PV9eRCRRF45SxFtc85IaKc6yro.jpg 4000w\"},\"\"),width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yIM2i20Gn:{height:213,width:\"300px\",y:1354}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ittddz-container hidden-fhaq6h hidden-107dhl8\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"FIlHZI3K7\",layoutId:\"FIlHZI3K7\",lCupi1Dbc:\"\u201CI love how Rhythmiq understands my taste and curates playlists that perfectly match my mood.\u201D\",leK1rU6uL:\"Emilia Clarke\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg\",srcSet:\"https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/m54QAhcuvZdwmWd9hPqyBq8ofJs.jpg 5161w\"},\"\"),width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yIM2i20Gn:{height:213,width:\"300px\",y:1587}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eqa26q-container hidden-fhaq6h hidden-107dhl8\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"mmJXARToR\",layoutId:\"mmJXARToR\",lCupi1Dbc:\"\u201CRhythmiq\u2019s fair pay model makes me feel good about where my subscription dollars are going.\u201D\",leK1rU6uL:\"Morgan P.\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg\",srcSet:\"https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg?scale-down-to=1024 575w,https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg?scale-down-to=2048 1150w,https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg?scale-down-to=4096 2300w,https://framerusercontent.com/images/f0PWIuNz8vbXr2VCqcRLHZz4BSg.jpg 2912w\"},\"\"),width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yIM2i20Gn:{height:213,width:\"300px\",y:1820}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7vl44o-container hidden-fhaq6h hidden-107dhl8\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"YnDzr3irU\",layoutId:\"YnDzr3irU\",lCupi1Dbc:\"\u201CFinally, an app that treats artists with the respect they deserve. Rhythmiq is changing the game!\u201D\",leK1rU6uL:\"Tyler Durden\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg\",srcSet:\"https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/Z57Jo31KUD9S07CXXFG84Lgig.jpg 5000w\"},\"\"),width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yIM2i20Gn:{height:213,width:\"300px\",y:2053}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k8hnv8-container hidden-fhaq6h hidden-107dhl8\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"AfmDKoO7Z\",layoutId:\"AfmDKoO7Z\",lCupi1Dbc:\"\u201CI\u2019m impressed with how well Rhythmiq\u2019s algorithm understands my unique taste in music. Nails every time\u201D\",leK1rU6uL:\"Leo Garry\",style:{width:\"100%\"},Sxajo7rdy:addImageAlt({src:\"https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg\",srcSet:\"https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/FCQshq3WOu8zckrWiCNKxVdg.jpg 6000w\"},\"\"),width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{szlPTDXom:{y:1480},yIM2i20Gn:{y:2366}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:472,width:\"100vw\",y:1585,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qqyqwd-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{szlPTDXom:{variant:\"wkPwmxTZN\"},yIM2i20Gn:{variant:\"sbdmUlim3\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"EAbXDPXeb\",layoutId:\"EAbXDPXeb\",style:{width:\"100%\"},variant:\"E13TTYQR0\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-oKmQ0 { background: white; }`,\".framer-oKmQ0.framer-11zzzzg, .framer-oKmQ0 .framer-11zzzzg { display: block; }\",\".framer-oKmQ0.framer-fhaq6h { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-oKmQ0 .framer-d21ifi-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 10; }\",\".framer-oKmQ0 .framer-tzs2l7, .framer-oKmQ0 .framer-r5l7ev { align-content: center; align-items: center; background-color: var(--token-80553515-7ab0-44ac-b981-96d7680674fd, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oKmQ0 .framer-f9fw9y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1100px; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-oKmQ0 .framer-147zb2x { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-oKmQ0 .framer-10heox6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; max-width: 768px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oKmQ0 .framer-nwm2cu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oKmQ0 .framer-17w7qtz { align-content: center; align-items: center; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: 0px 0.3010936508871964px 1.505468254435982px -0.6666666666666666px rgba(0, 0, 0, 0.19), 0px 1.1442666516217286px 5.7213332581086425px -1.3333333333333333px rgba(0, 0, 0, 0.2006), 0px 5px 25px -2px rgba(0, 0, 0, 0.27); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-oKmQ0 .framer-6wju6l { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: relative; width: 80px; }\",\".framer-oKmQ0 .framer-t8c1k4, .framer-oKmQ0 .framer-1nh0ylw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oKmQ0 .framer-1quxf4d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-oKmQ0 .framer-jaz4qf-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-oKmQ0 .framer-1gt17sj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1100px; padding: 50px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-oKmQ0 .framer-4px6mm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-oKmQ0 .framer-9o5zfe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 800px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oKmQ0 .framer-1jk3vq7-container, .framer-oKmQ0 .framer-601ts2-container, .framer-oKmQ0 .framer-ov44qg-container { flex: none; height: 100%; position: relative; width: 305px; }\",\".framer-oKmQ0 .framer-ffa5rn-container, .framer-oKmQ0 .framer-ojnrio-container, .framer-oKmQ0 .framer-9u65r8-container, .framer-oKmQ0 .framer-14zm5h2-container, .framer-oKmQ0 .framer-khmvty-container, .framer-oKmQ0 .framer-eakw6u-container, .framer-oKmQ0 .framer-12l1k9q-container { height: auto; position: relative; width: 300px; }\",'.framer-oKmQ0 .framer-14gocbt { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(255, 255, 255)) /* {\"name\":\"Neutral / Surface Main\"} */ 89.60000000000001%); bottom: 0px; flex: none; height: 250px; left: 0px; overflow: hidden; position: absolute; width: 100%; z-index: 2; }',\".framer-oKmQ0 .framer-14s8ms2-container { flex: none; height: auto; position: sticky; top: 90px; width: 300px; will-change: transform; z-index: 1; }\",\".framer-oKmQ0 .framer-hduueq-container { flex: none; height: auto; position: sticky; top: 95px; width: 300px; will-change: transform; z-index: 1; }\",\".framer-oKmQ0 .framer-1smgjok-container { flex: none; height: auto; position: sticky; top: 100px; width: 300px; will-change: transform; z-index: 1; }\",\".framer-oKmQ0 .framer-ittddz-container { flex: none; height: auto; position: sticky; top: 105px; width: 300px; will-change: transform; z-index: 1; }\",\".framer-oKmQ0 .framer-1eqa26q-container { flex: none; height: auto; position: sticky; top: 110px; width: 300px; will-change: transform; z-index: 1; }\",\".framer-oKmQ0 .framer-7vl44o-container { flex: none; height: auto; position: sticky; top: 115px; width: 300px; will-change: transform; z-index: 1; }\",\".framer-oKmQ0 .framer-1k8hnv8-container { flex: none; height: auto; position: sticky; top: 120px; width: 300px; will-change: transform; z-index: 1; }\",\".framer-oKmQ0 .framer-1qqyqwd-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oKmQ0.framer-fhaq6h, .framer-oKmQ0 .framer-tzs2l7, .framer-oKmQ0 .framer-f9fw9y, .framer-oKmQ0 .framer-147zb2x, .framer-oKmQ0 .framer-10heox6, .framer-oKmQ0 .framer-nwm2cu, .framer-oKmQ0 .framer-17w7qtz, .framer-oKmQ0 .framer-1quxf4d, .framer-oKmQ0 .framer-r5l7ev, .framer-oKmQ0 .framer-1gt17sj, .framer-oKmQ0 .framer-4px6mm, .framer-oKmQ0 .framer-9o5zfe { gap: 0px; } .framer-oKmQ0.framer-fhaq6h > *, .framer-oKmQ0 .framer-tzs2l7 > *, .framer-oKmQ0 .framer-r5l7ev > *, .framer-oKmQ0 .framer-1gt17sj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oKmQ0.framer-fhaq6h > :first-child, .framer-oKmQ0 .framer-tzs2l7 > :first-child, .framer-oKmQ0 .framer-147zb2x > :first-child, .framer-oKmQ0 .framer-10heox6 > :first-child, .framer-oKmQ0 .framer-nwm2cu > :first-child, .framer-oKmQ0 .framer-r5l7ev > :first-child, .framer-oKmQ0 .framer-1gt17sj > :first-child, .framer-oKmQ0 .framer-4px6mm > :first-child { margin-top: 0px; } .framer-oKmQ0.framer-fhaq6h > :last-child, .framer-oKmQ0 .framer-tzs2l7 > :last-child, .framer-oKmQ0 .framer-147zb2x > :last-child, .framer-oKmQ0 .framer-10heox6 > :last-child, .framer-oKmQ0 .framer-nwm2cu > :last-child, .framer-oKmQ0 .framer-r5l7ev > :last-child, .framer-oKmQ0 .framer-1gt17sj > :last-child, .framer-oKmQ0 .framer-4px6mm > :last-child { margin-bottom: 0px; } .framer-oKmQ0 .framer-f9fw9y > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-oKmQ0 .framer-f9fw9y > :first-child, .framer-oKmQ0 .framer-17w7qtz > :first-child, .framer-oKmQ0 .framer-1quxf4d > :first-child, .framer-oKmQ0 .framer-9o5zfe > :first-child { margin-left: 0px; } .framer-oKmQ0 .framer-f9fw9y > :last-child, .framer-oKmQ0 .framer-17w7qtz > :last-child, .framer-oKmQ0 .framer-1quxf4d > :last-child, .framer-oKmQ0 .framer-9o5zfe > :last-child { margin-right: 0px; } .framer-oKmQ0 .framer-147zb2x > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-oKmQ0 .framer-10heox6 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-oKmQ0 .framer-nwm2cu > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-oKmQ0 .framer-17w7qtz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oKmQ0 .framer-1quxf4d > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-oKmQ0 .framer-4px6mm > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-oKmQ0 .framer-9o5zfe > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",\"@media (min-width: 1200px) { .framer-oKmQ0 .hidden-fhaq6h { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-oKmQ0 .hidden-107dhl8 { display: none !important; } .${metadata.bodyClassName}-framer-oKmQ0 { background: white; } .framer-oKmQ0.framer-fhaq6h { width: 810px; } .framer-oKmQ0 .framer-d21ifi-container { width: 90%; } .framer-oKmQ0 .framer-f9fw9y { max-width: unset; width: 90%; } .framer-oKmQ0 .framer-9o5zfe { flex-direction: column; gap: 10px; height: min-content; } .framer-oKmQ0 .framer-1jk3vq7-container, .framer-oKmQ0 .framer-601ts2-container, .framer-oKmQ0 .framer-ov44qg-container { height: 225px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oKmQ0 .framer-9o5zfe { gap: 0px; } .framer-oKmQ0 .framer-9o5zfe > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-oKmQ0 .framer-9o5zfe > :first-child { margin-top: 0px; } .framer-oKmQ0 .framer-9o5zfe > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 809px) { .framer-oKmQ0 .hidden-1vhc64t { display: none !important; } .${metadata.bodyClassName}-framer-oKmQ0 { background: white; } .framer-oKmQ0.framer-fhaq6h { width: 390px; } .framer-oKmQ0 .framer-d21ifi-container { width: 95%; } .framer-oKmQ0 .framer-f9fw9y { max-width: unset; padding: 80px 20px 50px 20px; width: 95%; } .framer-oKmQ0 .framer-r5l7ev { overflow: visible; } .framer-oKmQ0 .framer-1gt17sj { padding: 50px 20px 100px 20px; } .framer-oKmQ0 .framer-4px6mm { gap: 20px; overflow: visible; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oKmQ0 .framer-4px6mm { gap: 0px; } .framer-oKmQ0 .framer-4px6mm > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-oKmQ0 .framer-4px6mm > :first-child { margin-top: 0px; } .framer-oKmQ0 .framer-4px6mm > :last-child { margin-bottom: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2048\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"szlPTDXom\":{\"layout\":[\"fixed\",\"auto\"]},\"yIM2i20Gn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramergMD2onU9r=withCSS(Component,css,\"framer-oKmQ0\");export default FramergMD2onU9r;FramergMD2onU9r.displayName=\"Page\";FramergMD2onU9r.defaultProps={height:2048,width:1200};addFonts(FramergMD2onU9r,[{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\"}]},...NavbarFonts,...ButtonFonts,...TestimonialCardFonts,...TickerFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergMD2onU9r\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"szlPTDXom\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yIM2i20Gn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"2048\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "name1", "photo", "text", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "Sxajo7rdy", "leK1rU6uL", "lCupi1Dbc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerNRiOLaQ2h", "withCSS", "NRiOLaQ2h_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavbarFonts", "getFonts", "GGa2N6vFF_default", "ButtonFonts", "tVi9CISYB_default", "TestimonialCardFonts", "NRiOLaQ2h_default", "TickerFonts", "Ticker", "FooterFonts", "pvajuIcc0_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "SVG", "RichText2", "x", "css", "FramergMD2onU9r", "withCSS", "gMD2onU9r_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
