{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/mA1A5IVH8DKEaz65wy1m/4Uy3vACGJPWf0uTCKeDJ/rHSNDdRQy.js", "ssg:https://framerusercontent.com/modules/aVt4Pp3lLuchnCzbAcxB/DyRfOY5pVjy2vOfNB7Fk/eQjxzerFX.js", "ssg:https://framerusercontent.com/modules/3XJ63TRCCgctgOVve600/ot0YtTYrKD246vXrBT4Q/KbgaPhzPo.js", "ssg:https://framerusercontent.com/modules/ljv2bS9Gssm3Wz5PuwEv/V2z3PvaPnwN1RCaDy8v9/IDWrLHBcp.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 (55492a8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"stj7SgWDf\",\"a_esVSGb4\",\"jptaTuBwc\",\"x5cORfHmT\",\"x9Xbz768X\",\"Fwl7JwrHY\",\"H4PL0xyy9\",\"HNSCqKH75\"];const serializationHash=\"framer-NfX1w\";const variantClassNames={a_esVSGb4:\"framer-v-6e6f6g\",Fwl7JwrHY:\"framer-v-169eaa\",H4PL0xyy9:\"framer-v-j9362x\",HNSCqKH75:\"framer-v-11nzs7u\",jptaTuBwc:\"framer-v-109kctq\",stj7SgWDf:\"framer-v-z50uge\",x5cORfHmT:\"framer-v-5yij4l\",x9Xbz768X:\"framer-v-1ssp8dm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Adobe:\"jptaTuBwc\",Figma:\"a_esVSGb4\",Framer:\"stj7SgWDf\",Maze:\"x9Xbz768X\",Notion:\"H4PL0xyy9\",Rive:\"x5cORfHmT\",Sketch:\"Fwl7JwrHY\",Spotify:\"HNSCqKH75\"};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:\"stj7SgWDf\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"stj7SgWDf\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"a_esVSGb4\",\"jptaTuBwc\",\"x5cORfHmT\",\"x9Xbz768X\",\"Fwl7JwrHY\",\"H4PL0xyy9\",\"HNSCqKH75\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"a_esVSGb4\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"jptaTuBwc\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"x5cORfHmT\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"x9Xbz768X\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"Fwl7JwrHY\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"H4PL0xyy9\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"HNSCqKH75\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-z50uge\",className,classNames),\"data-framer-name\":\"Framer\",layoutDependency:layoutDependency,layoutId:\"stj7SgWDf\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({a_esVSGb4:{\"data-framer-name\":\"Figma\"},Fwl7JwrHY:{\"data-framer-name\":\"Sketch\"},H4PL0xyy9:{\"data-framer-name\":\"Notion\"},HNSCqKH75:{\"data-framer-name\":\"Spotify\"},jptaTuBwc:{\"data-framer-name\":\"Adobe\"},x5cORfHmT:{\"data-framer-name\":\"Rive\"},x9Xbz768X:{\"data-framer-name\":\"Maze\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1boe5yc\",\"data-framer-name\":\"framer\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"mCThakBxk\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"M 20 15 L 40 15 L 40 25 L 30 25 Z M 20 25 L 30 25 L 40 35 L 20 35 Z M 20 35 L 30 35 L 30 45 Z\" fill=\"var(--token-0073ae2f-0032-441f-8a2d-71861ef066c4, rgb(33, 33, 33)) /* {&quot;name&quot;:&quot;Grey 4&quot;} */\"></path></svg>',svgContentId:11634803252,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1a49rru\",\"data-framer-name\":\"figma\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"HTb3CSpLK\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"M 34.375 25.333 C 33.146 25.334 31.969 25.826 31.105 26.7 C 30.236 27.578 29.749 28.764 29.75 30 C 29.75 31.237 30.237 32.425 31.105 33.3 C 31.969 34.174 33.146 34.666 34.375 34.666 C 35.604 34.666 36.781 34.174 37.645 33.3 C 38.514 32.422 39.001 31.236 39 30 C 39 28.762 38.513 27.575 37.645 26.7 C 36.781 25.826 35.604 25.334 34.375 25.333 Z M 34.375 25.333 L 29.75 25.333 M 34.375 25.334 C 35.604 25.332 36.781 24.84 37.645 23.967 C 38.514 23.088 39.001 21.902 39 20.666 C 39.001 19.431 38.514 18.245 37.645 17.367 C 36.781 16.493 35.604 16.001 34.375 16 L 29.75 16 M 25.125 34.667 C 23.896 34.668 22.719 35.16 21.855 36.034 C 20.986 36.912 20.499 38.098 20.5 39.334 C 20.5 40.571 20.987 41.758 21.855 42.634 C 22.719 43.507 23.896 43.999 25.125 44 C 26.354 43.999 27.531 43.507 28.395 42.633 C 29.264 41.755 29.751 40.569 29.75 39.333 L 29.75 34.667 M 25.125 34.667 L 29.75 34.667 M 25.125 34.666 C 23.896 34.666 22.719 34.174 21.855 33.3 C 20.986 32.422 20.499 31.236 20.5 30 C 20.5 28.762 20.987 27.575 21.855 26.7 C 22.719 25.826 23.896 25.334 25.125 25.333 M 29.75 34.666 L 29.75 25.333 M 29.75 16 L 29.75 25.334 M 29.75 16 L 25.125 16 C 23.896 16.001 22.719 16.493 21.855 17.367 C 20.986 18.245 20.499 19.431 20.5 20.667 C 20.5 21.904 20.987 23.092 21.855 23.967 C 22.719 24.84 23.896 25.332 25.125 25.334 M 29.75 25.333 L 25.125 25.333\" fill=\"transparent\" stroke-width=\"2.25\" stroke=\"var(--token-0073ae2f-0032-441f-8a2d-71861ef066c4, rgb(33, 33, 33)) /* {&quot;name&quot;:&quot;Grey 4&quot;} */\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11845140163,withExternalLayout:true,...addPropertyOverrides({a_esVSGb4:{svgContentId:9919045245}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-j62ski\",\"data-framer-name\":\"arc\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ZiKYDn721\",opacity:0,style:{opacity:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"M 16.403 35.98 L 14.604 39.754 C 13.688 41.674 14.376 44.037 16.262 45.037 C 18.262 46.097 20.722 45.27 21.686 43.252 L 23.328 39.808 C 20.793 38.993 18.441 37.693 16.403 35.98 Z M 16.403 35.98 C 14.349 34.249 12.713 32.146 11.786 29.853 C 10.973 27.836 11.949 25.538 13.97 24.722 C 15.991 23.911 18.294 24.884 19.112 26.901 C 19.323 27.426 19.627 27.939 20.001 28.431 C 21.496 30.405 24.141 32.027 26.768 32.584 C 27.402 32.719 28.036 32.789 28.648 32.789 C 29.437 32.788 30.223 32.694 30.989 32.508 L 34.414 39.71 C 32.561 40.332 30.616 40.673 28.643 40.673 C 26.866 40.673 25.062 40.365 23.322 39.808 C 20.79 38.993 18.439 37.693 16.403 35.98 Z M 30.995 32.509 L 29.31 28.972 C 29.235 28.816 29.077 28.716 28.904 28.716 C 28.73 28.716 28.572 28.816 28.497 28.972 L 26.774 32.584 C 24.146 32.027 21.502 30.405 20.007 28.431 L 25.333 17.25 C 25.819 16.231 26.717 15.469 27.802 15.156 C 28.886 14.843 30.052 15.008 31.007 15.61 C 31.638 16.008 32.143 16.576 32.464 17.25 L 43.176 39.738 C 44.238 41.966 43.111 44.696 40.732 45.351 C 40.39 45.447 40.036 45.496 39.681 45.497 C 38.933 45.498 38.201 45.287 37.569 44.889 C 36.937 44.491 36.431 43.921 36.11 43.247 Z M 30.995 32.509 L 31.006 32.509 M 44.829 19.975 C 43.801 19.769 42.734 19.98 41.862 20.56 C 40.991 21.139 40.386 22.041 40.18 23.068 C 39.8 24.96 38.912 26.723 37.687 28.221 L 41.28 35.769 C 44.596 32.898 47.045 28.989 47.923 24.614 C 48.351 22.473 46.964 20.397 44.829 19.975 Z\" fill=\"transparent\" stroke-width=\"2.25\" stroke=\"var(--token-0073ae2f-0032-441f-8a2d-71861ef066c4, rgb(33, 33, 33)) /* {&quot;name&quot;:&quot;Grey 4&quot;} */\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:12252516852,withExternalLayout:true,...addPropertyOverrides({jptaTuBwc:{svgContentId:11042459290}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-6einy8\",\"data-framer-name\":\"raycast\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"w_5R6t6wu\",opacity:0,style:{opacity:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"M 22.005 34.656 L 22.005 37.994 L 14 29.99 L 15.678 28.325 L 22.006 34.656 Z M 25.344 37.994 L 22.005 37.994 L 30.01 46 L 31.68 44.331 L 25.344 37.995 Z M 44.332 31.666 L 46 29.997 L 30.004 14 L 28.335 15.67 L 34.656 21.998 L 30.835 21.998 L 26.423 17.59 L 24.753 19.258 L 27.5 22.006 L 25.588 22.006 L 25.588 34.419 L 38.002 34.419 L 38.002 32.499 L 40.749 35.247 L 42.419 33.579 L 38.002 29.161 L 38.002 25.341 L 44.332 31.666 Z M 22.84 21.163 L 21.172 22.833 L 22.962 24.624 L 24.631 22.954 L 22.841 21.164 Z M 37.046 35.369 L 35.383 37.037 L 37.174 38.827 L 38.842 37.157 Z M 19.26 24.745 L 17.59 26.415 L 22.005 30.831 L 22.005 27.491 L 19.26 24.746 Z M 32.509 37.995 L 29.168 37.995 L 33.584 42.411 L 35.254 40.741 L 32.509 37.996 Z\" fill=\"var(--token-0073ae2f-0032-441f-8a2d-71861ef066c4, rgb(33, 33, 33)) /* {&quot;name&quot;:&quot;Grey 4&quot;} */\"></path></svg>',svgContentId:9895995808,withExternalLayout:true,...addPropertyOverrides({x5cORfHmT:{svgContentId:9341070273}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1yuyknk\",\"data-framer-name\":\"linear\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Ye9OLSULJ\",opacity:0,style:{opacity:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"M 15.368 33.457 C 15.301 33.172 15.64 32.993 15.847 33.2 L 26.8 44.153 C 27.007 44.36 26.828 44.699 26.543 44.632 C 21.016 43.335 16.665 38.984 15.368 33.457 Z M 15 29.067 C 14.995 29.152 15.027 29.234 15.087 29.295 L 30.705 44.912 C 30.765 44.972 30.848 45.005 30.933 44.999 C 31.635 44.956 32.333 44.863 33.022 44.721 C 33.128 44.699 33.212 44.621 33.242 44.517 C 33.272 44.414 33.243 44.302 33.165 44.227 L 15.773 26.835 C 15.698 26.757 15.586 26.728 15.482 26.758 C 15.379 26.788 15.3 26.873 15.278 26.978 C 15.137 27.667 15.044 28.365 15 29.067 Z M 16.264 23.912 C 16.214 24.024 16.239 24.155 16.326 24.242 L 35.759 43.674 C 35.845 43.761 35.976 43.786 36.089 43.736 C 36.622 43.499 37.142 43.23 37.644 42.931 C 37.722 42.885 37.774 42.804 37.785 42.714 C 37.795 42.624 37.764 42.533 37.699 42.469 L 17.531 22.301 C 17.467 22.236 17.376 22.205 17.286 22.215 C 17.196 22.226 17.115 22.278 17.069 22.356 C 16.77 22.858 16.501 23.378 16.264 23.911 Z M 18.798 20.422 C 18.686 20.311 18.681 20.133 18.785 20.016 C 21.534 16.938 25.534 15 29.985 15 C 38.278 15 45 21.722 45 30.014 C 45 34.466 43.062 38.466 39.984 41.215 C 39.867 41.32 39.688 41.314 39.578 41.203 L 18.798 20.422 Z\" fill=\"var(--token-0073ae2f-0032-441f-8a2d-71861ef066c4, rgb(33, 33, 33)) /* {&quot;name&quot;:&quot;Grey 4&quot;} */\"></path></svg>',svgContentId:9831948864,withExternalLayout:true,...addPropertyOverrides({x9Xbz768X:{svgContentId:12425481032}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-d709y4\",\"data-framer-name\":\"lemon_squeezy\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"VG6JffbiY\",opacity:0,style:{opacity:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"M 26.44 33.413 L 34.506 37.133 C 35.442 37.557 36.186 38.315 36.592 39.258 C 37.556 41.507 36.238 43.807 34.171 44.634 C 32.102 45.461 29.897 44.929 28.896 42.59 L 25.385 34.378 C 25.113 33.741 25.796 33.116 26.439 33.413 Z M 26.925 31.005 L 35.25 27.865 C 38.018 26.821 41.04 28.795 41 31.665 L 40.998 31.777 C 40.938 34.571 38 36.448 35.293 35.461 L 26.933 32.407 C 26.634 32.305 26.432 32.024 26.43 31.708 C 26.429 31.392 26.627 31.11 26.925 31.005 Z M 26.458 29.917 L 34.643 26.447 C 37.363 25.293 38.053 21.832 35.924 19.832 C 35.896 19.806 35.868 19.78 35.84 19.754 C 33.752 17.82 30.299 18.5 29.11 21.048 L 25.439 28.92 C 25.145 29.547 25.806 30.194 26.459 29.917 Z M 24.352 28.546 L 27.328 20.404 C 27.679 19.455 27.65 18.406 27.247 17.477 C 26.281 15.23 23.665 14.503 21.599 15.332 C 19.53 16.16 18.362 18.043 19.366 20.382 L 22.899 28.584 C 23.172 29.22 24.115 29.196 24.352 28.546 Z\" fill=\"var(--token-0073ae2f-0032-441f-8a2d-71861ef066c4, rgb(33, 33, 33)) /* {&quot;name&quot;:&quot;Grey 4&quot;} */\"></path></svg>',svgContentId:9503691422,withExternalLayout:true,...addPropertyOverrides({Fwl7JwrHY:{svgContentId:11680188531}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1jklecn\",\"data-framer-name\":\"notion\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"BTgOU9aUE\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"M 24.505 27.215 L 24.505 26.981 C 24.505 26.389 24.982 25.898 25.597 25.857 L 30.073 25.56 L 36.263 34.628 L 36.263 26.669 L 34.67 26.458 L 34.67 26.347 C 34.67 25.747 35.158 25.253 35.78 25.222 L 39.853 25.014 L 39.853 25.597 C 39.853 25.87 39.648 26.104 39.368 26.152 L 38.389 26.317 L 38.389 39.206 L 37.158 39.627 C 36.13 39.978 34.987 39.602 34.399 38.719 L 28.389 29.697 L 28.389 38.308 L 30.239 38.66 L 30.213 38.831 C 30.132 39.366 29.668 39.77 29.107 39.795 L 24.506 39.998 C 24.445 39.423 24.878 38.909 25.476 38.847 L 26.081 38.783 L 26.081 27.303 Z\" fill=\"var(--token-0073ae2f-0032-441f-8a2d-71861ef066c4, rgb(33, 33, 33)) /* {&quot;name&quot;:&quot;Grey 4&quot;} */\"></path><path d=\"M 35.406 15.009 L 16.961 16.261 C 15.856 16.336 15 17.22 15 18.285 L 15 36.131 C 15 37.132 15.346 38.104 15.984 38.895 L 19.961 43.823 C 20.604 44.62 21.616 45.058 22.663 44.995 L 43.134 43.741 C 44.183 43.676 45 42.839 45 41.828 L 45 21.539 C 45 20.914 44.682 20.328 44.15 19.969 L 37.669 15.611 C 37.002 15.165 36.206 14.953 35.406 15.009 Z M 17.876 18.563 C 17.62 18.374 17.742 17.98 18.064 17.957 L 35.53 16.711 C 36.083 16.67 36.635 16.822 37.09 17.141 L 40.594 19.611 C 40.727 19.705 40.665 19.907 40.5 19.916 L 22.003 20.917 C 21.446 20.948 20.896 20.785 20.446 20.455 L 17.876 18.563 Z M 21.135 24.054 C 21.135 23.456 21.621 22.963 22.241 22.929 L 41.798 21.869 C 42.403 21.837 42.912 22.299 42.912 22.882 L 42.912 40.451 C 42.912 41.047 42.428 41.541 41.809 41.576 L 22.376 42.676 C 21.703 42.714 21.135 42.199 21.135 41.551 Z\" fill=\"var(--token-0073ae2f-0032-441f-8a2d-71861ef066c4, rgb(33, 33, 33)) /* {&quot;name&quot;:&quot;Grey 4&quot;} */\"></path></svg>',svgContentId:8896132700,withExternalLayout:true,...addPropertyOverrides({H4PL0xyy9:{svgContentId:9003768886}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1h1j4ov\",\"data-framer-name\":\"spotify\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"APvY2B7GV\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"M 38.85 28.35 C 34.05 25.5 26.025 25.2 21.45 26.625 C 20.7 26.85 19.95 26.4 19.725 25.725 C 19.5 24.975 19.95 24.225 20.625 24 C 25.95 22.425 34.725 22.725 40.275 26.025 C 40.95 26.4 41.175 27.3 40.8 27.975 C 40.425 28.5 39.525 28.725 38.85 28.35 Z M 38.7 32.55 C 38.325 33.075 37.65 33.3 37.125 32.925 C 33.075 30.45 26.925 29.7 22.2 31.2 C 21.6 31.35 20.925 31.05 20.775 30.45 C 20.625 29.85 20.925 29.175 21.525 29.025 C 27 27.375 33.75 28.2 38.4 31.05 C 38.85 31.275 39.075 32.025 38.7 32.55 Z M 36.9 36.675 C 36.6 37.125 36.075 37.275 35.625 36.975 C 32.1 34.8 27.675 34.35 22.425 35.55 C 21.9 35.7 21.45 35.325 21.3 34.875 C 21.15 34.35 21.525 33.9 21.975 33.75 C 27.675 32.475 32.625 33 36.525 35.4 C 37.05 35.625 37.125 36.225 36.9 36.675 Z M 30 15 C 21.75 15 15 21.75 15 30 C 15 38.25 21.75 45 30 45 C 38.25 45 45 38.25 45 30 C 45 21.75 38.325 15 30 15 Z\" fill=\"var(--token-0073ae2f-0032-441f-8a2d-71861ef066c4, rgb(33, 33, 33)) /* {&quot;name&quot;:&quot;Grey 4&quot;} */\"></path></svg>',svgContentId:11633803844,withExternalLayout:true,...addPropertyOverrides({HNSCqKH75:{svgContentId:9224097411}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:120,pixelHeight:120,pixelWidth:120,src:\"https://framerusercontent.com/images/pJ4dChNHDFe1fKpKdi2a4wziQI.png\"},className:\"framer-1lde0a\",\"data-framer-name\":\"Mask group (10)\",layoutDependency:layoutDependency,layoutId:\"uucSTk4DX\",...addPropertyOverrides({jptaTuBwc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:120,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||60)*.5000000000000002-28)),pixelHeight:120,pixelWidth:120,src:\"https://framerusercontent.com/images/pJ4dChNHDFe1fKpKdi2a4wziQI.png\"}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1xd1t6d\",\"data-framer-name\":\"Rive\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:150,intrinsicWidth:150,layoutDependency:layoutDependency,layoutId:\"zt4t2dv45\",svg:'<svg data-name=\"logosandtypes com\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 150 150\"><path data-name=\"Layer 3\" d=\"M0 .2h150v150H0Z\" transform=\"translate(0 -.2)\" style=\"fill:none\"/><path d=\"M19.18 23.33a7.46 7.46 0 0 0 7.5 7.42h62.16c20.52-1.39 33.1 24.78 17.5 38.65q-6.87 5.88-17.5 5.87h-27a7.43 7.43 0 1 0 0 14.85h29.83l26.87 42.66a7.92 7.92 0 0 0 7 3.87c6.85.23 10-6.88 6.25-12.37l-23.9-38c37.3-17.51 21.54-71.94-19.07-70.34H26.68a7.47 7.47 0 0 0-7.5 7.39Z\" transform=\"translate(0 -.2)\" style=\"fill-rule:evenodd\"/></svg>',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-5qs3a7\",\"data-framer-name\":\"Maze@logotyp.us 1 (1)\",fill:\"black\",intrinsicHeight:54,intrinsicWidth:92,layoutDependency:layoutDependency,layoutId:\"tuw9EZPvj\",svg:'<svg width=\"92\" height=\"54\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.832 42.875a13.15 13.15 0 0 1 0-18.815L23.183 9.948c4.468-4.392 11.28-5.071 16.472-2.037 1.607.937 1.593 3.09.271 4.39-1.32 1.299-3.476 1.187-5.27.67-2.295-.66-4.877-.1-6.689 1.681l-14.35 14.113a6.574 6.574 0 0 0 0 9.407c2.641 2.598 6.924 2.598 9.566 0L51.885 9.948c5.284-5.195 13.851-5.195 19.135 0L85.371 24.06a13.147 13.147 0 0 1 0 18.815c-5.284 5.195-13.851 5.195-19.135 0l-4.783-4.703-5.979 5.88c-4.467 4.392-11.28 5.07-16.472 2.037-1.607-.938-1.593-3.09-.271-4.389 1.32-1.3 3.476-1.189 5.27-.672 2.295.66 4.878.1 6.689-1.681l6.15-6.047c2.547-2.505 6.678-2.505 9.225 0l4.955 4.872c2.642 2.598 6.925 2.598 9.567 0a6.574 6.574 0 0 0 0-9.407L66.236 14.652c-2.642-2.597-6.925-2.597-9.567 0L27.967 42.876c-5.284 5.197-13.85 5.197-19.135 0Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h92v54H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1uqchwb\",\"data-framer-name\":\"Sketch-Logo--Streamline-Logos\",fill:\"black\",intrinsicHeight:55,intrinsicWidth:55,layoutDependency:layoutDependency,layoutId:\"bPMsMO1OE\",svg:'<svg width=\"55\" height=\"55\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m24.95 4.792-10.054.839v11.728L24.949 4.792Zm-12.346 1.7L2.864 19.48h9.74V6.492Zm-9.7 15.279 20.602 24.527-10.512-24.527H2.904Zm28.59 24.527 20.602-24.527h-10.09L31.494 46.298ZM52.135 19.48l-9.74-12.987V19.48h9.74ZM40.105 5.631v11.728L30.05 4.79l10.053.842ZM27.5 5.27l11.367 14.208H16.133L27.5 5.271Zm-12.013 16.5L27.5 49.798 39.513 21.77H15.487Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NfX1w.framer-rydjc1, .framer-NfX1w .framer-rydjc1 { display: block; }\",\".framer-NfX1w.framer-z50uge { height: 60px; overflow: hidden; position: relative; width: 60px; }\",\".framer-NfX1w .framer-1boe5yc { flex: none; height: 60px; left: 0px; position: absolute; top: 0px; width: 60px; }\",\".framer-NfX1w .framer-1a49rru, .framer-NfX1w .framer-j62ski, .framer-NfX1w .framer-6einy8, .framer-NfX1w .framer-1yuyknk, .framer-NfX1w .framer-d709y4, .framer-NfX1w .framer-1jklecn, .framer-NfX1w .framer-1h1j4ov { flex: none; height: 60px; left: calc(50.00000000000002% - 60px / 2); position: absolute; top: calc(50.00000000000002% - 60px / 2); width: 60px; }\",\".framer-NfX1w .framer-1lde0a { flex: none; height: 56px; left: calc(50.00000000000002% - 56px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 56px / 2); width: 56px; }\",\".framer-NfX1w .framer-1xd1t6d { bottom: 12px; flex: none; left: 12px; position: absolute; right: 12px; top: 12px; }\",\".framer-NfX1w .framer-5qs3a7 { bottom: 16px; flex: none; left: 7px; position: absolute; right: 7px; top: 17px; }\",\".framer-NfX1w .framer-1uqchwb { bottom: 12px; flex: none; left: 14px; position: absolute; right: 13px; top: 15px; }\",\".framer-NfX1w.framer-v-6e6f6g.framer-z50uge, .framer-NfX1w.framer-v-109kctq.framer-z50uge, .framer-NfX1w.framer-v-5yij4l.framer-z50uge, .framer-NfX1w.framer-v-1ssp8dm.framer-z50uge, .framer-NfX1w.framer-v-169eaa.framer-z50uge, .framer-NfX1w.framer-v-j9362x.framer-z50uge, .framer-NfX1w.framer-v-11nzs7u.framer-z50uge { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 60px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 60\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"a_esVSGb4\":{\"layout\":[\"fixed\",\"fixed\"]},\"jptaTuBwc\":{\"layout\":[\"fixed\",\"fixed\"]},\"x5cORfHmT\":{\"layout\":[\"fixed\",\"fixed\"]},\"x9Xbz768X\":{\"layout\":[\"fixed\",\"fixed\"]},\"Fwl7JwrHY\":{\"layout\":[\"fixed\",\"fixed\"]},\"H4PL0xyy9\":{\"layout\":[\"fixed\",\"fixed\"]},\"HNSCqKH75\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrHSNDdRQy=withCSS(Component,css,\"framer-NfX1w\");export default FramerrHSNDdRQy;FramerrHSNDdRQy.displayName=\"Software Logo\";FramerrHSNDdRQy.defaultProps={height:60,width:60};addPropertyControls(FramerrHSNDdRQy,{variant:{options:[\"stj7SgWDf\",\"a_esVSGb4\",\"jptaTuBwc\",\"x5cORfHmT\",\"x9Xbz768X\",\"Fwl7JwrHY\",\"H4PL0xyy9\",\"HNSCqKH75\"],optionTitles:[\"Framer\",\"Figma\",\"Adobe\",\"Rive\",\"Maze\",\"Sketch\",\"Notion\",\"Spotify\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrHSNDdRQy,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrHSNDdRQy\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"a_esVSGb4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jptaTuBwc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x5cORfHmT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x9Xbz768X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Fwl7JwrHY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"H4PL0xyy9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HNSCqKH75\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"60\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"60\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rHSNDdRQy.map", "// Generated by Framer (a1bdbac)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,getPropertyControls,Link,RichText,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/1eGqOoyyB4buWaphVJwl/ZxDZwpsV3pOeDbDzULU3/uJUh8AEM3.js\";import SoftwareLogo from\"https://framerusercontent.com/modules/mA1A5IVH8DKEaz65wy1m/4Uy3vACGJPWf0uTCKeDJ/rHSNDdRQy.js\";const SoftwareLogoFonts=getFonts(SoftwareLogo);const SoftwareLogoControls=getPropertyControls(SoftwareLogo);const enabledGestures={hTTmoy0TW:{hover:true}};const cycleOrder=[\"hTTmoy0TW\"];const variantClassNames={hTTmoy0TW:\"framer-v-1376iji\"};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 humanReadableVariantMap={};const transitions={default:{damping:27,delay:0,duration:.15,ease:[.12,.23,.5,1],mass:1,stiffness:539,type:\"tween\"}};const transformTemplate=(_,t)=>`translateX(-50%) ${t}`;const Component=/*#__PURE__*/React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"hTTmoy0TW\",link:sToyyiE4y,newTab:DFnxIKHTo=false,softwareLogo:TDLxUBxqu=\"stj7SgWDf\",hoverColor:f01l9ii6G='var(--token-4dab4c98-a0a2-4603-a15b-6a8a55f87afd, rgb(250, 201, 156)) /* {\"name\":\"Orange\"} */',popoverText:Ol7CZdSLq=\"Popover\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"hTTmoy0TW\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-rFORM\",sharedStyle.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Link,{href:sToyyiE4y,openInNewTab:DFnxIKHTo,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,\"aria-label\":\"Link to software\",className:`${cx(\"framer-1376iji\",className)} framer-8j0riu`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"hTTmoy0TW\",ref:ref,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},transition:transition,...addPropertyOverrides({\"hTTmoy0TW-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1scyc6g\",\"data-framer-name\":\"popover-container\",layoutDependency:layoutDependency,layoutId:\"XQmEmsFua\",transition:transition,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wbsvpf\",\"data-border\":true,\"data-framer-name\":\"popover\",layoutDependency:layoutDependency,layoutId:\"k51tAHFEH\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":'var(--token-ef132aab-4841-440d-a4a7-2582b8e8cce9, rgba(0, 0, 0, 0.1)) /* {\"name\":\"Outline 1\"} */',\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-f8a3596b-11e1-4890-b487-337e33fa0665, rgb(248, 248, 248))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:'0px 1px 4px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */, 0px 2px 8px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */',opacity:0},transformTemplate:transformTemplate,transition:transition,variants:{\"hTTmoy0TW-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-98d4ea\",\"data-styles-preset\":\"uJUh8AEM3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Popover\"})}),className:\"framer-wcpyg0\",layoutDependency:layoutDependency,layoutId:\"VoSP_ecMe\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:Ol7CZdSLq,transition:transition,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b5kbsq\",\"data-border\":true,\"data-framer-name\":\"software-logo\",layoutDependency:layoutDependency,layoutId:\"xEFH092HA\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":'var(--token-ef132aab-4841-440d-a4a7-2582b8e8cce9, rgba(0, 0, 0, 0.1)) /* {\"name\":\"Outline 1\"} */',\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.01)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:'0px 1px 4px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */, 0px 2px 8px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */'},transition:transition,variants:{\"hTTmoy0TW-hover\":{backgroundColor:f01l9ii6G}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ryjk7s-container\",layoutDependency:layoutDependency,layoutId:\"meDKALhVC-container\",transition:transition,children:/*#__PURE__*/_jsx(SoftwareLogo,{height:\"100%\",id:\"meDKALhVC\",layoutId:\"meDKALhVC\",style:{height:\"100%\",width:\"100%\"},variant:TDLxUBxqu,width:\"100%\"})})})]})})})});});const css=['.framer-rFORM [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rFORM * { box-sizing: border-box; }\",\".framer-rFORM .framer-8j0riu { display: block; }\",\".framer-rFORM .framer-1376iji { height: 60px; overflow: visible; position: relative; text-decoration: none; width: 60px; }\",\".framer-rFORM .framer-1scyc6g { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-rFORM .framer-wbsvpf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 4px 8px 4px 8px; position: absolute; top: -38px; width: min-content; z-index: 1; }\",\".framer-rFORM .framer-wcpyg0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-rFORM .framer-b5kbsq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-rFORM .framer-ryjk7s-container { flex: none; height: 60px; left: calc(50.00000000000002% - 60px / 2); position: absolute; top: calc(50.00000000000002% - 60px / 2); width: 60px; }\",\".framer-rFORM .framer-v-1376iji .framer-1376iji { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rFORM .framer-wbsvpf { gap: 0px; } .framer-rFORM .framer-wbsvpf > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-rFORM .framer-wbsvpf > :first-child { margin-left: 0px; } .framer-rFORM .framer-wbsvpf > :last-child { margin-right: 0px; } }\",\".framer-rFORM.framer-v-1376iji.hover .framer-1376iji { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 60px); }\",\".framer-rFORM.framer-v-1376iji.hover .framer-1scyc6g { overflow: visible; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 60\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"KNW7YFF9j\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"sToyyiE4y\":\"link\",\"DFnxIKHTo\":\"newTab\",\"TDLxUBxqu\":\"softwareLogo\",\"f01l9ii6G\":\"hoverColor\",\"Ol7CZdSLq\":\"popoverText\"}\n */const FramereQjxzerFX=withCSS(Component,css,\"framer-rFORM\");export default FramereQjxzerFX;FramereQjxzerFX.displayName=\"Software Tile\";FramereQjxzerFX.defaultProps={height:60,width:60};addPropertyControls(FramereQjxzerFX,{sToyyiE4y:{title:\"Link\",type:ControlType.Link},DFnxIKHTo:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},TDLxUBxqu:(SoftwareLogoControls===null||SoftwareLogoControls===void 0?void 0:SoftwareLogoControls[\"variant\"])&&{...SoftwareLogoControls[\"variant\"],defaultValue:\"stj7SgWDf\",hidden:undefined,title:\"Software Logo\"},f01l9ii6G:{defaultValue:'var(--token-4dab4c98-a0a2-4603-a15b-6a8a55f87afd, rgb(250, 201, 156)) /* {\"name\":\"Orange\"} */',title:\"Hover Color\",type:ControlType.Color},Ol7CZdSLq:{defaultValue:\"Popover\",displayTextArea:false,placeholder:\"Popover\",title:\"Popover Text\",type:ControlType.String}});addFonts(FramereQjxzerFX,[...SoftwareLogoFonts,...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereQjxzerFX\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"60\",\"framerVariables\":\"{\\\"sToyyiE4y\\\":\\\"link\\\",\\\"DFnxIKHTo\\\":\\\"newTab\\\",\\\"TDLxUBxqu\\\":\\\"softwareLogo\\\",\\\"f01l9ii6G\\\":\\\"hoverColor\\\",\\\"Ol7CZdSLq\\\":\\\"popoverText\\\"}\",\"framerIntrinsicHeight\":\"60\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KNW7YFF9j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a1bdbac)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/cT9st7VHV4BNXi05nnUM/NBeswln5DlSlxBaYoWip/RXoy0dE7S.js\";const cycleOrder=[\"igfqA5wml\",\"ijLjhv0Bf\",\"uBeaosntc\",\"xzuvOAaX9\",\"rlAogaa8u\",\"UAx2VCTyM\",\"iZs9veMnD\",\"oLiAvkE4v\",\"BMDXeq9q_\"];const variantClassNames={BMDXeq9q_:\"framer-v-moe9i6\",igfqA5wml:\"framer-v-10apiex\",ijLjhv0Bf:\"framer-v-ou0zdd\",iZs9veMnD:\"framer-v-1t6ahb1\",oLiAvkE4v:\"framer-v-4evfz8\",rlAogaa8u:\"framer-v-wo5umn\",UAx2VCTyM:\"framer-v-5i2pa5\",uBeaosntc:\"framer-v-19fwdfo\",xzuvOAaX9:\"framer-v-o0nh4t\"};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 humanReadableVariantMap={\"Blue dark\":\"rlAogaa8u\",\"Blue light\":\"UAx2VCTyM\",Green:\"xzuvOAaX9\",Neutral:\"BMDXeq9q_\",Orange:\"igfqA5wml\",Pink:\"oLiAvkE4v\",Purple:\"iZs9veMnD\",Red:\"ijLjhv0Bf\",Yellow:\"uBeaosntc\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"igfqA5wml\",label:rj6FfqNd8=\"LABEL\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"igfqA5wml\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-57smT\",sharedStyle.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-10apiex\",className),\"data-framer-name\":\"Orange\",layoutDependency:layoutDependency,layoutId:\"igfqA5wml\",ref:ref,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"none\",...style},transition:transition,variants:{BMDXeq9q_:{backgroundColor:\"rgb(238, 238, 238)\",boxShadow:'0px 1px 4px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */, 0px 2px 8px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */'},ijLjhv0Bf:{boxShadow:'0px 1px 4px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */, 0px 2px 8px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */'},iZs9veMnD:{boxShadow:'0px 1px 4px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */, 0px 2px 8px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */'},oLiAvkE4v:{boxShadow:'0px 1px 4px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */, 0px 2px 8px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */'},rlAogaa8u:{boxShadow:'0px 1px 4px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */, 0px 2px 8px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */'},UAx2VCTyM:{boxShadow:'0px 1px 4px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */, 0px 2px 8px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */'},uBeaosntc:{boxShadow:'0px 1px 4px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */, 0px 2px 8px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */'},xzuvOAaX9:{boxShadow:'0px 1px 4px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */, 0px 2px 8px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */'}},...addPropertyOverrides({BMDXeq9q_:{\"data-framer-name\":\"Neutral\"},ijLjhv0Bf:{\"data-framer-name\":\"Red\"},iZs9veMnD:{\"data-framer-name\":\"Purple\"},oLiAvkE4v:{\"data-framer-name\":\"Pink\"},rlAogaa8u:{\"data-framer-name\":\"Blue dark\"},UAx2VCTyM:{\"data-framer-name\":\"Blue light\"},uBeaosntc:{\"data-framer-name\":\"Yellow\"},xzuvOAaX9:{\"data-framer-name\":\"Green\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-iac1bb\",\"data-framer-name\":\"Cursor container\",layoutDependency:layoutDependency,layoutId:\"QZZnoK7BG\",transition:transition,children:/*#__PURE__*/ _jsx(SVG,{className:\"framer-8q9b4i\",\"data-framer-name\":\"Cursor\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"cXJ30AGQv\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 6.235 15.194 L 2.251 4.836 C 1.63 3.22 3.22 1.63 4.836 2.252 L 15.193 6.235 C 16.749 6.833 16.933 8.96 15.505 9.817 L 12.378 11.693 C 12.096 11.862 11.861 12.097 11.692 12.379 L 9.817 15.505 C 8.959 16.934 6.833 16.749 6.235 15.194 Z\" fill=\"var(--token-4dab4c98-a0a2-4603-a15b-6a8a55f87afd, rgb(250, 201, 156)) /* {&quot;name&quot;:&quot;Orange&quot;} */\"></path><path d=\"M 6.702 15.014 L 2.718 4.657 C 2.251 3.444 3.443 2.252 4.657 2.718 L 15.014 6.702 C 16.18 7.151 16.319 8.745 15.247 9.388 L 12.121 11.264 C 11.769 11.475 11.475 11.769 11.264 12.121 L 9.388 15.248 C 8.745 16.319 7.15 16.181 6.702 15.014 Z\" fill=\"transparent\" stroke=\"var(--token-ef132aab-4841-440d-a4a7-2582b8e8cce9, rgba(0, 0, 0, 0.1)) /* {&quot;name&quot;:&quot;Outline 1&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:3078530921,transition:transition,withExternalLayout:true,...addPropertyOverrides({BMDXeq9q_:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 6.235 15.194 L 2.251 4.836 C 1.63 3.22 3.22 1.63 4.836 2.252 L 15.193 6.235 C 16.749 6.833 16.933 8.96 15.505 9.817 L 12.378 11.693 C 12.096 11.862 11.861 12.097 11.692 12.379 L 9.817 15.505 C 8.959 16.934 6.833 16.749 6.235 15.194 Z\" fill=\"var(--token-6d558814-af3d-4ac1-b2b4-67a89de1fa03, rgb(238, 238, 238)) /* {&quot;name&quot;:&quot;Grey 2&quot;} */\"></path><path d=\"M 6.702 15.014 L 2.718 4.657 C 2.251 3.444 3.443 2.252 4.657 2.718 L 15.014 6.702 C 16.18 7.151 16.319 8.745 15.247 9.388 L 12.121 11.264 C 11.769 11.475 11.475 11.769 11.264 12.121 L 9.388 15.248 C 8.745 16.319 7.15 16.181 6.702 15.014 Z\" fill=\"transparent\" stroke=\"var(--token-ef132aab-4841-440d-a4a7-2582b8e8cce9, rgba(0, 0, 0, 0.1)) /* {&quot;name&quot;:&quot;Outline 1&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:3282506339},ijLjhv0Bf:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 6.235 15.194 L 2.251 4.836 C 1.63 3.22 3.22 1.63 4.836 2.252 L 15.193 6.235 C 16.749 6.833 16.933 8.96 15.505 9.817 L 12.378 11.693 C 12.096 11.862 11.861 12.097 11.692 12.379 L 9.817 15.505 C 8.959 16.934 6.833 16.749 6.235 15.194 Z\" fill=\"var(--token-2a91ce1a-b21b-42fc-8b32-cfcd3e83c9c1, rgb(248, 169, 168)) /* {&quot;name&quot;:&quot;Red&quot;} */\"></path><path d=\"M 6.702 15.014 L 2.718 4.657 C 2.251 3.444 3.443 2.252 4.657 2.718 L 15.014 6.702 C 16.18 7.151 16.319 8.745 15.247 9.388 L 12.121 11.264 C 11.769 11.475 11.475 11.769 11.264 12.121 L 9.388 15.248 C 8.745 16.319 7.15 16.181 6.702 15.014 Z\" fill=\"transparent\" stroke=\"var(--token-ef132aab-4841-440d-a4a7-2582b8e8cce9, rgba(0, 0, 0, 0.1)) /* {&quot;name&quot;:&quot;Outline 1&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:3308571545},iZs9veMnD:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 6.235 15.194 L 2.251 4.836 C 1.63 3.22 3.22 1.63 4.836 2.252 L 15.193 6.235 C 16.749 6.833 16.933 8.96 15.505 9.817 L 12.378 11.693 C 12.096 11.862 11.861 12.097 11.692 12.379 L 9.817 15.505 C 8.959 16.934 6.833 16.749 6.235 15.194 Z\" fill=\"var(--token-6711b05b-c5e2-4a7c-a7c2-da8cb8855541, rgb(200, 173, 250)) /* {&quot;name&quot;:&quot;Purple&quot;} */\"></path><path d=\"M 6.702 15.014 L 2.718 4.657 C 2.251 3.444 3.443 2.252 4.657 2.718 L 15.014 6.702 C 16.18 7.151 16.319 8.745 15.247 9.388 L 12.121 11.264 C 11.769 11.475 11.475 11.769 11.264 12.121 L 9.388 15.248 C 8.745 16.319 7.15 16.181 6.702 15.014 Z\" fill=\"transparent\" stroke=\"var(--token-ef132aab-4841-440d-a4a7-2582b8e8cce9, rgba(0, 0, 0, 0.1)) /* {&quot;name&quot;:&quot;Outline 1&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:2745543070},oLiAvkE4v:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 6.235 15.194 L 2.251 4.836 C 1.63 3.22 3.22 1.63 4.836 2.252 L 15.193 6.235 C 16.749 6.833 16.933 8.96 15.505 9.817 L 12.378 11.693 C 12.096 11.862 11.861 12.097 11.692 12.379 L 9.817 15.505 C 8.959 16.934 6.833 16.749 6.235 15.194 Z\" fill=\"var(--token-478900e4-b7b3-49e4-95fc-d5600c1b8d98, rgb(255, 179, 233)) /* {&quot;name&quot;:&quot;Pink&quot;} */\"></path><path d=\"M 6.702 15.014 L 2.718 4.657 C 2.251 3.444 3.443 2.252 4.657 2.718 L 15.014 6.702 C 16.18 7.151 16.319 8.745 15.247 9.388 L 12.121 11.264 C 11.769 11.475 11.475 11.769 11.264 12.121 L 9.388 15.248 C 8.745 16.319 7.15 16.181 6.702 15.014 Z\" fill=\"transparent\" stroke=\"var(--token-ef132aab-4841-440d-a4a7-2582b8e8cce9, rgba(0, 0, 0, 0.1)) /* {&quot;name&quot;:&quot;Outline 1&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:1524022926},rlAogaa8u:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 6.235 15.194 L 2.251 4.836 C 1.63 3.22 3.22 1.63 4.836 2.252 L 15.193 6.235 C 16.749 6.833 16.933 8.96 15.505 9.817 L 12.378 11.693 C 12.096 11.862 11.861 12.097 11.692 12.379 L 9.817 15.505 C 8.959 16.934 6.833 16.749 6.235 15.194 Z\" fill=\"var(--token-889cd9be-a823-42e9-b60b-44d49fd884c2, rgb(156, 203, 245)) /* {&quot;name&quot;:&quot;Blue Dark&quot;} */\"></path><path d=\"M 6.702 15.014 L 2.718 4.657 C 2.251 3.444 3.443 2.252 4.657 2.718 L 15.014 6.702 C 16.18 7.151 16.319 8.745 15.247 9.388 L 12.121 11.264 C 11.769 11.475 11.475 11.769 11.264 12.121 L 9.388 15.248 C 8.745 16.319 7.15 16.181 6.702 15.014 Z\" fill=\"transparent\" stroke=\"var(--token-ef132aab-4841-440d-a4a7-2582b8e8cce9, rgba(0, 0, 0, 0.1)) /* {&quot;name&quot;:&quot;Outline 1&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:2639853843},UAx2VCTyM:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 6.235 15.194 L 2.251 4.836 C 1.63 3.22 3.22 1.63 4.836 2.252 L 15.193 6.235 C 16.749 6.833 16.933 8.96 15.505 9.817 L 12.378 11.693 C 12.096 11.862 11.861 12.097 11.692 12.379 L 9.817 15.505 C 8.959 16.934 6.833 16.749 6.235 15.194 Z\" fill=\"var(--token-e66eaa0d-3f14-4f25-8140-f13dc254a27d, rgb(159, 216, 255)) /* {&quot;name&quot;:&quot;Blue Light&quot;} */\"></path><path d=\"M 6.702 15.014 L 2.718 4.657 C 2.251 3.444 3.443 2.252 4.657 2.718 L 15.014 6.702 C 16.18 7.151 16.319 8.745 15.247 9.388 L 12.121 11.264 C 11.769 11.475 11.475 11.769 11.264 12.121 L 9.388 15.248 C 8.745 16.319 7.15 16.181 6.702 15.014 Z\" fill=\"transparent\" stroke=\"var(--token-ef132aab-4841-440d-a4a7-2582b8e8cce9, rgba(0, 0, 0, 0.1)) /* {&quot;name&quot;:&quot;Outline 1&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:383969780},uBeaosntc:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 6.235 15.194 L 2.251 4.836 C 1.63 3.22 3.22 1.63 4.836 2.252 L 15.193 6.235 C 16.749 6.833 16.933 8.96 15.505 9.817 L 12.378 11.693 C 12.096 11.862 11.861 12.097 11.692 12.379 L 9.817 15.505 C 8.959 16.934 6.833 16.749 6.235 15.194 Z\" fill=\"var(--token-c2e2c9be-0d2b-429c-8f21-63ee30186e7d, rgb(247, 229, 183)) /* {&quot;name&quot;:&quot;Yellow&quot;} */\"></path><path d=\"M 6.702 15.014 L 2.718 4.657 C 2.251 3.444 3.443 2.252 4.657 2.718 L 15.014 6.702 C 16.18 7.151 16.319 8.745 15.247 9.388 L 12.121 11.264 C 11.769 11.475 11.475 11.769 11.264 12.121 L 9.388 15.248 C 8.745 16.319 7.15 16.181 6.702 15.014 Z\" fill=\"transparent\" stroke=\"var(--token-ef132aab-4841-440d-a4a7-2582b8e8cce9, rgba(0, 0, 0, 0.1)) /* {&quot;name&quot;:&quot;Outline 1&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:1818927278},xzuvOAaX9:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 6.235 15.194 L 2.251 4.836 C 1.63 3.22 3.22 1.63 4.836 2.252 L 15.193 6.235 C 16.749 6.833 16.933 8.96 15.505 9.817 L 12.378 11.693 C 12.096 11.862 11.861 12.097 11.692 12.379 L 9.817 15.505 C 8.959 16.934 6.833 16.749 6.235 15.194 Z\" fill=\"var(--token-49071e8d-ba3a-47e9-9290-b036d21ab689, rgb(176, 227, 182)) /* {&quot;name&quot;:&quot;Green&quot;} */\"></path><path d=\"M 6.702 15.014 L 2.718 4.657 C 2.251 3.444 3.443 2.252 4.657 2.718 L 15.014 6.702 C 16.18 7.151 16.319 8.745 15.247 9.388 L 12.121 11.264 C 11.769 11.475 11.475 11.769 11.264 12.121 L 9.388 15.248 C 8.745 16.319 7.15 16.181 6.702 15.014 Z\" fill=\"transparent\" stroke=\"var(--token-ef132aab-4841-440d-a4a7-2582b8e8cce9, rgba(0, 0, 0, 0.1)) /* {&quot;name&quot;:&quot;Outline 1&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:2767763255}},baseVariant,gestureVariant)})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-qglcjt\",\"data-border\":true,\"data-framer-name\":\"Tag\",layoutDependency:layoutDependency,layoutId:\"ldJ_oZ25v\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":'var(--token-ef132aab-4841-440d-a4a7-2582b8e8cce9, rgba(0, 0, 0, 0.1)) /* {\"name\":\"Outline 1\"} */',\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4dab4c98-a0a2-4603-a15b-6a8a55f87afd, rgb(250, 201, 156))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:'0px 1px 4px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */, 0px 2px 8px 0px var(--token-a859bcd3-2adf-4e7e-a9ec-e6905c23dbff, rgba(0, 0, 0, 0.04)) /* {\"name\":\"Shadow\"} */'},transition:transition,variants:{BMDXeq9q_:{backgroundColor:\"var(--token-6d558814-af3d-4ac1-b2b4-67a89de1fa03, rgb(238, 238, 238))\"},ijLjhv0Bf:{backgroundColor:\"var(--token-2a91ce1a-b21b-42fc-8b32-cfcd3e83c9c1, rgb(248, 169, 168))\"},iZs9veMnD:{backgroundColor:\"var(--token-6711b05b-c5e2-4a7c-a7c2-da8cb8855541, rgb(200, 173, 250))\"},oLiAvkE4v:{backgroundColor:\"var(--token-478900e4-b7b3-49e4-95fc-d5600c1b8d98, rgb(255, 179, 233))\"},rlAogaa8u:{backgroundColor:\"var(--token-889cd9be-a823-42e9-b60b-44d49fd884c2, rgb(156, 203, 245))\"},UAx2VCTyM:{backgroundColor:\"var(--token-e66eaa0d-3f14-4f25-8140-f13dc254a27d, rgb(159, 216, 255))\"},uBeaosntc:{backgroundColor:\"var(--token-c2e2c9be-0d2b-429c-8f21-63ee30186e7d, rgb(247, 229, 183))\"},xzuvOAaX9:{backgroundColor:\"var(--token-49071e8d-ba3a-47e9-9290-b036d21ab689, rgb(176, 227, 182))\"}},children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-5ps4wp\",\"data-styles-preset\":\"RXoy0dE7S\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"LABEL\"})}),className:\"framer-1xlu9g8\",layoutDependency:layoutDependency,layoutId:\"SmUYgwtO5\",style:{\"--extracted-r6o4lv\":\"var(--token-0073ae2f-0032-441f-8a2d-71861ef066c4, rgb(33, 33, 33))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:rj6FfqNd8,transition:transition,variants:{BMDXeq9q_:{\"--extracted-r6o4lv\":\"var(--token-0073ae2f-0032-441f-8a2d-71861ef066c4, rgb(33, 33, 33)) \"}},verticalAlignment:\"top\",withExternalLayout:true})})]})})});});const css=['.framer-57smT [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-57smT * { box-sizing: border-box; }\",\".framer-57smT .framer-13s4xdf { display: block; }\",\".framer-57smT .framer-10apiex { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-57smT .framer-iac1bb { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-57smT .framer-8q9b4i { flex: none; height: 18px; left: -12px; position: absolute; top: -12px; width: 18px; }\",\".framer-57smT .framer-qglcjt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: min-content; }\",\".framer-57smT .framer-1xlu9g8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-57smT .framer-10apiex, .framer-57smT .framer-qglcjt { gap: 0px; } .framer-57smT .framer-10apiex > *, .framer-57smT .framer-qglcjt > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-57smT .framer-10apiex > :first-child, .framer-57smT .framer-qglcjt > :first-child { margin-left: 0px; } .framer-57smT .framer-10apiex > :last-child, .framer-57smT .framer-qglcjt > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 64.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ijLjhv0Bf\":{\"layout\":[\"auto\",\"auto\"]},\"uBeaosntc\":{\"layout\":[\"auto\",\"auto\"]},\"xzuvOAaX9\":{\"layout\":[\"auto\",\"auto\"]},\"rlAogaa8u\":{\"layout\":[\"auto\",\"auto\"]},\"UAx2VCTyM\":{\"layout\":[\"auto\",\"auto\"]},\"iZs9veMnD\":{\"layout\":[\"auto\",\"auto\"]},\"oLiAvkE4v\":{\"layout\":[\"auto\",\"auto\"]},\"BMDXeq9q_\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"rj6FfqNd8\":\"label\"}\n */ const FramerKbgaPhzPo=withCSS(Component,css,\"framer-57smT\");export default FramerKbgaPhzPo;FramerKbgaPhzPo.displayName=\"Expertise Tag\";FramerKbgaPhzPo.defaultProps={height:32,width:64.5};addPropertyControls(FramerKbgaPhzPo,{variant:{options:[\"igfqA5wml\",\"ijLjhv0Bf\",\"uBeaosntc\",\"xzuvOAaX9\",\"rlAogaa8u\",\"UAx2VCTyM\",\"iZs9veMnD\",\"oLiAvkE4v\",\"BMDXeq9q_\"],optionTitles:[\"Orange\",\"Red\",\"Yellow\",\"Green\",\"Blue dark\",\"Blue light\",\"Purple\",\"Pink\",\"Neutral\"],title:\"Variant\",type:ControlType.Enum},rj6FfqNd8:{defaultValue:\"LABEL\",displayTextArea:false,title:\"Label\",type:ControlType.String}});addFonts(FramerKbgaPhzPo,[...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKbgaPhzPo\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"rj6FfqNd8\\\":\\\"label\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ijLjhv0Bf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uBeaosntc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xzuvOAaX9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"rlAogaa8u\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UAx2VCTyM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"iZs9veMnD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"oLiAvkE4v\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"BMDXeq9q_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"32\",\"framerIntrinsicWidth\":\"64.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KbgaPhzPo.map", "// Generated by Framer (e1a43d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ShaderGradient from\"https://framerusercontent.com/modules/0S9d6rtyL41e1AotK0xE/PndxTG9QWV1d6iA7z7kC/ShaderGradient.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import SoftwareTile from\"#framer/local/canvasComponent/eQjxzerFX/eQjxzerFX.js\";import Footer from\"#framer/local/canvasComponent/EUYqNX_mY/EUYqNX_mY.js\";import Dock from\"#framer/local/canvasComponent/F1DRQZOh4/F1DRQZOh4.js\";import ExpertiseTag from\"#framer/local/canvasComponent/KbgaPhzPo/KbgaPhzPo.js\";import Tag from\"#framer/local/canvasComponent/nb2JvBvU3/nb2JvBvU3.js\";import Button from\"#framer/local/canvasComponent/RowA6Ej73/RowA6Ej73.js\";import ButtonClose from\"#framer/local/canvasComponent/yIdgAP9ew/yIdgAP9ew.js\";import*as sharedStyle1 from\"#framer/local/css/eoEdEfdtX/eoEdEfdtX.js\";import*as sharedStyle from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle2 from\"#framer/local/css/iafRbQBt0/iafRbQBt0.js\";import metadataProvider from\"#framer/local/webPageMetadata/IDWrLHBcp/IDWrLHBcp.js\";const ShaderGradientFonts=getFonts(ShaderGradient);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const ButtonCloseFonts=getFonts(ButtonClose);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TagFonts=getFonts(Tag);const ButtonFonts=getFonts(Button);const ExpertiseTagFonts=getFonts(ExpertiseTag);const ContainerWithFX=withFX(Container);const SoftwareTileFonts=getFonts(SoftwareTile);const TickerFonts=getFonts(Ticker);const DockFonts=getFonts(Dock);const FooterFonts=getFonts(Footer);const breakpoints={fWLV9kTLJ:\"(max-width: 809px)\",Ga_AHoRj5:\"(min-width: 1200px)\",S4UINEAsj:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-zSLFP\";const variantClassNames={fWLV9kTLJ:\"framer-v-10mdb48\",Ga_AHoRj5:\"framer-v-1viwnzy\",S4UINEAsj:\"framer-v-1n8onr3\"};const transition1={delay:.1,duration:.4,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition3={delay:.1,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition4={delay:.2,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={delay:3,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-30,y:-20};const transition6={delay:5,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:17,y:26};const transition7={delay:3.5,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-40,y:16};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition8={delay:4.5,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-30,y:20};const transition9={delay:4,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:50,y:8};const transition10={delay:5.5,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:15,y:-40};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-20,y:12};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"Ga_AHoRj5\",Phone:\"fWLV9kTLJ\",Tablet:\"S4UINEAsj\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Ga_AHoRj5\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Ga_AHoRj5\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-39687726-2aef-44fc-89b6-4f29b277e9c4, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1viwnzy\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{background:{alt:\"Colorful abstract background\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+482.2092715231795),pixelHeight:2160,pixelWidth:3840,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/kPHXJofkfvSV1uk2qrte8KNHQ8.png\",srcSet:\"https://framerusercontent.com/images/kPHXJofkfvSV1uk2qrte8KNHQ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/kPHXJofkfvSV1uk2qrte8KNHQ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kPHXJofkfvSV1uk2qrte8KNHQ8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kPHXJofkfvSV1uk2qrte8KNHQ8.png 3840w\"}}},children:/*#__PURE__*/_jsxs(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"Colorful abstract background\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+190.1092715231796),pixelHeight:2160,pixelWidth:3840,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/kPHXJofkfvSV1uk2qrte8KNHQ8.png\",srcSet:\"https://framerusercontent.com/images/kPHXJofkfvSV1uk2qrte8KNHQ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/kPHXJofkfvSV1uk2qrte8KNHQ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kPHXJofkfvSV1uk2qrte8KNHQ8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kPHXJofkfvSV1uk2qrte8KNHQ8.png 3840w\"},className:\"framer-155pbid\",\"data-framer-appear-id\":\"155pbid\",\"data-framer-name\":\"Background\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1evpd8f-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KiHz301YY\",scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(ShaderGradient,{activeTab:\"Effects\",animate:\"on\",brightness:.5,cameraAngle:{cAzimuthAngle:180,cPolarAngle:115},cameraZoom:18,cDistance:2.9,color1:\"rgb(86, 6, 255)\",color2:\"rgb(254, 137, 137)\",color3:\"rgb(0, 0, 0)\",control:\"props\",envPreset:\"city\",grain:\"off\",height:\"100%\",id:\"KiHz301YY\",layoutId:\"KiHz301YY\",lightType:\"3d\",noise:{uDensity:1.1,uStrength:2.4},performantOnCanvas:false,pixelDensity:1,pointerEvents:\"none\",position:{positionX:-.5,positionY:.1,positionZ:0},reflection:.3,rotation:{rotationX:0,rotationY:0,rotationZ:235},shader:\"defaults\",style:{height:\"100%\",width:\"100%\"},toggleAxis:false,type:\"waterPlane\",uAmplitude:.1,urlString:\"https://www.shadergradient.co/customize?animate=on&axesHelper=off&bgColor1=%23000000&bgColor2=%23000000&brightness=1.2&cAzimuthAngle=180&cDistance=3.6&cPolarAngle=90&cameraZoom=1&color1=%23ff5005&color2=%23dbba95&color3=%23d0bce1&destination=onCanvas&embedMode=off&envPreset=city&format=gif&fov=45&frameRate=10&gizmoHelper=hide&grain=on&lightType=3d&pixelDensity=1&positionX=-1.4&positionY=0&positionZ=0&range=enabled&rangeEnd=40&rangeStart=0&reflection=0.1&rotationX=0&rotationY=10&rotationZ=50&shader=defaults&type=plane&uDensity=1.3&uFrequency=5.5&uSpeed=0.4&uStrength=4&uTime=0&wireframe=false\",uSpeed:.1,uTime:.2,width:\"100%\",zoomOut:false})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+482.2092715231795+0),pixelHeight:256,pixelWidth:256,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:1,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+190.1092715231796+0),pixelHeight:256,pixelWidth:256,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png\"},className:\"framer-s063cq\"})})]})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-am00w7\",\"data-framer-appear-id\":\"am00w7\",\"data-framer-name\":\"close\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+48+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10rvkk6-container\",nodeId:\"Sw5G0MRUD\",scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{ft5ccHmcH:resolvedLinks[2]},S4UINEAsj:{ft5ccHmcH:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonClose,{avcJ8HZOc:false,ft5ccHmcH:resolvedLinks[0],height:\"100%\",id:\"Sw5G0MRUD\",layoutId:\"Sw5G0MRUD\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1fk7fko\",\"data-framer-appear-id\":\"1fk7fko\",initial:animation5,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r1uahl\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vhszge\",\"data-border\":true,\"data-framer-name\":\"Intro\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+144+0+0+16+0+16+0),pixelHeight:1043,pixelWidth:979,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px)`,src:\"https://framerusercontent.com/images/Hk6SOLMDw0TQlUDTsC2WvSVYcho.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Hk6SOLMDw0TQlUDTsC2WvSVYcho.jpeg?scale-down-to=1024 961w,https://framerusercontent.com/images/Hk6SOLMDw0TQlUDTsC2WvSVYcho.jpeg 979w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+144+0+24+0+24+0),pixelHeight:1043,pixelWidth:979,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 72px) / 2, 1px) - 48px)`,src:\"https://framerusercontent.com/images/Hk6SOLMDw0TQlUDTsC2WvSVYcho.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Hk6SOLMDw0TQlUDTsC2WvSVYcho.jpeg?scale-down-to=1024 961w,https://framerusercontent.com/images/Hk6SOLMDw0TQlUDTsC2WvSVYcho.jpeg 979w\"},className:\"framer-18uamoc\",\"data-border\":true,\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17oqsc3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sgldmm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xrtv2b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Hey again\"})}),className:\"framer-z8acny\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{background:{alt:\"Waving hand emoji\",fit:\"fill\",intrinsicHeight:48.5,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+144+0+0+16+0+16+509+0+0+0+0+3.4750000000000014),pixelHeight:97,pixelWidth:96,src:\"https://framerusercontent.com/images/taEO1SV77uLBbTg4mYgAoRHh6es.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"Waving hand emoji\",fit:\"fill\",intrinsicHeight:48.5,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+144+0+24+0+24+509+0+0+0+0+3.4750000000000014),pixelHeight:97,pixelWidth:96,src:\"https://framerusercontent.com/images/taEO1SV77uLBbTg4mYgAoRHh6es.png\"},className:\"framer-f80aq4\",\"data-framer-name\":\"wave-emoji\"})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qgxh0r\",\"data-styles-preset\":\"eoEdEfdtX\",children:\"I'm currently at MNTN, where I am working on building the next generation of connected TV advertising experiences. \"})}),className:\"framer-iw92sx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1679yz3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{y:(componentViewport?.y||0)+0+144+0+0+16+0+16+509+0+187.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+144+0+24+0+24+509+0+191.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5y00wv-container\",nodeId:\"BmCbmSosV\",scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(Tag,{bqUKh7fzZ:\"MapPin\",height:\"100%\",id:\"BmCbmSosV\",layoutId:\"BmCbmSosV\",rHhuTNJfV:\"LAS VEGAS\",u_cBbZFdx:true,width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{y:(componentViewport?.y||0)+0+144+0+0+16+0+16+509+0+187.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+144+0+24+0+24+509+0+191.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nnwiz1-container\",nodeId:\"fQwbjxAOR\",scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(Tag,{bqUKh7fzZ:\"Briefcase\",height:\"100%\",id:\"fQwbjxAOR\",layoutId:\"fQwbjxAOR\",rHhuTNJfV:\"MNTN\",u_cBbZFdx:true,width:\"100%\"})})})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{initial:animation1}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-vx9wkf\",\"data-framer-appear-id\":\"vx9wkf\",\"data-framer-name\":\"Right\",initial:animation5,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cb5vq7\",\"data-border\":true,\"data-framer-name\":\"Bio\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9kkcim\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"A little bit about me\"})}),className:\"framer-1t19d7g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qgxh0r\",\"data-styles-preset\":\"eoEdEfdtX\",children:\"Over the past 5+ years, I\u2019ve had the opportunity to work in various digital landscapes, from Los Angeles to Tokyo, collaborating with designers and cross-functional teams on the discovery, validation, and execution of products that connect with people.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qgxh0r\",\"data-styles-preset\":\"eoEdEfdtX\",children:\"When I'm not designing, I love to travel to new places and am always open to talking about the next destination!\"})]}),className:\"framer-1db4l2h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lvgsxu\",\"data-border\":true,\"data-framer-name\":\"Experience\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Experience\"})}),className:\"framer-19c1uez\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uytdw5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{y:(componentViewport?.y||0)+0+144+0+776.2+16+359.2+16+47.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+144+0+24+383.2+24+55.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-w7v2in-container\",nodeId:\"NTqCa1Trb\",scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(Button,{bUH0O81xE:\"ArrowUpRight\",DuL7WTNoY:false,FBJsrpLHw:\"ArrowLeft\",fzFKdsfQi:true,height:\"100%\",id:\"NTqCa1Trb\",layoutId:\"NTqCa1Trb\",lrg_H2psG:true,Mmgtv4fRk:true,P_OZ4bP1K:\"https://mountain.com/performance-tv/matched/?utm_source=google&utm_campaign=16458274991&utm_medium=paid&utm_content=132385913165&utm_term=mntn&gad_source=1&gclid=CjwKCAiA6t-6BhA3EiwAltRFGAhJ8QTMJqneCBXlTLFFkFeERy3CygoMxhb9Vx4L16cdHlLW682VlhoCuDYQAvD_BwE\",twQQusqGp:\"var(--token-2a91ce1a-b21b-42fc-8b32-cfcd3e83c9c1, rgb(248, 169, 168))\",variant:\"A06ce2TVv\",width:\"100%\",ylb0tUnp7:\"MNTN\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-avi7lr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pennag\",\"data-styles-preset\":\"iafRbQBt0\",style:{\"--framer-text-color\":\"var(--token-0073ae2f-0032-441f-8a2d-71861ef066c4, rgb(33, 33, 33))\"},children:\"Senior Product Designer  \u2022  2024 - Current\"})}),className:\"framer-7ytoei\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qgxh0r\",\"data-styles-preset\":\"eoEdEfdtX\",children:\"Building the future of performance TV advertising.\"})}),className:\"framer-10hnga7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cma1nz\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fk4d9t\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{y:(componentViewport?.y||0)+0+144+0+776.2+16+359.2+16+286.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+144+0+24+383.2+24+310.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1evs0b3-container\",nodeId:\"SoTRfEOPw\",scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(Button,{bUH0O81xE:\"ArrowUpRight\",DuL7WTNoY:false,FBJsrpLHw:\"ArrowLeft\",fzFKdsfQi:true,height:\"100%\",id:\"SoTRfEOPw\",layoutId:\"SoTRfEOPw\",lrg_H2psG:true,Mmgtv4fRk:true,P_OZ4bP1K:\"https://www.evertrue.com/\",twQQusqGp:\"var(--token-6711b05b-c5e2-4a7c-a7c2-da8cb8855541, rgb(200, 173, 250))\",variant:\"A06ce2TVv\",width:\"100%\",ylb0tUnp7:\"Evertrue\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u9ha2t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pennag\",\"data-styles-preset\":\"iafRbQBt0\",style:{\"--framer-text-color\":\"var(--token-0073ae2f-0032-441f-8a2d-71861ef066c4, rgb(33, 33, 33))\"},children:\"Product Designer  \u2022  2022 - 2024\"})}),className:\"framer-18ajliz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qgxh0r\",\"data-styles-preset\":\"eoEdEfdtX\",children:\"Helped evolve the landscape of digital fundraising through user-centered design and AI.\"})}),className:\"framer-ybnqy4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jn24wa\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{y:(componentViewport?.y||0)+0+144+0+776.2+16+359.2+16+509+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+144+0+24+383.2+24+541+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jg38no-container\",nodeId:\"gctdZywpX\",scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(Button,{bUH0O81xE:\"ArrowUpRight\",DuL7WTNoY:false,FBJsrpLHw:\"ArrowLeft\",fzFKdsfQi:true,height:\"100%\",id:\"gctdZywpX\",layoutId:\"gctdZywpX\",lrg_H2psG:true,Mmgtv4fRk:true,P_OZ4bP1K:\"https://www.linkedin.com/company/justsleightly-llc\",twQQusqGp:\"var(--token-889cd9be-a823-42e9-b60b-44d49fd884c2, rgb(156, 203, 245))\",variant:\"A06ce2TVv\",width:\"100%\",ylb0tUnp7:\"JustSleightly LLC\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-my7q7m\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pennag\",\"data-styles-preset\":\"iafRbQBt0\",style:{\"--framer-text-color\":\"var(--token-0073ae2f-0032-441f-8a2d-71861ef066c4, rgb(33, 33, 33))\"},children:\"Product Designer  \u2022  2021 - 2022\"})}),className:\"framer-xb0t9x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qgxh0r\",\"data-styles-preset\":\"eoEdEfdtX\",children:\"Developed cross-platform user interfaces for AR/VR developers in Unity.\"})}),className:\"framer-1jbitke\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cx8h7s\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{y:(componentViewport?.y||0)+0+144+0+776.2+16+359.2+16+731.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+144+0+24+383.2+24+771.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vibfyw-container\",nodeId:\"iVhcs1zjY\",scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(Button,{bUH0O81xE:\"ArrowUpRight\",DuL7WTNoY:false,FBJsrpLHw:\"ArrowLeft\",fzFKdsfQi:true,height:\"100%\",id:\"iVhcs1zjY\",layoutId:\"iVhcs1zjY\",lrg_H2psG:true,Mmgtv4fRk:true,P_OZ4bP1K:\"https://www.linkedin.com/company/gen-one-studios\",twQQusqGp:\"var(--token-889cd9be-a823-42e9-b60b-44d49fd884c2, rgb(156, 203, 245))\",variant:\"A06ce2TVv\",width:\"100%\",ylb0tUnp7:\"Gen One Studios\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i515dt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pennag\",\"data-styles-preset\":\"iafRbQBt0\",style:{\"--framer-text-color\":\"var(--token-0073ae2f-0032-441f-8a2d-71861ef066c4, rgb(33, 33, 33))\"},children:\"UX Designer  \u2022  2020 - 2021\"})}),className:\"framer-1u91agd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qgxh0r\",\"data-styles-preset\":\"eoEdEfdtX\",children:\"Designed and prototyped systems and HUDs for game environments.\"})}),className:\"framer-ncvqzf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1elhpou\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{y:(componentViewport?.y||0)+0+144+0+776.2+16+359.2+16+953.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+144+0+24+383.2+24+1001.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yg1kvs-container\",nodeId:\"A0n2x5IQy\",scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(Button,{bUH0O81xE:\"ArrowUpRight\",DuL7WTNoY:false,FBJsrpLHw:\"ArrowLeft\",fzFKdsfQi:true,height:\"100%\",id:\"A0n2x5IQy\",layoutId:\"A0n2x5IQy\",lrg_H2psG:true,Mmgtv4fRk:true,P_OZ4bP1K:\"https://www.cnbc.com/2019/10/10/in-car-vr-experience-launching-in-universal-hollywood-monster-ride.html\",twQQusqGp:\"var(--token-889cd9be-a823-42e9-b60b-44d49fd884c2, rgb(156, 203, 245))\",variant:\"A06ce2TVv\",width:\"100%\",ylb0tUnp7:\"Contract\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-frdtux\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pennag\",\"data-styles-preset\":\"iafRbQBt0\",style:{\"--framer-text-color\":\"var(--token-0073ae2f-0032-441f-8a2d-71861ef066c4, rgb(33, 33, 33))\"},children:\"Interaction Designer  \u2022  2019 - 2020\"})}),className:\"framer-1hem7kz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qgxh0r\",\"data-styles-preset\":\"eoEdEfdtX\",children:\"Worked on VR interfaces for use in location-based experiences.\"})}),className:\"framer-d4v2hy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i0ncb6\",\"data-border\":true,\"data-framer-name\":\"Skills\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Skills\"})}),className:\"framer-19ftrl1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lfilt9\",\"data-framer-name\":\"expertise\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-oplapl-container\",nodeId:\"wlEut4iJ5\",rendersWithMotion:true,scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(ExpertiseTag,{height:\"100%\",id:\"wlEut4iJ5\",label:\"DESIGN\",layoutId:\"wlEut4iJ5\",variant:\"igfqA5wml\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation8,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition6,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qvyp5s-container\",nodeId:\"jK2v4T78U\",rendersWithMotion:true,scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(ExpertiseTag,{height:\"100%\",id:\"jK2v4T78U\",label:\"STRATEGY\",layoutId:\"jK2v4T78U\",variant:\"ijLjhv0Bf\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation9,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition7,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7vh11v-container\",nodeId:\"rxpjdsuvt\",rendersWithMotion:true,scopeId:\"IDWrLHBcp\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ExpertiseTag,{height:\"100%\",id:\"rxpjdsuvt\",label:\"WEB\",layoutId:\"rxpjdsuvt\",variant:\"xzuvOAaX9\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation10,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition8,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1097n2v-container\",nodeId:\"Pj3gH3Ist\",rendersWithMotion:true,scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(ExpertiseTag,{height:\"100%\",id:\"Pj3gH3Ist\",label:\"PRODUCT\",layoutId:\"Pj3gH3Ist\",variant:\"rlAogaa8u\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation11,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition9,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jsz4yr-container\",nodeId:\"mNekLKm0V\",rendersWithMotion:true,scopeId:\"IDWrLHBcp\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ExpertiseTag,{height:\"100%\",id:\"mNekLKm0V\",label:\"RESEARCH\",layoutId:\"mNekLKm0V\",variant:\"oLiAvkE4v\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition10,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uqoph5-container\",nodeId:\"TPhHIv08k\",rendersWithMotion:true,scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(ExpertiseTag,{height:\"100%\",id:\"TPhHIv08k\",label:\"MOBILE\",layoutId:\"TPhHIv08k\",variant:\"iZs9veMnD\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation13,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.1,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition10,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1npo9p4-container\",nodeId:\"ot0nxpqb3\",rendersWithMotion:true,scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(ExpertiseTag,{height:\"100%\",id:\"ot0nxpqb3\",label:\"AI\",layoutId:\"ot0nxpqb3\",variant:\"uBeaosntc\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10yn6on\",\"data-border\":true,\"data-framer-name\":\"Tools\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Software of choice\"})}),className:\"framer-1ytihdw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ff35kb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"O2nF9WIhQ\",scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:40,overflow:true},gap:8,height:\"100%\",hoverFactor:1,id:\"O2nF9WIhQ\",layoutId:\"O2nF9WIhQ\",padding:0,paddingBottom:12,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4vauga\",\"data-framer-name\":\"Software tiles\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o7sgsf-container\",inComponentSlot:true,nodeId:\"UXNjqUxE6\",rendersWithMotion:true,scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(SoftwareTile,{height:\"100%\",hoverColor:\"var(--token-e66eaa0d-3f14-4f25-8140-f13dc254a27d, rgb(159, 216, 255))\",id:\"UXNjqUxE6\",layoutId:\"UXNjqUxE6\",link:\"https://arc.net/\",newTab:true,popoverText:\"Adobe\",softwareLogo:\"jptaTuBwc\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11xp8nx-container\",inComponentSlot:true,nodeId:\"SCb2fXMaT\",rendersWithMotion:true,scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(SoftwareTile,{height:\"100%\",hoverColor:\"var(--token-2a91ce1a-b21b-42fc-8b32-cfcd3e83c9c1, rgb(248, 169, 168))\",id:\"SCb2fXMaT\",layoutId:\"SCb2fXMaT\",link:\"https://www.raycast.com/\",newTab:true,popoverText:\"Rive\",softwareLogo:\"x5cORfHmT\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3g9lvn-container\",inComponentSlot:true,nodeId:\"l_EWKp7PK\",rendersWithMotion:true,scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(SoftwareTile,{height:\"100%\",hoverColor:\"var(--token-478900e4-b7b3-49e4-95fc-d5600c1b8d98, rgb(255, 163, 229))\",id:\"l_EWKp7PK\",layoutId:\"l_EWKp7PK\",link:\"https://www.figma.com/\",newTab:true,popoverText:\"Figma\",softwareLogo:\"a_esVSGb4\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-37f5nr-container\",inComponentSlot:true,nodeId:\"FH0gfUseP\",rendersWithMotion:true,scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(SoftwareTile,{height:\"100%\",hoverColor:\"var(--token-889cd9be-a823-42e9-b60b-44d49fd884c2, rgb(156, 203, 245))\",id:\"FH0gfUseP\",layoutId:\"FH0gfUseP\",link:\"https://linear.app/\",newTab:true,popoverText:\"Maze\",softwareLogo:\"x9Xbz768X\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s5509f-container\",inComponentSlot:true,nodeId:\"bxN6ajxz_\",rendersWithMotion:true,scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(SoftwareTile,{height:\"100%\",hoverColor:\"var(--token-6711b05b-c5e2-4a7c-a7c2-da8cb8855541, rgb(200, 173, 250))\",id:\"bxN6ajxz_\",layoutId:\"bxN6ajxz_\",link:\"https://www.lemonsqueezy.com/\",newTab:true,popoverText:\"Sketch\",softwareLogo:\"Fwl7JwrHY\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8uskj4-container\",inComponentSlot:true,nodeId:\"Fk1I3J5FP\",rendersWithMotion:true,scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(SoftwareTile,{height:\"100%\",hoverColor:\"var(--token-c2e2c9be-0d2b-429c-8f21-63ee30186e7d, rgb(247, 229, 183))\",id:\"Fk1I3J5FP\",layoutId:\"Fk1I3J5FP\",link:\"https://www.notion.so/product\",newTab:true,popoverText:\"Notion\",softwareLogo:\"H4PL0xyy9\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hlwm3v-container\",inComponentSlot:true,nodeId:\"aXyVLBLE6\",rendersWithMotion:true,scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(SoftwareTile,{height:\"100%\",hoverColor:\"var(--token-49071e8d-ba3a-47e9-9290-b036d21ab689, rgb(176, 227, 182))\",id:\"aXyVLBLE6\",layoutId:\"aXyVLBLE6\",link:\"https://www.spotify.com/\",newTab:true,popoverText:\"Spotify\",softwareLogo:\"HNSCqKH75\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p1xkzq\",\"data-border\":true,\"data-framer-name\":\"Contact\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Come and say hi!\"})}),className:\"framer-6hgtyu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1um1jtz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px)`,y:(componentViewport?.y||0)+0+144+0+776.2+16+2177.8+16+47.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 72px) / 2, 1px) - 48px)`,y:(componentViewport?.y||0)+0+144+0+24+2337.8+24+55.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fdcl7o-container\",nodeId:\"Hsxs6eq8s\",scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(Button,{bUH0O81xE:\"ArrowUpRight\",DuL7WTNoY:true,FBJsrpLHw:\"EnvelopeSimple\",fzFKdsfQi:true,height:\"100%\",id:\"Hsxs6eq8s\",layoutId:\"Hsxs6eq8s\",lrg_H2psG:true,Mmgtv4fRk:false,P_OZ4bP1K:\"mailto:jordanrmichalski@yahoo.com\",style:{width:\"100%\"},twQQusqGp:\"var(--token-49071e8d-ba3a-47e9-9290-b036d21ab689, rgb(176, 227, 182))\",variant:\"KtIwp69tk\",width:\"100%\",ylb0tUnp7:\"jordanrmichalski@yahoo.com\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px)`,y:(componentViewport?.y||0)+0+144+0+776.2+16+2177.8+16+47.2+0+52}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 72px) / 2, 1px) - 48px)`,y:(componentViewport?.y||0)+0+144+0+24+2337.8+24+55.2+0+52,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tnzytv-container\",nodeId:\"uYVmybmXF\",scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(Button,{bUH0O81xE:\"ArrowUpRight\",DuL7WTNoY:true,FBJsrpLHw:\"TwitterLogo\",fzFKdsfQi:true,height:\"100%\",id:\"uYVmybmXF\",layoutId:\"uYVmybmXF\",lrg_H2psG:true,Mmgtv4fRk:false,P_OZ4bP1K:\"https://x.com/SurrealDesigner\",style:{width:\"100%\"},twQQusqGp:\"var(--token-e66eaa0d-3f14-4f25-8140-f13dc254a27d, rgb(159, 216, 255))\",variant:\"KtIwp69tk\",width:\"100%\",ylb0tUnp7:\"@surrealdesigner\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px)`,y:(componentViewport?.y||0)+0+144+0+776.2+16+2177.8+16+47.2+0+104}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 72px) / 2, 1px) - 48px)`,y:(componentViewport?.y||0)+0+144+0+24+2337.8+24+55.2+0+104,children:/*#__PURE__*/_jsx(Container,{className:\"framer-e1bbqt-container\",nodeId:\"F2_jTYpbL\",scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(Button,{bUH0O81xE:\"ArrowUpRight\",DuL7WTNoY:true,FBJsrpLHw:\"LinkedinLogo\",fzFKdsfQi:true,height:\"100%\",id:\"F2_jTYpbL\",layoutId:\"F2_jTYpbL\",lrg_H2psG:true,Mmgtv4fRk:false,P_OZ4bP1K:\"https://www.linkedin.com/in/jordanmichalski\",style:{width:\"100%\"},twQQusqGp:\"var(--token-478900e4-b7b3-49e4-95fc-d5600c1b8d98, rgb(255, 179, 233))\",variant:\"KtIwp69tk\",width:\"100%\",ylb0tUnp7:\"jordanmichalski\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px)`,y:(componentViewport?.y||0)+0+144+0+776.2+16+2177.8+16+47.2+0+156}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 72px) / 2, 1px) - 48px)`,y:(componentViewport?.y||0)+0+144+0+24+2337.8+24+55.2+0+156,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18sp7d6-container\",nodeId:\"m_KwUDQMH\",scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(Button,{bUH0O81xE:\"ArrowUpRight\",DuL7WTNoY:true,FBJsrpLHw:\"FileText\",fzFKdsfQi:true,height:\"100%\",id:\"m_KwUDQMH\",layoutId:\"m_KwUDQMH\",lrg_H2psG:true,Mmgtv4fRk:false,P_OZ4bP1K:\"https://read.cv/jmichalski\",style:{width:\"100%\"},twQQusqGp:\"var(--token-4dab4c98-a0a2-4603-a15b-6a8a55f87afd, rgb(250, 201, 156))\",variant:\"KtIwp69tk\",width:\"100%\",ylb0tUnp7:\"read.cv/jmichalski\"})})})})]})]})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{y:904}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,y:916,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14esrdp-container\",layoutScroll:true,nodeId:\"oD2onyQ9V\",scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{J7iXFZ1TC:\"MGrUbAyjd\",qu5KiH7jw:\"QYqnZ8xf6\",variant:\"U2XXk9Ct2\",y5sJFpmO9:\"MGrUbAyjd\"}},children:/*#__PURE__*/_jsx(Dock,{height:\"100%\",id:\"oD2onyQ9V\",J7iXFZ1TC:\"TKBrbvqUx\",layoutId:\"oD2onyQ9V\",qu5KiH7jw:\"MfSW4P_5c\",variant:\"Zl3lQySK_\",width:\"100%\",y5sJFpmO9:\"TKBrbvqUx\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{y:(componentViewport?.y||0)+0+3393.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:154,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2809,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1elwd91-container\",nodeId:\"cclLpPtFL\",scopeId:\"IDWrLHBcp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fWLV9kTLJ:{variant:\"J64Gs2sI7\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"cclLpPtFL\",layoutId:\"cclLpPtFL\",style:{width:\"100%\"},variant:\"LGaanVFOR\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zSLFP.framer-zh2slo, .framer-zSLFP .framer-zh2slo { display: block; }\",\".framer-zSLFP.framer-1viwnzy { align-content: center; align-items: center; background-color: var(--token-39687726-2aef-44fc-89b6-4f29b277e9c4, #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-zSLFP .framer-155pbid { flex: none; height: 258.27814569536423vh; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 258.27814569536423vh / 2); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-zSLFP .framer-1evpd8f-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-zSLFP .framer-s063cq { bottom: 0px; flex: none; left: 0px; opacity: 0.1; position: absolute; right: 0px; top: 0px; }\",\".framer-zSLFP .framer-am00w7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 48px 24px 48px 24px; position: sticky; top: 0px; width: 1200px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-zSLFP .framer-10rvkk6-container { flex: none; height: auto; position: sticky; top: 0px; width: auto; z-index: 1; }\",\".framer-zSLFP .framer-1fk7fko { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-zSLFP .framer-r1uahl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 0px 0px 0px; position: sticky; top: 0px; width: 1px; z-index: 1; }\",\".framer-zSLFP .framer-vhszge { --border-bottom-width: 1px; --border-color: var(--token-ef132aab-4841-440d-a4a7-2582b8e8cce9, rgba(0, 0, 0, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-f8a3596b-11e1-4890-b487-337e33fa0665, #f8f8f8); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 100%; z-index: 1; }\",\".framer-zSLFP .framer-18uamoc { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.048780487804878 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 492px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-zSLFP .framer-17oqsc3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zSLFP .framer-sgldmm, .framer-zSLFP .framer-9kkcim, .framer-zSLFP .framer-1uytdw5, .framer-zSLFP .framer-1fk4d9t, .framer-zSLFP .framer-1jn24wa, .framer-zSLFP .framer-cx8h7s, .framer-zSLFP .framer-1elhpou { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zSLFP .framer-1xrtv2b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-zSLFP .framer-z8acny { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-zSLFP .framer-f80aq4 { aspect-ratio: 0.9896907216494846 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); overflow: visible; position: relative; width: 24px; }\",\".framer-zSLFP .framer-iw92sx, .framer-zSLFP .framer-1t19d7g, .framer-zSLFP .framer-1db4l2h, .framer-zSLFP .framer-19c1uez, .framer-zSLFP .framer-7ytoei, .framer-zSLFP .framer-10hnga7, .framer-zSLFP .framer-18ajliz, .framer-zSLFP .framer-ybnqy4, .framer-zSLFP .framer-xb0t9x, .framer-zSLFP .framer-1jbitke, .framer-zSLFP .framer-1u91agd, .framer-zSLFP .framer-ncvqzf, .framer-zSLFP .framer-1hem7kz, .framer-zSLFP .framer-d4v2hy, .framer-zSLFP .framer-19ftrl1, .framer-zSLFP .framer-1ytihdw, .framer-zSLFP .framer-6hgtyu { --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-zSLFP .framer-1679yz3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zSLFP .framer-5y00wv-container, .framer-zSLFP .framer-nnwiz1-container, .framer-zSLFP .framer-w7v2in-container, .framer-zSLFP .framer-1evs0b3-container, .framer-zSLFP .framer-jg38no-container, .framer-zSLFP .framer-vibfyw-container, .framer-zSLFP .framer-yg1kvs-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-zSLFP .framer-vx9wkf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 24px 0px 0px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-zSLFP .framer-1cb5vq7 { --border-bottom-width: 1px; --border-color: var(--token-ef132aab-4841-440d-a4a7-2582b8e8cce9, rgba(0, 0, 0, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-f8a3596b-11e1-4890-b487-337e33fa0665, #f8f8f8); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-zSLFP .framer-1lvgsxu, .framer-zSLFP .framer-1i0ncb6, .framer-zSLFP .framer-10yn6on, .framer-zSLFP .framer-1p1xkzq { --border-bottom-width: 1px; --border-color: var(--token-ef132aab-4841-440d-a4a7-2582b8e8cce9, rgba(0, 0, 0, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-f8a3596b-11e1-4890-b487-337e33fa0665, #f8f8f8); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-zSLFP .framer-avi7lr, .framer-zSLFP .framer-u9ha2t, .framer-zSLFP .framer-my7q7m, .framer-zSLFP .framer-i515dt, .framer-zSLFP .framer-frdtux { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zSLFP .framer-cma1nz { background-color: var(--token-0073ae2f-0032-441f-8a2d-71861ef066c4, #212121); flex: none; height: 1px; opacity: 0.1; overflow: hidden; position: relative; width: 100%; }\",\".framer-zSLFP .framer-lfilt9 { flex: none; height: 260px; overflow: hidden; position: relative; width: 100%; }\",\".framer-zSLFP .framer-oplapl-container { flex: none; height: auto; left: 95px; position: absolute; top: 53px; width: auto; }\",\".framer-zSLFP .framer-1qvyp5s-container { bottom: 86px; flex: none; height: auto; left: 35px; position: absolute; width: auto; }\",\".framer-zSLFP .framer-7vh11v-container { bottom: 137px; flex: none; height: auto; left: 52%; position: absolute; transform: translateX(-50%); width: auto; }\",\".framer-zSLFP .framer-1097n2v-container { flex: none; height: auto; position: absolute; right: 91px; top: 31px; width: auto; }\",\".framer-zSLFP .framer-jsz4yr-container { bottom: 42px; flex: none; height: auto; left: 44%; position: absolute; transform: translateX(-50%); width: auto; }\",\".framer-zSLFP .framer-uqoph5-container { bottom: 102px; flex: none; height: auto; position: absolute; right: 42px; width: auto; }\",\".framer-zSLFP .framer-1npo9p4-container { bottom: 29px; flex: none; height: auto; position: absolute; right: 110px; width: auto; }\",\".framer-zSLFP .framer-1ff35kb-container { flex: none; height: 160px; position: relative; width: 100%; }\",\".framer-zSLFP .framer-4vauga { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-zSLFP .framer-1o7sgsf-container, .framer-zSLFP .framer-11xp8nx-container, .framer-zSLFP .framer-3g9lvn-container, .framer-zSLFP .framer-37f5nr-container, .framer-zSLFP .framer-s5509f-container, .framer-zSLFP .framer-8uskj4-container, .framer-zSLFP .framer-1hlwm3v-container { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-zSLFP .framer-1um1jtz { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zSLFP .framer-1fdcl7o-container, .framer-zSLFP .framer-1tnzytv-container, .framer-zSLFP .framer-e1bbqt-container, .framer-zSLFP .framer-18sp7d6-container, .framer-zSLFP .framer-1elwd91-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-zSLFP .framer-14esrdp-container { bottom: 12px; flex: none; height: auto; left: 50%; position: fixed; transform: translateX(-50%); width: auto; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-zSLFP.framer-1viwnzy, .framer-zSLFP .framer-am00w7, .framer-zSLFP .framer-1fk7fko, .framer-zSLFP .framer-r1uahl, .framer-zSLFP .framer-vhszge, .framer-zSLFP .framer-17oqsc3, .framer-zSLFP .framer-sgldmm, .framer-zSLFP .framer-1xrtv2b, .framer-zSLFP .framer-1679yz3, .framer-zSLFP .framer-vx9wkf, .framer-zSLFP .framer-1cb5vq7, .framer-zSLFP .framer-9kkcim, .framer-zSLFP .framer-1lvgsxu, .framer-zSLFP .framer-1uytdw5, .framer-zSLFP .framer-avi7lr, .framer-zSLFP .framer-1fk4d9t, .framer-zSLFP .framer-u9ha2t, .framer-zSLFP .framer-1jn24wa, .framer-zSLFP .framer-my7q7m, .framer-zSLFP .framer-cx8h7s, .framer-zSLFP .framer-i515dt, .framer-zSLFP .framer-1elhpou, .framer-zSLFP .framer-frdtux, .framer-zSLFP .framer-1i0ncb6, .framer-zSLFP .framer-10yn6on, .framer-zSLFP .framer-4vauga, .framer-zSLFP .framer-1p1xkzq, .framer-zSLFP .framer-1um1jtz { gap: 0px; } .framer-zSLFP.framer-1viwnzy > *, .framer-zSLFP .framer-am00w7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-zSLFP.framer-1viwnzy > :first-child, .framer-zSLFP .framer-am00w7 > :first-child, .framer-zSLFP .framer-r1uahl > :first-child, .framer-zSLFP .framer-vhszge > :first-child, .framer-zSLFP .framer-17oqsc3 > :first-child, .framer-zSLFP .framer-sgldmm > :first-child, .framer-zSLFP .framer-vx9wkf > :first-child, .framer-zSLFP .framer-1cb5vq7 > :first-child, .framer-zSLFP .framer-9kkcim > :first-child, .framer-zSLFP .framer-1lvgsxu > :first-child, .framer-zSLFP .framer-1uytdw5 > :first-child, .framer-zSLFP .framer-avi7lr > :first-child, .framer-zSLFP .framer-1fk4d9t > :first-child, .framer-zSLFP .framer-u9ha2t > :first-child, .framer-zSLFP .framer-1jn24wa > :first-child, .framer-zSLFP .framer-my7q7m > :first-child, .framer-zSLFP .framer-cx8h7s > :first-child, .framer-zSLFP .framer-i515dt > :first-child, .framer-zSLFP .framer-1elhpou > :first-child, .framer-zSLFP .framer-frdtux > :first-child, .framer-zSLFP .framer-1i0ncb6 > :first-child, .framer-zSLFP .framer-10yn6on > :first-child, .framer-zSLFP .framer-1p1xkzq > :first-child, .framer-zSLFP .framer-1um1jtz > :first-child { margin-top: 0px; } .framer-zSLFP.framer-1viwnzy > :last-child, .framer-zSLFP .framer-am00w7 > :last-child, .framer-zSLFP .framer-r1uahl > :last-child, .framer-zSLFP .framer-vhszge > :last-child, .framer-zSLFP .framer-17oqsc3 > :last-child, .framer-zSLFP .framer-sgldmm > :last-child, .framer-zSLFP .framer-vx9wkf > :last-child, .framer-zSLFP .framer-1cb5vq7 > :last-child, .framer-zSLFP .framer-9kkcim > :last-child, .framer-zSLFP .framer-1lvgsxu > :last-child, .framer-zSLFP .framer-1uytdw5 > :last-child, .framer-zSLFP .framer-avi7lr > :last-child, .framer-zSLFP .framer-1fk4d9t > :last-child, .framer-zSLFP .framer-u9ha2t > :last-child, .framer-zSLFP .framer-1jn24wa > :last-child, .framer-zSLFP .framer-my7q7m > :last-child, .framer-zSLFP .framer-cx8h7s > :last-child, .framer-zSLFP .framer-i515dt > :last-child, .framer-zSLFP .framer-1elhpou > :last-child, .framer-zSLFP .framer-frdtux > :last-child, .framer-zSLFP .framer-1i0ncb6 > :last-child, .framer-zSLFP .framer-10yn6on > :last-child, .framer-zSLFP .framer-1p1xkzq > :last-child, .framer-zSLFP .framer-1um1jtz > :last-child { margin-bottom: 0px; } .framer-zSLFP .framer-1fk7fko > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-zSLFP .framer-1fk7fko > :first-child, .framer-zSLFP .framer-1xrtv2b > :first-child, .framer-zSLFP .framer-1679yz3 > :first-child, .framer-zSLFP .framer-4vauga > :first-child { margin-left: 0px; } .framer-zSLFP .framer-1fk7fko > :last-child, .framer-zSLFP .framer-1xrtv2b > :last-child, .framer-zSLFP .framer-1679yz3 > :last-child, .framer-zSLFP .framer-4vauga > :last-child { margin-right: 0px; } .framer-zSLFP .framer-r1uahl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-zSLFP .framer-vhszge > *, .framer-zSLFP .framer-1cb5vq7 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-zSLFP .framer-17oqsc3 > *, .framer-zSLFP .framer-vx9wkf > *, .framer-zSLFP .framer-1lvgsxu > *, .framer-zSLFP .framer-1i0ncb6 > *, .framer-zSLFP .framer-10yn6on > *, .framer-zSLFP .framer-1p1xkzq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-zSLFP .framer-sgldmm > *, .framer-zSLFP .framer-9kkcim > *, .framer-zSLFP .framer-1uytdw5 > *, .framer-zSLFP .framer-1fk4d9t > *, .framer-zSLFP .framer-1jn24wa > *, .framer-zSLFP .framer-cx8h7s > *, .framer-zSLFP .framer-1elhpou > *, .framer-zSLFP .framer-1um1jtz > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-zSLFP .framer-1xrtv2b > *, .framer-zSLFP .framer-1679yz3 > *, .framer-zSLFP .framer-4vauga > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-zSLFP .framer-avi7lr > *, .framer-zSLFP .framer-u9ha2t > *, .framer-zSLFP .framer-my7q7m > *, .framer-zSLFP .framer-i515dt > *, .framer-zSLFP .framer-frdtux > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-zSLFP[data-border=\"true\"]::after, .framer-zSLFP [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; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-zSLFP.framer-1viwnzy { width: 810px; } .framer-zSLFP .framer-18uamoc { height: var(--framer-aspect-ratio-supported, 306px); } .framer-zSLFP .framer-f80aq4 { height: var(--framer-aspect-ratio-supported, 24px); } .framer-zSLFP .framer-oplapl-container { left: 43px; top: 37px; } .framer-zSLFP .framer-1qvyp5s-container { bottom: 92px; left: 22px; } .framer-zSLFP .framer-7vh11v-container { bottom: 136px; left: 65%; } .framer-zSLFP .framer-1097n2v-container { right: 15px; top: 21px; } .framer-zSLFP .framer-jsz4yr-container { bottom: 14px; left: 55%; } .framer-zSLFP .framer-uqoph5-container, .framer-zSLFP .framer-1npo9p4-container { bottom: 60px; right: 23px; }}\",\"@media (max-width: 809px) { .framer-zSLFP.framer-1viwnzy { width: 390px; } .framer-zSLFP .framer-1fk7fko { flex-direction: column; gap: 0px; padding: 0px 16px 0px 16px; } .framer-zSLFP .framer-r1uahl { flex: none; gap: 16px; padding: 16px 0px 0px 0px; position: relative; top: unset; width: 100%; } .framer-zSLFP .framer-vhszge, .framer-zSLFP .framer-1cb5vq7 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; padding: 16px; } .framer-zSLFP .framer-18uamoc { height: var(--framer-aspect-ratio-supported, 311px); } .framer-zSLFP .framer-17oqsc3 { gap: 20px; } .framer-zSLFP .framer-vx9wkf { flex: none; gap: 16px; padding: 16px 0px 0px 0px; width: 100%; } .framer-zSLFP .framer-1lvgsxu, .framer-zSLFP .framer-1i0ncb6, .framer-zSLFP .framer-10yn6on, .framer-zSLFP .framer-1p1xkzq { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; gap: 16px; padding: 16px; } .framer-zSLFP .framer-oplapl-container { left: 60px; top: 43px; } .framer-zSLFP .framer-1qvyp5s-container { left: 26px; } .framer-zSLFP .framer-7vh11v-container { bottom: 130px; left: 62%; } .framer-zSLFP .framer-1097n2v-container { right: 12px; top: 21px; } .framer-zSLFP .framer-jsz4yr-container { bottom: 10px; left: 50%; } .framer-zSLFP .framer-uqoph5-container, .framer-zSLFP .framer-1npo9p4-container { bottom: 54px; right: 37px; } .framer-zSLFP .framer-14esrdp-container { bottom: 24px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-zSLFP .framer-1fk7fko, .framer-zSLFP .framer-r1uahl, .framer-zSLFP .framer-17oqsc3, .framer-zSLFP .framer-vx9wkf, .framer-zSLFP .framer-1lvgsxu, .framer-zSLFP .framer-1i0ncb6, .framer-zSLFP .framer-10yn6on, .framer-zSLFP .framer-1p1xkzq { gap: 0px; } .framer-zSLFP .framer-1fk7fko > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-zSLFP .framer-1fk7fko > :first-child, .framer-zSLFP .framer-r1uahl > :first-child, .framer-zSLFP .framer-17oqsc3 > :first-child, .framer-zSLFP .framer-vx9wkf > :first-child, .framer-zSLFP .framer-1lvgsxu > :first-child, .framer-zSLFP .framer-1i0ncb6 > :first-child, .framer-zSLFP .framer-10yn6on > :first-child, .framer-zSLFP .framer-1p1xkzq > :first-child { margin-top: 0px; } .framer-zSLFP .framer-1fk7fko > :last-child, .framer-zSLFP .framer-r1uahl > :last-child, .framer-zSLFP .framer-17oqsc3 > :last-child, .framer-zSLFP .framer-vx9wkf > :last-child, .framer-zSLFP .framer-1lvgsxu > :last-child, .framer-zSLFP .framer-1i0ncb6 > :last-child, .framer-zSLFP .framer-10yn6on > :last-child, .framer-zSLFP .framer-1p1xkzq > :last-child { margin-bottom: 0px; } .framer-zSLFP .framer-r1uahl > *, .framer-zSLFP .framer-vx9wkf > *, .framer-zSLFP .framer-1lvgsxu > *, .framer-zSLFP .framer-1i0ncb6 > *, .framer-zSLFP .framer-10yn6on > *, .framer-zSLFP .framer-1p1xkzq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-zSLFP .framer-17oqsc3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2340\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"S4UINEAsj\":{\"layout\":[\"fixed\",\"auto\"]},\"fWLV9kTLJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerIDWrLHBcp=withCSS(Component,css,\"framer-zSLFP\");export default FramerIDWrLHBcp;FramerIDWrLHBcp.displayName=\"About Me\";FramerIDWrLHBcp.defaultProps={height:2340,width:1200};addFonts(FramerIDWrLHBcp,[{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\"}]},...ShaderGradientFonts,...ButtonCloseFonts,...TagFonts,...ButtonFonts,...ExpertiseTagFonts,...SoftwareTileFonts,...TickerFonts,...DockFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIDWrLHBcp\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"2340\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"S4UINEAsj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fWLV9kTLJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "Image2", "getLoadingLazyAtYPosition", "css", "FramerrHSNDdRQy", "withCSS", "rHSNDdRQy_default", "addPropertyControls", "ControlType", "addFonts", "SoftwareLogoFonts", "getFonts", "rHSNDdRQy_default", "SoftwareLogoControls", "getPropertyControls", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "transformTemplate", "_", "t", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "sToyyiE4y", "DFnxIKHTo", "TDLxUBxqu", "f01l9ii6G", "Ol7CZdSLq", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "Link", "u", "RichText2", "x", "css", "FramereQjxzerFX", "withCSS", "eQjxzerFX_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "rj6FfqNd8", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "SVG", "RichText2", "x", "css", "FramerKbgaPhzPo", "withCSS", "KbgaPhzPo_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "ShaderGradientFonts", "getFonts", "ShaderGradient", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "ButtonCloseFonts", "yIdgAP9ew_default", "MotionDivWithOptimizedAppearEffect", "motion", "TagFonts", "nb2JvBvU3_default", "ButtonFonts", "RowA6Ej73_default", "ExpertiseTagFonts", "KbgaPhzPo_default", "ContainerWithFX", "withFX", "Container", "SoftwareTileFonts", "eQjxzerFX_default", "TickerFonts", "Ticker", "DockFonts", "F1DRQZOh4_default", "FooterFonts", "EUYqNX_mY_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "transition5", "animation7", "transition6", "animation8", "transition7", "animation9", "transformTemplate1", "_", "t", "transition8", "animation10", "transition9", "animation11", "transition10", "animation12", "animation13", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "getLoadingLazyAtYPosition", "ImageWithOptimizedAppearEffect", "ComponentViewportProvider", "Container", "ShaderGradient", "Image2", "MotionDivWithOptimizedAppearEffect", "ResolveLinks", "resolvedLinks", "yIdgAP9ew_default", "RichText2", "x", "nb2JvBvU3_default", "RowA6Ej73_default", "ContainerWithFX", "KbgaPhzPo_default", "Ticker", "eQjxzerFX_default", "F1DRQZOh4_default", "EUYqNX_mY_default", "css", "FramerIDWrLHBcp", "withCSS", "IDWrLHBcp_default", "addFonts", "ShaderGradientFonts", "ButtonCloseFonts", "TagFonts", "ButtonFonts", "ExpertiseTagFonts", "SoftwareTileFonts", "TickerFonts", "DockFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
