{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js", "ssg:https://framerusercontent.com/modules/bBL2Szyke032OuiFSFfA/x6iVe2etmIFwdU8RYcTd/CL4sLDRA1.js", "ssg:https://framerusercontent.com/modules/htYfXsMGxIj8ACs8tdnY/8loNXKq0RR9n5ucuORXV/WUPcCODow.js", "ssg:https://framerusercontent.com/modules/q0HohR2CGpLr7ElyOcYy/Biq2JXdlHSp4RJmFuKjE/SGKTYOK6t.js", "ssg:https://framerusercontent.com/modules/rEl84sQ09GoVpJMGS0Qu/Bp5XUWRVUVVTDXmBBbHv/zr00Tmdx_.js", "ssg:https://framerusercontent.com/modules/mEt9Q1xPCb6cfgB6Zcyj/fxBh6x8HORTeOcuSzjkL/augiA20Il.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;const numChildren=Children.count(slots);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(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.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(slots,(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%\"};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]);}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,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"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\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter Tight-regular\",\"GF;Inter Tight-700\",\"GF;Inter Tight-700italic\",\"GF;Inter Tight-italic\"]);export const fonts=[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqWSRToK8EPg.woff2\",weight:\"700\"},{family:\"Inter Tight\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ylGC5SgqoUPvi5.woff2\",weight:\"700\"},{family:\"Inter Tight\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHy5SgqoUPvi5.woff2\",weight:\"400\"}];export const css=['.framer-FAsZA .framer-styles-preset-eguqas:not(.rich-text-wrapper), .framer-FAsZA .framer-styles-preset-eguqas.rich-text-wrapper h4 { --framer-font-family: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 105%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-e85b3d33-80cf-4a32-b725-6dea2122ed22, #7e7e97); --framer-text-decoration: none; --framer-text-transform: uppercase; }'];export const className=\"framer-FAsZA\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={OKKq1Dx9i:{hover:true},SSmbu1nN4:{hover:true}};const cycleOrder=[\"OKKq1Dx9i\",\"SSmbu1nN4\"];const serializationHash=\"framer-QuUT1\";const variantClassNames={OKKq1Dx9i:\"framer-v-1ra6v9g\",SSmbu1nN4:\"framer-v-cgafel\"};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 transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};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={\"Hire Me\":\"SSmbu1nN4\",\"Visit Link\":\"OKKq1Dx9i\"};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:\"OKKq1Dx9i\"};};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:\"OKKq1Dx9i\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"OKKq1Dx9i-hover\",\"SSmbu1nN4-hover\"].includes(gestureVariant))return true;if(baseVariant===\"SSmbu1nN4\")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,...addPropertyOverrides({SSmbu1nN4:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/xinwei-luo-254776279/\",openInNewTab:true,...addPropertyOverrides({SSmbu1nN4:{href:\"https://cal.com/oendostudio/15min?date=2024-02-28&month=2024-02\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1ra6v9g\",className,classNames)} framer-9swwau`,\"data-border\":true,\"data-framer-name\":\"Visit Link\",layoutDependency:layoutDependency,layoutId:\"OKKq1Dx9i\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},variants:{\"OKKq1Dx9i-hover\":{backgroundColor:\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8))\"},\"SSmbu1nN4-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 191, 42)\"}},...addPropertyOverrides({\"OKKq1Dx9i-hover\":{\"data-framer-name\":undefined},\"SSmbu1nN4-hover\":{\"data-framer-name\":undefined},SSmbu1nN4:{\"data-framer-name\":\"Hire Me\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8)))\"},children:\"Visit Link\"})}),className:\"framer-hy9lsg\",\"data-framer-name\":\"Visit Link\",fonts:[\"GF;Inter Tight-regular\"],layoutDependency:layoutDependency,layoutId:\"edRiTELvf\",style:{\"--extracted-r6o4lv\":\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{\"OKKq1Dx9i-hover\":{\"--extracted-r6o4lv\":\"var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253))\"},\"SSmbu1nN4-hover\":{\"--extracted-r6o4lv\":\"var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"OKKq1Dx9i-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253)))\"},children:\"Visit Link\"})})},\"SSmbu1nN4-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253)))\"},children:\"Hire Me\"})}),fonts:[\"GF;Inter Tight-500\"]},SSmbu1nN4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8)))\"},children:\"Hire Me\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-88is16\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"kazHZqXTi\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 10\"><path d=\"M 11.854 5.354 L 7.354 9.854 C 7.26 9.948 7.133 10 7 10 C 6.867 10 6.74 9.948 6.646 9.854 C 6.552 9.76 6.5 9.633 6.5 9.5 C 6.5 9.367 6.552 9.24 6.646 9.146 L 10.293 5.5 L 0.5 5.5 C 0.367 5.5 0.24 5.447 0.146 5.354 C 0.053 5.26 0 5.133 0 5 C 0 4.867 0.053 4.74 0.146 4.646 C 0.24 4.553 0.367 4.5 0.5 4.5 L 10.293 4.5 L 6.646 0.854 C 6.552 0.76 6.5 0.633 6.5 0.5 C 6.5 0.367 6.552 0.24 6.646 0.146 C 6.74 0.052 6.867 0 7 0 C 7.133 0 7.26 0.052 7.354 0.146 L 11.854 4.646 C 11.9 4.693 11.937 4.748 11.962 4.809 C 11.987 4.869 12 4.934 12 5 C 12 5.066 11.987 5.131 11.962 5.191 C 11.937 5.252 11.9 5.307 11.854 5.354 Z\" fill=\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8)) /* {&quot;name&quot;:&quot;Black 1000&quot;} */\"></path></svg>',svgContentId:12731378310,withExternalLayout:true,...addPropertyOverrides({\"OKKq1Dx9i-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 10\"><path d=\"M 11.854 5.354 L 7.354 9.854 C 7.26 9.948 7.133 10 7 10 C 6.867 10 6.74 9.948 6.646 9.854 C 6.552 9.76 6.5 9.633 6.5 9.5 C 6.5 9.367 6.552 9.24 6.646 9.146 L 10.293 5.5 L 0.5 5.5 C 0.367 5.5 0.24 5.447 0.146 5.354 C 0.053 5.26 0 5.133 0 5 C 0 4.867 0.053 4.74 0.146 4.646 C 0.24 4.553 0.367 4.5 0.5 4.5 L 10.293 4.5 L 6.646 0.854 C 6.552 0.76 6.5 0.633 6.5 0.5 C 6.5 0.367 6.552 0.24 6.646 0.146 C 6.74 0.052 6.867 0 7 0 C 7.133 0 7.26 0.052 7.354 0.146 L 11.854 4.646 C 11.9 4.693 11.937 4.748 11.962 4.809 C 11.987 4.869 12 4.934 12 5 C 12 5.066 11.987 5.131 11.962 5.191 C 11.937 5.252 11.9 5.307 11.854 5.354 Z\" fill=\"var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253)) /* {&quot;name&quot;:&quot;Grey 1000&quot;} */\"></path></svg>',svgContentId:12771197733},\"SSmbu1nN4-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 10\"><path d=\"M 11.854 5.354 L 7.354 9.854 C 7.26 9.948 7.133 10 7 10 C 6.867 10 6.74 9.948 6.646 9.854 C 6.552 9.76 6.5 9.633 6.5 9.5 C 6.5 9.367 6.552 9.24 6.646 9.146 L 10.293 5.5 L 0.5 5.5 C 0.367 5.5 0.24 5.447 0.146 5.354 C 0.053 5.26 0 5.133 0 5 C 0 4.867 0.053 4.74 0.146 4.646 C 0.24 4.553 0.367 4.5 0.5 4.5 L 10.293 4.5 L 6.646 0.854 C 6.552 0.76 6.5 0.633 6.5 0.5 C 6.5 0.367 6.552 0.24 6.646 0.146 C 6.74 0.052 6.867 0 7 0 C 7.133 0 7.26 0.052 7.354 0.146 L 11.854 4.646 C 11.9 4.693 11.937 4.748 11.962 4.809 C 11.987 4.869 12 4.934 12 5 C 12 5.066 11.987 5.131 11.962 5.191 C 11.937 5.252 11.9 5.307 11.854 5.354 Z\" fill=\"var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253)) /* {&quot;name&quot;:&quot;White 1000&quot;} */\"></path></svg>',svgContentId:10698016735},SSmbu1nN4:{svgContentId:9557812100}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QuUT1.framer-9swwau, .framer-QuUT1 .framer-9swwau { display: block; }\",\".framer-QuUT1.framer-1ra6v9g { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: hidden; padding: 10px 18px 10px 18px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-QuUT1 .framer-hy9lsg { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-QuUT1 .framer-88is16 { flex: none; height: 10px; position: relative; width: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QuUT1.framer-1ra6v9g { gap: 0px; } .framer-QuUT1.framer-1ra6v9g > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QuUT1.framer-1ra6v9g > :first-child { margin-left: 0px; } .framer-QuUT1.framer-1ra6v9g > :last-child { margin-right: 0px; } }\",'.framer-QuUT1[data-border=\"true\"]::after, .framer-QuUT1 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 96\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"SSmbu1nN4\":{\"layout\":[\"auto\",\"fixed\"]},\"qNhBIfAu7\":{\"layout\":[\"auto\",\"fixed\"]},\"zMsmGvRAf\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWUPcCODow=withCSS(Component,css,\"framer-QuUT1\");export default FramerWUPcCODow;FramerWUPcCODow.displayName=\"Button\";FramerWUPcCODow.defaultProps={height:48,width:96};addPropertyControls(FramerWUPcCODow,{variant:{options:[\"OKKq1Dx9i\",\"SSmbu1nN4\"],optionTitles:[\"Visit Link\",\"Hire Me\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerWUPcCODow,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWUPcCODow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"48\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"96\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"SSmbu1nN4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"qNhBIfAu7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"zMsmGvRAf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WUPcCODow.map", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/bBL2Szyke032OuiFSFfA/x6iVe2etmIFwdU8RYcTd/CL4sLDRA1.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/gBQSe5GF2YfPriqln0y7/1mMMvdJjTs4UCIWYyFG9/mHZTUGTIl.js\";import Button from\"https://framerusercontent.com/modules/htYfXsMGxIj8ACs8tdnY/8loNXKq0RR9n5ucuORXV/WUPcCODow.js\";const ButtonFonts=getFonts(Button);const cycleOrder=[\"FBz38I54P\",\"T8EkImCoT\",\"OLSwIu9BO\",\"YQcsMijKL\",\"U4fHt9XIl\",\"CSeyg0Hfr\",\"oaWqogKWG\",\"ZDuvwg9JV\",\"mvqqFG5Oo\"];const serializationHash=\"framer-20fIg\";const variantClassNames={CSeyg0Hfr:\"framer-v-npsw0b\",FBz38I54P:\"framer-v-wbaxo2\",mvqqFG5Oo:\"framer-v-lqisyr\",oaWqogKWG:\"framer-v-1t9diul\",OLSwIu9BO:\"framer-v-uc41rs\",T8EkImCoT:\"framer-v-1737nzk\",U4fHt9XIl:\"framer-v-1sfybfx\",YQcsMijKL:\"framer-v-gjh9mh\",ZDuvwg9JV:\"framer-v-18oewci\"};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={\"Genesis | Mobile\":\"ZDuvwg9JV\",\"Genesis | Tablet\":\"U4fHt9XIl\",\"Oendo Studio | Desktop\":\"T8EkImCoT\",\"Oendo Studio | Mobile\":\"oaWqogKWG\",\"Oendo Studio | Tablet\":\"YQcsMijKL\",\"Pitchblack | Desktop\":\"OLSwIu9BO\",\"Pitchblack | Mobile\":\"mvqqFG5Oo\",\"Pitchblack Tablet\":\"CSeyg0Hfr\"};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:\"FBz38I54P\"};};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:\"FBz38I54P\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-wbaxo2\",className,classNames),\"data-framer-name\":\"Oendo Studio | Desktop\",layoutDependency:layoutDependency,layoutId:\"FBz38I54P\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({CSeyg0Hfr:{\"data-framer-name\":\"Pitchblack Tablet\"},mvqqFG5Oo:{\"data-framer-name\":\"Pitchblack | Mobile\"},oaWqogKWG:{\"data-framer-name\":\"Oendo Studio | Mobile\"},OLSwIu9BO:{\"data-framer-name\":\"Pitchblack | Desktop\"},U4fHt9XIl:{\"data-framer-name\":\"Genesis | Tablet\"},YQcsMijKL:{\"data-framer-name\":\"Oendo Studio | Tablet\"},ZDuvwg9JV:{\"data-framer-name\":\"Genesis | Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f3whjg\",\"data-framer-name\":\"Frame 36\",layoutDependency:layoutDependency,layoutId:\"V1HT2fJI0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p59qmq\",\"data-framer-name\":\"Frame 35\",layoutDependency:layoutDependency,layoutId:\"QMrrDTsc3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\" OCT, 2024 - Current\"})}),className:\"framer-sky6sr\",\"data-framer-name\":\"Sep, 2023 - Current\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XPG3HHQl7\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CSeyg0Hfr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"Mar, 2024 - MAY, 2024\"})})},mvqqFG5Oo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"Mar, 2024 - MAY, 2024\"})})},OLSwIu9BO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"Mar, 2024 - MAY, 2024\"})})},T8EkImCoT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"AUG, 2024 - OCT, 2024\"})})},U4fHt9XIl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"AUG, 2024 - OCT, 2024\"})})},ZDuvwg9JV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"AUG, 2024 - OCT, 2024\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"105%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8)))\"},children:\"UX/UI Designer, eTinda\"})}),className:\"framer-m6dh8n\",\"data-framer-name\":\"Product Designer, Coinbase\",fonts:[\"GF;Inter Tight-regular\"],layoutDependency:layoutDependency,layoutId:\"SmH3EJaQt\",style:{\"--extracted-r6o4lv\":\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CSeyg0Hfr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"105%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8)))\"},children:\"UX/UI Designer, PrintPal\"})})},mvqqFG5Oo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"105%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8)))\"},children:\"UX/UI Designer, PrintPal\"})})},OLSwIu9BO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"105%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8)))\"},children:[\"UX/UI Designer, \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-weight\":\"500\"},children:\"PrintPal\"})]})}),fonts:[\"GF;Inter Tight-regular\",\"GF;Inter Tight-500\"]},T8EkImCoT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"105%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\"UX/UI Designer, \"}),\"DB Website Redesign\"]})}),fonts:[\"GF;Inter Tight-500\",\"GF;Inter Tight-regular\"]},U4fHt9XIl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"105%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8)))\"},children:\"UX/UI Designer, DB Website Redesign\"})})},ZDuvwg9JV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"105%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8)))\"},children:\"UX/UI Designer, DB Website Redesign\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"As part of the eTinda team, I worked on designing a dashboard for sellers, aimed at small, marginalized producers. I focused on creating an easy-to-use interface to help sellers manage product listings and track orders efficiently. By integrating storytelling features that highlight the producers' backgrounds, I contributed to promoting the value of their products, helping to foster connections between sellers and buyers.\"})}),className:\"framer-66xv1k\",\"data-framer-name\":\"Designed and implemented a new email template that effectively communicated important updates and information to users, resulting in a 50% increase in open rates and click-through rates.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cHszox062\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CSeyg0Hfr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"I developed a user-friendly interface for PrintPal, focusing on reducing the complexity of remote printer setup and management. By conducting user research and implementing feedback, I reduced setup time by 30%, which contributed to a 20% increase in overall user satisfaction. My work streamlined cross-device functionality, improving the user experience for remote printing tasks.\"})})},mvqqFG5Oo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"I developed a user-friendly interface for PrintPal, focusing on reducing the complexity of remote printer setup and management. By conducting user research and implementing feedback, I reduced setup time by 30%, which contributed to a 20% increase in overall user satisfaction. My work streamlined cross-device functionality, improving the user experience for remote printing tasks.\"})})},OLSwIu9BO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"I developed a user-friendly interface for PrintPal, focusing on reducing the complexity of remote printer setup and management. By conducting user research and implementing feedback, I reduced setup time by 30%, which contributed to a 20% increase in overall user satisfaction. My work streamlined cross-device functionality, improving the user experience for remote printing tasks.\"})})},T8EkImCoT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"I spearheaded the redesign of the DB website's booking flow, optimizing UI elements for a more intuitive user experience. By simplifying the ticket booking process and introducing a membership promotion in the hero section, I improved the user journey, resulting in a 25% reduction in booking time and a 15% increase in completed bookings. My efforts contributed to a more streamlined and user-friendly interface for travelers.\"})})},U4fHt9XIl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"I spearheaded the redesign of the DB website's booking flow, optimizing UI elements for a more intuitive user experience. By simplifying the ticket booking process and introducing a membership promotion in the hero section, I improved the user journey, resulting in a 25% reduction in booking time and a 15% increase in completed bookings. My efforts contributed to a more streamlined and user-friendly interface for travelers.\"})})},ZDuvwg9JV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"I spearheaded the redesign of the DB website's booking flow, optimizing UI elements for a more intuitive user experience. By simplifying the ticket booking process and introducing a membership promotion in the hero section, I improved the user journey, resulting in a 25% reduction in booking time and a 15% increase in completed bookings. My efforts contributed to a more streamlined and user-friendly interface for travelers.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||183)-0-48)/2),...addPropertyOverrides({CSeyg0Hfr:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||171)-0-48)/2)},mvqqFG5Oo:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||246)-0-402.8)/2+314.8+40)},oaWqogKWG:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||271)-0-528.8)/2+440.8+40)},U4fHt9XIl:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||171)-0-48)/2)},ZDuvwg9JV:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||246)-0-402.8)/2+314.8+40)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sdb93f-container\",layoutDependency:layoutDependency,layoutId:\"PP7n7rJsR-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"PP7n7rJsR\",layoutId:\"PP7n7rJsR\",style:{height:\"100%\"},variant:\"OKKq1Dx9i\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-20fIg.framer-1s402r9, .framer-20fIg .framer-1s402r9 { display: block; }\",\".framer-20fIg.framer-wbaxo2 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-20fIg .framer-f3whjg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-20fIg .framer-1p59qmq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-20fIg .framer-sky6sr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-20fIg .framer-m6dh8n, .framer-20fIg .framer-66xv1k { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-20fIg .framer-1sdb93f-container { flex: none; height: 48px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-20fIg.framer-wbaxo2, .framer-20fIg .framer-f3whjg, .framer-20fIg .framer-1p59qmq { gap: 0px; } .framer-20fIg.framer-wbaxo2 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-20fIg.framer-wbaxo2 > :first-child { margin-left: 0px; } .framer-20fIg.framer-wbaxo2 > :last-child { margin-right: 0px; } .framer-20fIg .framer-f3whjg > *, .framer-20fIg .framer-1p59qmq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-20fIg .framer-f3whjg > :first-child, .framer-20fIg .framer-1p59qmq > :first-child { margin-top: 0px; } .framer-20fIg .framer-f3whjg > :last-child, .framer-20fIg .framer-1p59qmq > :last-child { margin-bottom: 0px; } }\",\".framer-20fIg.framer-v-1t9diul.framer-wbaxo2, .framer-20fIg.framer-v-18oewci.framer-wbaxo2, .framer-20fIg.framer-v-lqisyr.framer-wbaxo2 { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-20fIg.framer-v-1t9diul .framer-f3whjg, .framer-20fIg.framer-v-18oewci .framer-f3whjg, .framer-20fIg.framer-v-lqisyr .framer-f3whjg { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-20fIg.framer-v-1t9diul.framer-wbaxo2 { gap: 0px; } .framer-20fIg.framer-v-1t9diul.framer-wbaxo2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-20fIg.framer-v-1t9diul.framer-wbaxo2 > :first-child { margin-top: 0px; } .framer-20fIg.framer-v-1t9diul.framer-wbaxo2 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-20fIg.framer-v-18oewci.framer-wbaxo2 { gap: 0px; } .framer-20fIg.framer-v-18oewci.framer-wbaxo2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-20fIg.framer-v-18oewci.framer-wbaxo2 > :first-child { margin-top: 0px; } .framer-20fIg.framer-v-18oewci.framer-wbaxo2 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-20fIg.framer-v-lqisyr.framer-wbaxo2 { gap: 0px; } .framer-20fIg.framer-v-lqisyr.framer-wbaxo2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-20fIg.framer-v-lqisyr.framer-wbaxo2 > :first-child { margin-top: 0px; } .framer-20fIg.framer-v-lqisyr.framer-wbaxo2 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 183\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"T8EkImCoT\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"OLSwIu9BO\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"YQcsMijKL\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"U4fHt9XIl\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"CSeyg0Hfr\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"oaWqogKWG\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"ZDuvwg9JV\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"mvqqFG5Oo\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSGKTYOK6t=withCSS(Component,css,\"framer-20fIg\");export default FramerSGKTYOK6t;FramerSGKTYOK6t.displayName=\"Experience\";FramerSGKTYOK6t.defaultProps={height:183,width:1200};addPropertyControls(FramerSGKTYOK6t,{variant:{options:[\"FBz38I54P\",\"T8EkImCoT\",\"OLSwIu9BO\",\"YQcsMijKL\",\"U4fHt9XIl\",\"CSeyg0Hfr\",\"oaWqogKWG\",\"ZDuvwg9JV\",\"mvqqFG5Oo\"],optionTitles:[\"Oendo Studio | Desktop\",\"Oendo Studio | Desktop\",\"Pitchblack | Desktop\",\"Oendo Studio | Tablet\",\"Genesis | Tablet\",\"Pitchblack Tablet\",\"Oendo Studio | Mobile\",\"Genesis | Mobile\",\"Pitchblack | Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerSGKTYOK6t,[{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\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"}]},...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSGKTYOK6t\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"T8EkImCoT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"OLSwIu9BO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"YQcsMijKL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"U4fHt9XIl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"CSeyg0Hfr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"oaWqogKWG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"ZDuvwg9JV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"mvqqFG5Oo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"183\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8c7926c)\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=[\"CoKONKGFq\",\"FW8JnloXI\",\"xC4pRIlXn\",\"ik9BeqfNt\",\"TZ9qLzyOR\",\"ALkAFfwbN\",\"v4MORcBmZ\",\"bG1H_NXqD\",\"kvqpXWUe4\",\"WW6d5Ckht\"];const serializationHash=\"framer-9I0bB\";const variantClassNames={ALkAFfwbN:\"framer-v-1ngz7ry\",bG1H_NXqD:\"framer-v-yb582r\",CoKONKGFq:\"framer-v-puzouf\",FW8JnloXI:\"framer-v-yj2bor\",ik9BeqfNt:\"framer-v-1q4zxgp\",kvqpXWUe4:\"framer-v-17x1x3n\",TZ9qLzyOR:\"framer-v-1qtyfxa\",v4MORcBmZ:\"framer-v-1ztoz2\",WW6d5Ckht:\"framer-v-gdkp92\",xC4pRIlXn:\"framer-v-139vplz\"};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={Atlassian:\"WW6d5Ckht\",ChatGPT:\"TZ9qLzyOR\",Figma:\"CoKONKGFq\",Framer:\"FW8JnloXI\",Illustrator:\"ik9BeqfNt\",Midjourney:\"ALkAFfwbN\",Notion:\"v4MORcBmZ\",Photoshop:\"xC4pRIlXn\",Sketch:\"kvqpXWUe4\",Slack:\"bG1H_NXqD\"};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:\"CoKONKGFq\"};};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:\"CoKONKGFq\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"TZ9qLzyOR\")return true;return false;};const isDisplayed1=()=>{if([\"FW8JnloXI\",\"xC4pRIlXn\",\"ik9BeqfNt\",\"TZ9qLzyOR\",\"ALkAFfwbN\",\"v4MORcBmZ\",\"bG1H_NXqD\",\"kvqpXWUe4\",\"WW6d5Ckht\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"FW8JnloXI\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"xC4pRIlXn\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"ik9BeqfNt\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"v4MORcBmZ\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"bG1H_NXqD\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"ALkAFfwbN\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"kvqpXWUe4\")return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"WW6d5Ckht\")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-puzouf\",className,classNames),\"data-framer-name\":\"Figma\",layoutDependency:layoutDependency,layoutId:\"CoKONKGFq\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-138ef10f-c9a0-41b2-8a54-b5baa6e3b33b, rgb(255, 255, 255))\",borderBottomLeftRadius:19,borderBottomRightRadius:19,borderTopLeftRadius:19,borderTopRightRadius:19,...style},...addPropertyOverrides({ALkAFfwbN:{\"data-framer-name\":\"Midjourney\"},bG1H_NXqD:{\"data-framer-name\":\"Slack\"},FW8JnloXI:{\"data-framer-name\":\"Framer\"},ik9BeqfNt:{\"data-framer-name\":\"Illustrator\"},kvqpXWUe4:{\"data-framer-name\":\"Sketch\"},TZ9qLzyOR:{\"data-framer-name\":\"ChatGPT\"},v4MORcBmZ:{\"data-framer-name\":\"Notion\"},WW6d5Ckht:{\"data-framer-name\":\"Atlassian\"},xC4pRIlXn:{\"data-framer-name\":\"Photoshop\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-fyg81g\",\"data-framer-name\":\"Frame 1\",layoutDependency:layoutDependency,layoutId:\"i2R3fL334\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/hzHkAx8jvoFXSve6xeRJSidfOA.png\"},className:\"framer-8df4ip\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"ResQy6tnJ\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({TZ9qLzyOR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(17+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||72)-34-40)/2)+2),src:\"https://framerusercontent.com/images/hzHkAx8jvoFXSve6xeRJSidfOA.png\"}}},baseVariant,gestureVariant)})}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-oqvtnm\",\"data-framer-name\":\"figma\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"I481:833;481:714\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20 20C20 17.2386 22.2386 15 25 15C27.7614 15 30 17.2386 30 20C30 22.7614 27.7614 25 25 25C22.2386 25 20 22.7614 20 20Z\" fill=\"#1ABCFE\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 30C10 27.2386 12.2386 25 15 25H20V30C20 32.7614 17.7614 35 15 35C12.2386 35 10 32.7614 10 30Z\" fill=\"#0ACF83\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20 5V15H25C27.7614 15 30 12.7614 30 10C30 7.23858 27.7614 5 25 5H20Z\" fill=\"#FF7262\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 10C10 12.7614 12.2386 15 15 15H20V5H15C12.2386 5 10 7.23858 10 10Z\" fill=\"#F24E1E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 20C10 22.7614 12.2386 25 15 25H20V15H15C12.2386 15 10 17.2386 10 20Z\" fill=\"#A259FF\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-6q4os\",\"data-framer-name\":\"framer\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"Rgd0lmEGF\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20 37.5C29.665 37.5 37.5 29.665 37.5 20C37.5 10.335 29.665 2.5 20 2.5C10.335 2.5 2.5 10.335 2.5 20C2.5 29.665 10.335 37.5 20 37.5Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.25 25.4167H20V33.7501L11.25 25.4167Z\" fill=\"#0055FF\"/>\\n<path d=\"M20 17.0833H11.25V25.4166H28.75L20 17.0833Z\" fill=\"#00AAFF\"/>\\n<path d=\"M11.25 8.75L20 17.0833H28.75V8.75H11.25Z\" fill=\"#88DDFF\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1yob3kx\",\"data-framer-name\":\"adobe_photoshop\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"y12nUV2Gq\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.5 15.1667C2.5 10.7329 2.5 8.51604 3.36287 6.82258C4.12186 5.33296 5.33296 4.12186 6.82258 3.36287C8.51604 2.5 10.7329 2.5 15.1667 2.5H24.8333C29.2671 2.5 31.484 2.5 33.1774 3.36287C34.667 4.12186 35.8781 5.33296 36.6371 6.82258C37.5 8.51604 37.5 10.7329 37.5 15.1667V24.8333C37.5 29.2671 37.5 31.484 36.6371 33.1774C35.8781 34.667 34.667 35.8781 33.1774 36.6371C31.484 37.5 29.2671 37.5 24.8333 37.5H15.1667C10.7329 37.5 8.51604 37.5 6.82258 36.6371C5.33296 35.8781 4.12186 34.667 3.36287 33.1774C2.5 31.484 2.5 29.2671 2.5 24.8333V15.1667Z\" fill=\"#001E36\"/>\\n<path d=\"M10 28.1453V12.7543C10 12.6496 10.0438 12.5897 10.1458 12.5897C11.6529 12.5897 13.1592 12.5 14.6667 12.5C17.1127 12.5 19.7612 13.3364 20.6896 15.8953C20.9083 16.5235 21.025 17.1667 21.025 17.8397C21.025 19.1261 20.7333 20.188 20.15 21.0256C18.5205 23.3654 15.6962 23.3291 13.1646 23.3291V28.1303C13.1844 28.2725 13.0632 28.3397 12.9458 28.3397H10.175C10.0583 28.3397 10 28.2799 10 28.1453ZM13.1792 15.4765V20.5021C14.183 20.5757 15.2334 20.5837 16.1979 20.2628C17.2627 19.9557 17.8458 19.0339 17.8458 17.9295C17.8754 16.9884 17.3626 16.0854 16.4896 15.7457C15.5367 15.3495 14.2078 15.3258 13.1792 15.4765Z\" fill=\"#31A8FF\"/>\\n<path d=\"M30.1208 19.5092C29.6796 19.2767 29.2096 19.1066 28.7238 19.0035C28.0995 18.8566 25.6372 18.3421 25.6363 19.6296C25.6581 20.3484 26.7991 20.7006 27.3033 20.9059C29.0731 21.5135 31.0759 22.5996 31.0365 24.783C31.0906 27.501 28.4572 28.5876 26.1998 28.5878C25.0246 28.6 23.8003 28.418 22.7248 27.9135C22.6222 27.8592 22.5561 27.743 22.5605 27.6245V25.0238C22.5489 24.9195 22.6608 24.8284 22.7483 24.9034C23.8021 25.5407 25.0512 25.8501 26.2702 25.8666C26.8083 25.8666 27.8749 25.8145 27.8668 25.0238C27.8668 24.265 26.5909 23.9162 26.0824 23.7234C25.3451 23.4602 24.6461 23.0957 24.0045 22.6398C23.1077 22.0001 22.5452 20.9746 22.5605 19.8463C22.5553 17.2871 24.9793 16.1384 27.1624 16.1378C28.183 16.1294 29.2789 16.205 30.229 16.6195C30.3656 16.6597 30.3939 16.8036 30.3933 16.9325V19.3647C30.402 19.5157 30.2343 19.5671 30.1208 19.5092Z\" fill=\"#31A8FF\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-vuf1z2\",\"data-framer-name\":\"adobe_illustrator\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"fcvXaUaoY\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.5 15.1667C2.5 10.7329 2.5 8.51604 3.36287 6.82258C4.12186 5.33296 5.33296 4.12186 6.82258 3.36287C8.51604 2.5 10.7329 2.5 15.1667 2.5H24.8333C29.2671 2.5 31.484 2.5 33.1774 3.36287C34.667 4.12186 35.8781 5.33296 36.6371 6.82258C37.5 8.51604 37.5 10.7329 37.5 15.1667V24.8333C37.5 29.2671 37.5 31.484 36.6371 33.1774C35.8781 34.667 34.667 35.8781 33.1774 36.6371C31.484 37.5 29.2671 37.5 24.8333 37.5H15.1667C10.7329 37.5 8.51604 37.5 6.82258 36.6371C5.33296 35.8781 4.12186 34.667 3.36287 33.1774C2.5 31.484 2.5 29.2671 2.5 24.8333V15.1667Z\" fill=\"#330000\"/>\\n<path d=\"M19.4603 24.4953H14.0366L12.9331 28.0112C12.9025 28.1418 12.7822 28.2343 12.6514 28.2279H9.90431C9.74765 28.2279 9.69287 28.1396 9.73996 27.963L14.4358 14.0923C14.4828 13.9478 14.5297 13.7832 14.5767 13.5986C14.6381 13.2773 14.6695 12.9507 14.6706 12.6233C14.6571 12.5266 14.7421 12.4412 14.8349 12.4547H18.5681C18.6775 12.4547 18.7401 12.4949 18.7559 12.5752L24.0858 27.9871C24.1327 28.1478 24.0857 28.228 23.9448 28.2279H20.8925C20.7855 28.2401 20.6832 28.1667 20.6577 28.0594L19.4603 24.4953ZM14.8819 21.4611H18.5916C17.9821 19.3784 17.2943 17.323 16.7368 15.2241C16.1353 17.3266 15.479 19.4206 14.8819 21.4611Z\" fill=\"#FF9A00\"/>\\n<path d=\"M27.2551 15.0073C27.0157 15.0171 26.7768 14.9751 26.5543 14.8838C26.3318 14.7925 26.1306 14.654 25.9638 14.4775C25.7975 14.2933 25.6683 14.0772 25.5836 13.8417C25.499 13.6061 25.4606 13.3557 25.4707 13.1049C25.4621 12.8565 25.5048 12.6091 25.5958 12.3788C25.6868 12.1485 25.8242 11.9405 25.999 11.7684C26.172 11.598 26.3763 11.4645 26.6 11.3756C26.8236 11.2868 27.0623 11.2443 27.3021 11.2506C27.8656 11.2506 28.3078 11.4232 28.6287 11.7684C28.7906 11.9477 28.9165 12.1581 28.9991 12.3874C29.0817 12.6168 29.1193 12.8606 29.1099 13.1049C29.1198 13.3567 29.0801 13.6079 28.9934 13.8437C28.9067 14.0795 28.7747 14.2951 28.6052 14.4775C28.428 14.6566 28.2166 14.7962 27.9842 14.8873C27.7519 14.9785 27.5036 15.0194 27.2551 15.0073ZM25.635 27.987V16.4762C25.635 16.3317 25.6974 16.2595 25.8229 16.2595H28.7108C28.8359 16.2595 28.8986 16.3317 28.8987 16.4762V27.987C28.8987 28.1477 28.8361 28.228 28.7108 28.2278H25.8464C25.7055 28.2278 25.6351 28.1476 25.635 27.987Z\" fill=\"#FF9A00\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-w09lyn\",\"data-framer-name\":\"notion\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"nDpOXt7kZ\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.145 36.5222L2.8458 31.1664C1.81141 29.8778 1.25 28.2933 1.25 26.6623V7.26873C1.25 4.8258 3.20448 2.79871 5.72589 2.62656L25.6652 1.26523C27.1137 1.16633 28.5535 1.55136 29.7434 2.35588L36.7491 7.09239C38.0031 7.94024 38.75 9.32623 38.75 10.8053V32.854C38.75 35.2447 36.8282 37.2241 34.3595 37.3761L12.2292 38.7383C10.2592 38.8596 8.35499 38.0296 7.145 36.5222Z\" fill=\"white\"/>\\n<path d=\"M14.0601 16.9733V16.7194C14.0601 16.0757 14.5756 15.542 15.2399 15.4976L20.0791 15.1745L26.7713 25.0293V16.3801L25.0488 16.1504V16.0298C25.0488 15.3787 25.576 14.8414 26.2488 14.8069L30.652 14.5813V15.215C30.652 15.5124 30.4308 15.7669 30.1276 15.8181L29.068 15.9974V30.0045L27.7382 30.4618C26.6273 30.8439 25.3905 30.4349 24.7545 29.4752L18.2576 19.6714V29.0286L20.2573 29.4113L20.2295 29.5968C20.1422 30.1778 19.6406 30.6172 19.0337 30.6442L14.0601 30.8656C13.9944 30.2408 14.4626 29.6818 15.1086 29.614L15.7629 29.5452V17.0689L14.0601 16.9733Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.8436 3.70836L5.90434 5.06969C4.70999 5.15124 3.78418 6.11144 3.78418 7.26861V26.6622C3.78418 27.7495 4.15845 28.8059 4.84804 29.6649L9.14724 35.0208C9.84235 35.8867 10.9362 36.3635 12.0679 36.2938L34.1983 34.9316C35.3326 34.8617 36.2155 33.9523 36.2155 32.8538V10.8052C36.2155 10.1256 35.8724 9.48881 35.2962 9.09926L28.2906 4.36275C27.5766 3.88004 26.7128 3.64902 25.8436 3.70836ZM6.89309 7.57112C6.61576 7.36581 6.74775 6.93806 7.09613 6.91307L25.9777 5.55876C26.5793 5.51561 27.1771 5.68128 27.6637 6.02598L31.4521 8.71004C31.5959 8.81194 31.5285 9.03192 31.3504 9.0416L11.3548 10.1291C10.7497 10.162 10.1524 9.98422 9.67127 9.628L6.89309 7.57112ZM10.417 13.5383C10.417 12.8887 10.9418 12.3521 11.6128 12.3155L32.7538 11.1642C33.4078 11.1286 33.9584 11.6315 33.9584 12.2646V31.3565C33.9584 32.0049 33.4355 32.5409 32.7657 32.579L11.7586 33.7743C11.0307 33.8157 10.417 33.2564 10.417 32.5517V13.5383Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-aebm2c\",\"data-framer-name\":\"slack\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"BiS9lo1lo\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M33.1253 18.7497C34.851 18.7497 36.25 17.3507 36.25 15.625C36.25 13.8992 34.8509 12.5002 33.1251 12.5002C31.3992 12.5002 30 13.8994 30 15.6252V18.7497H33.1253ZM24.375 18.7497C26.1009 18.7497 27.5 17.3506 27.5 15.6247V6.87525C27.5 5.14936 26.1009 3.75024 24.375 3.75024C22.6491 3.75024 21.25 5.14935 21.25 6.87524V15.6247C21.25 17.3506 22.6491 18.7497 24.375 18.7497Z\" fill=\"#2EB67D\"/>\\n<path d=\"M6.87473 21.2503C5.14899 21.2503 3.75 22.6493 3.75 24.375C3.75 26.1008 5.14913 27.4998 6.87487 27.4998C8.60076 27.4998 10 26.1006 10 24.3748V21.2503H6.87473ZM15.625 21.2503C13.8991 21.2503 12.5 22.6494 12.5 24.3753V33.1248C12.5 34.8506 13.8991 36.2498 15.625 36.2498C17.3509 36.2498 18.75 34.8506 18.75 33.1248V24.3753C18.75 22.6494 17.3509 21.2503 15.625 21.2503Z\" fill=\"#E01E5A\"/>\\n<path d=\"M21.2505 33.1253C21.2505 34.851 22.6495 36.25 24.3753 36.25C26.101 36.25 27.5 34.8509 27.5 33.1251C27.5 31.3992 26.1009 30 24.375 30L21.2505 30L21.2505 33.1253ZM21.2505 24.375C21.2505 26.1009 22.6496 27.5 24.3755 27.5L33.125 27.5C34.8509 27.5 36.25 26.1009 36.25 24.375C36.25 22.6491 34.8509 21.25 33.125 21.25L24.3755 21.25C22.6496 21.25 21.2505 22.6491 21.2505 24.375Z\" fill=\"#ECB22E\"/>\\n<path d=\"M18.7495 6.87473C18.7495 5.14899 17.3505 3.75 15.6247 3.75C13.899 3.75 12.5 5.14913 12.5 6.87487C12.5 8.60076 13.8991 10 15.625 10L18.7495 10L18.7495 6.87473ZM18.7495 15.625C18.7495 13.8991 17.3504 12.5 15.6245 12.5L6.875 12.5C5.14911 12.5 3.75 13.8991 3.75 15.625C3.75 17.3509 5.14911 18.75 6.875 18.75L15.6245 18.75C17.3504 18.75 18.7495 17.3509 18.7495 15.625Z\" fill=\"#36C5F0\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-13qq2qj\",\"data-framer-name\":\"Frame 2\",layoutDependency:layoutDependency,layoutId:\"y1ebOqi3P\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/rNQQ6aX0bkT0tHBVUJyrFo39pM.png\"},className:\"framer-gmrms\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Q6qpmGPIf\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({ALkAFfwbN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(17+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||72)-34-40)/2)+2),src:\"https://framerusercontent.com/images/rNQQ6aX0bkT0tHBVUJyrFo39pM.png\"}}},baseVariant,gestureVariant)})}),isDisplayed8()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-k1xsi3\",\"data-framer-name\":\"sketch\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:36,layoutDependency:layoutDependency,layoutId:\"Gdm0UsKin\",svg:'<svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.12272 5.38895L18 4.5L26.8773 5.38895L33.7499 14.1277L18 31.4999L2.25 14.1277L9.12272 5.38895Z\" fill=\"#FDB300\"/>\\n<path d=\"M8.62946 14.1277L17.9999 31.5L2.25 14.1277H8.62946ZM27.3706 14.1277L17.9999 31.5L33.75 14.1277\" fill=\"#EA6C00\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.62921 14.1277H27.3701L17.9997 31.5\" fill=\"#FDAD00\"/>\\n<path d=\"M17.9997 4.5L9.12239 5.3888L8.62921 14.1276L17.9997 4.5ZM17.9997 4.5L26.877 5.3888L27.3702 14.1276\" fill=\"#FDD231\"/>\\n<path d=\"M33.75 14.1276L26.8774 5.38879L27.3706 14.1276H33.75ZM2.25 14.1276L9.12264 5.38879L8.62946 14.1276\" fill=\"#FDAD00\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.9997 4.5L8.62921 14.1276H27.3701\" fill=\"#FEEEB7\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed9()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eih423\",\"data-framer-name\":\"atlassian\",layoutDependency:layoutDependency,layoutId:\"dx8Bgorv_\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ezltd3\",\"data-framer-name\":\"atlassian\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"I8:4387;1:831\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.11855 11.084C6.97354 10.8941 6.7399 10.7939 6.50247 10.8197C6.26504 10.8455 6.05837 10.9936 5.95749 11.2103L0.0742243 22.9814C-0.0347479 23.1995 -0.0230992 23.4586 0.105011 23.666C0.233121 23.8735 0.459426 23.9997 0.703116 23.9998H8.89526C9.16333 24.006 9.40987 23.8535 9.52415 23.6108C11.2913 19.9566 10.2203 14.4004 7.11855 11.084Z\" fill=\"url(#paint0_linear_122_1653)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.4336 0.377621C8.45131 4.96969 8.1071 10.7944 10.5278 15.7062L14.4773 23.6108C14.5964 23.8492 14.8399 23.9998 15.1062 23.9998H23.2969C23.5406 23.9998 23.7669 23.8735 23.895 23.6661C24.0231 23.4586 24.0347 23.1996 23.9258 22.9815C23.9258 22.9815 12.9065 0.924885 12.6296 0.373204C12.5179 0.144057 12.285 -0.000936284 12.0302 4.55123e-06C11.7754 0.000945389 11.5437 0.147655 11.4336 0.377621Z\" fill=\"#2684FF\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_122_1653\" x1=\"10.3428\" y1=\"12.9006\" x2=\"2.09079\" y2=\"21.7588\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#0052CC\"/>\\n<stop offset=\"0.923\" stop-color=\"#2684FF\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9I0bB.framer-f9a7bu, .framer-9I0bB .framer-f9a7bu { display: block; }\",\".framer-9I0bB.framer-puzouf { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 72px; justify-content: center; overflow: hidden; padding: 17px 21px 17px 21px; position: relative; width: 74px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9I0bB .framer-fyg81g, .framer-9I0bB .framer-13qq2qj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 2px; position: relative; width: min-content; }\",\".framer-9I0bB .framer-8df4ip, .framer-9I0bB .framer-gmrms { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 36px; }\",\".framer-9I0bB .framer-oqvtnm, .framer-9I0bB .framer-6q4os, .framer-9I0bB .framer-1yob3kx, .framer-9I0bB .framer-vuf1z2, .framer-9I0bB .framer-w09lyn, .framer-9I0bB .framer-aebm2c { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-9I0bB .framer-k1xsi3 { flex: none; height: 36px; position: relative; width: 36px; }\",\".framer-9I0bB .framer-1eih423 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 40px; }\",\".framer-9I0bB .framer-ezltd3 { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(46.87500000000002% - 24px / 2); width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9I0bB.framer-puzouf, .framer-9I0bB .framer-fyg81g, .framer-9I0bB .framer-13qq2qj { gap: 0px; } .framer-9I0bB.framer-puzouf > *, .framer-9I0bB .framer-fyg81g > *, .framer-9I0bB .framer-13qq2qj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9I0bB.framer-puzouf > :first-child, .framer-9I0bB .framer-fyg81g > :first-child, .framer-9I0bB .framer-13qq2qj > :first-child { margin-left: 0px; } .framer-9I0bB.framer-puzouf > :last-child, .framer-9I0bB .framer-fyg81g > :last-child, .framer-9I0bB .framer-13qq2qj > :last-child { margin-right: 0px; } }\",\".framer-9I0bB.framer-v-139vplz .framer-1yob3kx { order: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 72\n * @framerIntrinsicWidth 74\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"FW8JnloXI\":{\"layout\":[\"fixed\",\"fixed\"]},\"xC4pRIlXn\":{\"layout\":[\"fixed\",\"fixed\"]},\"ik9BeqfNt\":{\"layout\":[\"fixed\",\"fixed\"]},\"TZ9qLzyOR\":{\"layout\":[\"fixed\",\"fixed\"]},\"ALkAFfwbN\":{\"layout\":[\"fixed\",\"fixed\"]},\"v4MORcBmZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"bG1H_NXqD\":{\"layout\":[\"fixed\",\"fixed\"]},\"kvqpXWUe4\":{\"layout\":[\"fixed\",\"fixed\"]},\"WW6d5Ckht\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerzr00Tmdx_=withCSS(Component,css,\"framer-9I0bB\");export default Framerzr00Tmdx_;Framerzr00Tmdx_.displayName=\"Tools\";Framerzr00Tmdx_.defaultProps={height:72,width:74};addPropertyControls(Framerzr00Tmdx_,{variant:{options:[\"CoKONKGFq\",\"FW8JnloXI\",\"xC4pRIlXn\",\"ik9BeqfNt\",\"TZ9qLzyOR\",\"ALkAFfwbN\",\"v4MORcBmZ\",\"bG1H_NXqD\",\"kvqpXWUe4\",\"WW6d5Ckht\"],optionTitles:[\"Figma\",\"Framer\",\"Photoshop\",\"Illustrator\",\"ChatGPT\",\"Midjourney\",\"Notion\",\"Slack\",\"Sketch\",\"Atlassian\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerzr00Tmdx_,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerzr00Tmdx_\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"72\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FW8JnloXI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xC4pRIlXn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ik9BeqfNt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TZ9qLzyOR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ALkAFfwbN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v4MORcBmZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bG1H_NXqD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kvqpXWUe4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WW6d5Ckht\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"74\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zr00Tmdx_.map", "// Generated by Framer (64bc75b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import VisitCursor from\"#framer/local/canvasComponent/jhJl_aApf/jhJl_aApf.js\";import ProjectCard from\"#framer/local/canvasComponent/L9iH6cpuF/L9iH6cpuF.js\";import Footer from\"#framer/local/canvasComponent/rf9xDC3ks/rf9xDC3ks.js\";import TopNav from\"#framer/local/canvasComponent/SatP92P1v/SatP92P1v.js\";import Experience from\"#framer/local/canvasComponent/SGKTYOK6t/SGKTYOK6t.js\";import Button from\"#framer/local/canvasComponent/WUPcCODow/WUPcCODow.js\";import Tools from\"#framer/local/canvasComponent/zr00Tmdx_/zr00Tmdx_.js\";import*as sharedStyle1 from\"#framer/local/css/eDe3ZTmK3/eDe3ZTmK3.js\";import*as sharedStyle from\"#framer/local/css/O19Chi0_H/O19Chi0_H.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TopNavFonts=getFonts(TopNav);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const ButtonFonts=getFonts(Button);const ToolsFonts=getFonts(Tools);const TickerFonts=getFonts(Ticker);const ProjectCardFonts=getFonts(ProjectCard);const ContainerWithFX=withFX(Container);const ExperienceFonts=getFonts(Experience);const FooterFonts=getFonts(Footer);const VisitCursorFonts=getFonts(VisitCursor);const breakpoints={BFnmXgmTT:\"(min-width: 810px) and (max-width: 1399px)\",o_spXzIxq:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1400px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-FCYlg\";const variantClassNames={BFnmXgmTT:\"framer-v-1n44u72\",o_spXzIxq:\"framer-v-1oed8at\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:30,delay:0,mass:1,stiffness:140,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-50};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition2={delay:0,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:100};const transition3={damping:50,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:200};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:200};const transition4={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:150,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"o_spXzIxq\",Tablet:\"BFnmXgmTT\"};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:\"WQLkyLRf1\"};};const cursor={alignment:\"center\",component:VisitCursor,offset:{x:20,y:20},placement:\"right\",transition:transition4,variant:\"WV4Q39lal\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-FCYlg`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-FCYlg`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"VRXVg3PCZ\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"RZXqogYqZ\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"Snd65OQpA\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"mwWKKNB2Q\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"Lj2ExKCXg\");const ref6=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];useCustomCursors({f42tip:cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{y:32},o_spXzIxq:{y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"min(100vw, 1400px)\",y:48,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o_spXzIxq:{layoutScroll:true,transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1b4zb4c-container\",\"data-framer-appear-id\":\"1b4zb4c\",id:elementId,initial:animation1,optimized:true,ref:ref2,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{variant:\"v0iI_NcKh\"},o_spXzIxq:{variant:\"o0KNAPNqx\"}},children:/*#__PURE__*/_jsx(TopNav,{height:\"100%\",id:\"VRXVg3PCZ\",layoutId:\"VRXVg3PCZ\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"ZKcM9msF9\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yx1p7s\",\"data-framer-name\":\"Section HERO\",name:\"Section HERO\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a818or\",\"data-framer-name\":\"Hero\",id:elementId1,name:\"Hero\",ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wk7scs\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lzs9v7\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO092ZXJ1c2VkIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Overused Grotesk Regular\", \"Overused Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--token-97e10153-8e0d-4d5d-8424-6afa5f4e8bac, rgb(92, 92, 106))\"},children:\"Hello! I'm Xinwei Luo.\"})}),className:\"framer-d8k4ej\",\"data-framer-appear-id\":\"d8k4ej\",\"data-framer-name\":\"Hello! I\u2019m Peace.\",fonts:[\"CUSTOM;Overused Grotesk Regular\"],initial:animation5,name:\"Hello! I\u2019m Peace.\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-sjbl54\",\"data-styles-preset\":\"O19Chi0_H\",style:{\"--framer-text-alignment\":\"left\"},children:\"A UX/UI & Product Designer currently based in Germany\"})}),className:\"framer-1hgm961\",\"data-framer-name\":\"A Brand and Product Designer focusing on creating delightful digital experiences\",fonts:[\"Inter\"],name:\"A Brand and Product Designer focusing on creating delightful digital experiences\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{y:415.25},o_spXzIxq:{y:359.25}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:471.25,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19odggi-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"PhBQw0dG5\",layoutId:\"PhBQw0dG5\",variant:\"SSmbu1nN4\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l0zrrl-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:68,height:\"100%\",hoverFactor:.1,id:\"WvoiAlvBl\",layoutId:\"WvoiAlvBl\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5p1rso-container\",\"data-framer-name\":\"Tools\",name:\"Tools\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"le3Lyv3vi\",layoutId:\"le3Lyv3vi\",name:\"Tools\",style:{height:\"100%\",width:\"100%\"},variant:\"FW8JnloXI\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rcv3ad-container\",\"data-framer-name\":\"Tools\",name:\"Tools\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"AnTAXF6dN\",layoutId:\"AnTAXF6dN\",name:\"Tools\",style:{height:\"100%\",width:\"100%\"},variant:\"CoKONKGFq\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rfds1f-container\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"VlatS0p2f\",layoutId:\"VlatS0p2f\",style:{height:\"100%\",width:\"100%\"},variant:\"xC4pRIlXn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dd1did-container\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"zMbem32sw\",layoutId:\"zMbem32sw\",style:{height:\"100%\",width:\"100%\"},variant:\"ik9BeqfNt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1raxuw1-container\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"OxHUvuDk_\",layoutId:\"OxHUvuDk_\",style:{height:\"100%\",width:\"100%\"},variant:\"v4MORcBmZ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1njoc9n-container\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"EvuDeATdW\",layoutId:\"EvuDeATdW\",style:{height:\"100%\",width:\"100%\"},variant:\"bG1H_NXqD\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5tjux-container\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"nySdmcLXH\",layoutId:\"nySdmcLXH\",style:{height:\"100%\",width:\"100%\"},variant:\"TZ9qLzyOR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qammth-container\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"VKe4Tczd3\",layoutId:\"VKe4Tczd3\",style:{height:\"100%\",width:\"100%\"},variant:\"kvqpXWUe4\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vw4jl8-container\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"QQJRzTMIu\",layoutId:\"QQJRzTMIu\",style:{height:\"100%\",width:\"100%\"},variant:\"ALkAFfwbN\",width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a2nrr5\",\"data-framer-name\":\"Section PROJECTS\",id:elementId2,name:\"Section PROJECTS\",ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yoenht\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"rgb(92, 92, 105)\"},children:\"01\"})}),className:\"framer-v12lsn\",\"data-framer-name\":\"01\",fonts:[\"GF;Inter Tight-regular\"],name:\"01\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1u4f4xu\",\"data-styles-preset\":\"eDe3ZTmK3\",children:\"Case Studies\"})}),className:\"framer-16kcrgc\",\"data-framer-name\":\"Case Studies\",fonts:[\"Inter\"],name:\"Case Studies\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17l9gjy\",\"data-framer-name\":\"Project\",name:\"Project\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{width:\"max((min(min(100vw, 1400px) - 80px, 1200px) - 8px) / 2, 200px)\",y:803.25},o_spXzIxq:{width:\"max(min(min(100vw, 1400px) - 40px, 1200px), 200px)\",y:723.25}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:644,width:\"max((min(min(100vw, 1400px) - 200px, 1200px) - 28px) / 2, 200px)\",y:899.25,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ywiyyj-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",id:\"t7m1nXrAR\",layoutId:\"t7m1nXrAR\",S1ZA_r5TM:\"f42tip\",style:{width:\"100%\"},variant:\"oh0f9_08D\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{width:\"max((min(min(100vw, 1400px) - 80px, 1200px) - 8px) / 2, 200px)\",y:803.25},o_spXzIxq:{width:\"max(min(min(100vw, 1400px) - 40px, 1200px), 200px)\",y:1395.25}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:644,width:\"max((min(min(100vw, 1400px) - 200px, 1200px) - 28px) / 2, 200px)\",y:899.25,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mqfi5p-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",id:\"lPSAH3xYG\",layoutId:\"lPSAH3xYG\",S1ZA_r5TM:\"f42tip\",style:{width:\"100%\"},variant:\"fWaiyS4wv\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{width:\"max((min(min(100vw, 1400px) - 80px, 1200px) - 8px) / 2, 200px)\",y:1455.25},o_spXzIxq:{width:\"max(min(min(100vw, 1400px) - 40px, 1200px), 200px)\",y:2067.25}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:644,width:\"max((min(min(100vw, 1400px) - 200px, 1200px) - 28px) / 2, 200px)\",y:1571.25,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ho9jqj-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",id:\"zVceMHT8Q\",layoutId:\"zVceMHT8Q\",S1ZA_r5TM:\"f42tip\",style:{width:\"100%\"},variant:\"Y4bmIiMmw\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{width:\"max((min(min(100vw, 1400px) - 80px, 1200px) - 8px) / 2, 200px)\",y:1455.25},o_spXzIxq:{width:\"max(min(min(100vw, 1400px) - 40px, 1200px), 200px)\",y:2739.25}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:644,width:\"max((min(min(100vw, 1400px) - 200px, 1200px) - 28px) / 2, 200px)\",y:1571.25,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-krmujb-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",id:\"lJu0OpM60\",layoutId:\"lJu0OpM60\",S1ZA_r5TM:\"f42tip\",style:{width:\"100%\"},variant:\"mtT5UuQN5\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ybbt03\",\"data-framer-name\":\"Section EXPERIENCE\",id:elementId3,name:\"Section EXPERIENCE\",ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k1wh7m\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"rgb(92, 92, 105)\"},children:\"02\"})}),className:\"framer-13v2dqk\",\"data-framer-name\":\"01\",fonts:[\"GF;Inter Tight-regular\"],name:\"01\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1u4f4xu\",\"data-styles-preset\":\"eDe3ZTmK3\",children:\"Work Experience\"})}),className:\"framer-19nm1fo\",\"data-framer-name\":\"Work Experience\",fonts:[\"Inter\"],name:\"Work Experience\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19g310q\",\"data-framer-name\":\"Frame 54\",name:\"Frame 54\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{width:\"calc(min(100vw, 1400px) - 80px)\",y:2343.25},o_spXzIxq:{width:\"calc(min(100vw, 1400px) - 40px)\",y:3603.25}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:183,width:\"calc(min(100vw, 1400px) - 200px)\",y:2499.25,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gtq401-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{variant:\"YQcsMijKL\"},o_spXzIxq:{variant:\"oaWqogKWG\"}},children:/*#__PURE__*/_jsx(Experience,{height:\"100%\",id:\"JNyh0Srwu\",layoutId:\"JNyh0Srwu\",style:{width:\"100%\"},variant:\"FBz38I54P\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{width:\"calc(min(100vw, 1400px) - 80px)\",y:2590.25},o_spXzIxq:{width:\"calc(min(100vw, 1400px) - 40px)\",y:3850.25}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:183,width:\"calc(min(100vw, 1400px) - 200px)\",y:2746.25,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-178skfk-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{variant:\"U4fHt9XIl\"},o_spXzIxq:{variant:\"ZDuvwg9JV\"}},children:/*#__PURE__*/_jsx(Experience,{height:\"100%\",id:\"NY3wW7Ivv\",layoutId:\"NY3wW7Ivv\",style:{width:\"100%\"},variant:\"T8EkImCoT\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{width:\"calc(min(100vw, 1400px) - 80px)\",y:2837.25},o_spXzIxq:{width:\"calc(min(100vw, 1400px) - 40px)\",y:4097.25}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:183,width:\"calc(min(100vw, 1400px) - 200px)\",y:2993.25,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zp8sn3-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{variant:\"CSeyg0Hfr\"},o_spXzIxq:{variant:\"mvqqFG5Oo\"}},children:/*#__PURE__*/_jsx(Experience,{height:\"100%\",id:\"gp4_I9E5x\",layoutId:\"gp4_I9E5x\",style:{width:\"100%\"},variant:\"OLSwIu9BO\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{y:3116.25},o_spXzIxq:{y:4352.25}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:512,width:\"min(100vw, 1400px)\",y:3312.25,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bl6vo5-container\",id:elementId4,ref:ref6,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{variant:\"XbUxNChlE\"},o_spXzIxq:{variant:\"RdS6qK0tp\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Lj2ExKCXg\",layoutId:\"Lj2ExKCXg\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"ORDBu7oYR\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-FCYlg { background: var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253)) /* {\"name\":\"White 1000\"} */; }`,\".framer-FCYlg.framer-lux5qc, .framer-FCYlg .framer-lux5qc { display: block; }\",\".framer-FCYlg.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-78700829-9deb-4139-a514-ce0eb43d703b, #f5f8fd); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 136px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 0px 0px 0px; position: relative; width: 1400px; }\",\".framer-FCYlg .framer-1b4zb4c-container { flex: none; height: auto; max-width: 1400px; position: relative; scroll-margin-top: 30px; width: 100%; }\",\".framer-FCYlg .framer-yx1p7s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 56px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-FCYlg .framer-a818or { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FCYlg .framer-1wk7scs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-FCYlg .framer-1lzs9v7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FCYlg .framer-d8k4ej { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-FCYlg .framer-1hgm961 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1200px; word-break: break-word; word-wrap: break-word; }\",\".framer-FCYlg .framer-19odggi-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-FCYlg .framer-l0zrrl-container { flex: none; height: 72px; position: relative; width: 100%; }\",\".framer-FCYlg .framer-5p1rso-container, .framer-FCYlg .framer-1rcv3ad-container, .framer-FCYlg .framer-1rfds1f-container, .framer-FCYlg .framer-1dd1did-container, .framer-FCYlg .framer-1raxuw1-container, .framer-FCYlg .framer-1njoc9n-container, .framer-FCYlg .framer-5tjux-container, .framer-FCYlg .framer-qammth-container, .framer-FCYlg .framer-1vw4jl8-container { height: 72px; position: relative; width: 74px; }\",\".framer-FCYlg .framer-1a2nrr5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px 100px 0px 100px; position: relative; scroll-margin-top: 30px; width: 100%; }\",\".framer-FCYlg .framer-1yoenht, .framer-FCYlg .framer-1k1wh7m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FCYlg .framer-v12lsn { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 15px; word-break: break-word; word-wrap: break-word; }\",\".framer-FCYlg .framer-16kcrgc, .framer-FCYlg .framer-19nm1fo { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-FCYlg .framer-17l9gjy { display: grid; flex: none; gap: 28px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FCYlg .framer-ywiyyj-container, .framer-FCYlg .framer-mqfi5p-container, .framer-FCYlg .framer-ho9jqj-container, .framer-FCYlg .framer-krmujb-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-FCYlg .framer-1ybbt03 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px 100px 0px 100px; position: relative; scroll-margin-top: 30px; width: 100%; }\",\".framer-FCYlg .framer-13v2dqk { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 19px; word-break: break-word; word-wrap: break-word; }\",\".framer-FCYlg .framer-19g310q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FCYlg .framer-gtq401-container, .framer-FCYlg .framer-178skfk-container, .framer-FCYlg .framer-zp8sn3-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-FCYlg .framer-bl6vo5-container { flex: none; height: auto; max-width: 1400px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-FCYlg.framer-72rtr7, .framer-FCYlg .framer-yx1p7s, .framer-FCYlg .framer-a818or, .framer-FCYlg .framer-1wk7scs, .framer-FCYlg .framer-1lzs9v7, .framer-FCYlg .framer-1a2nrr5, .framer-FCYlg .framer-1yoenht, .framer-FCYlg .framer-1ybbt03, .framer-FCYlg .framer-1k1wh7m, .framer-FCYlg .framer-19g310q { gap: 0px; } .framer-FCYlg.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(136px / 2); margin-top: calc(136px / 2); } .framer-FCYlg.framer-72rtr7 > :first-child, .framer-FCYlg .framer-yx1p7s > :first-child, .framer-FCYlg .framer-a818or > :first-child, .framer-FCYlg .framer-1wk7scs > :first-child, .framer-FCYlg .framer-1lzs9v7 > :first-child, .framer-FCYlg .framer-1a2nrr5 > :first-child, .framer-FCYlg .framer-1ybbt03 > :first-child, .framer-FCYlg .framer-19g310q > :first-child { margin-top: 0px; } .framer-FCYlg.framer-72rtr7 > :last-child, .framer-FCYlg .framer-yx1p7s > :last-child, .framer-FCYlg .framer-a818or > :last-child, .framer-FCYlg .framer-1wk7scs > :last-child, .framer-FCYlg .framer-1lzs9v7 > :last-child, .framer-FCYlg .framer-1a2nrr5 > :last-child, .framer-FCYlg .framer-1ybbt03 > :last-child, .framer-FCYlg .framer-19g310q > :last-child { margin-bottom: 0px; } .framer-FCYlg .framer-yx1p7s > *, .framer-FCYlg .framer-a818or > *, .framer-FCYlg .framer-1ybbt03 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-FCYlg .framer-1wk7scs > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-FCYlg .framer-1lzs9v7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-FCYlg .framer-1a2nrr5 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-FCYlg .framer-1yoenht > *, .framer-FCYlg .framer-1k1wh7m > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-FCYlg .framer-1yoenht > :first-child, .framer-FCYlg .framer-1k1wh7m > :first-child { margin-left: 0px; } .framer-FCYlg .framer-1yoenht > :last-child, .framer-FCYlg .framer-1k1wh7m > :last-child { margin-right: 0px; } .framer-FCYlg .framer-19g310q > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",`@media (min-width: 810px) and (max-width: 1399px) { .${metadata.bodyClassName}-framer-FCYlg { background: var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253)) /* {\"name\":\"White 1000\"} */; } .framer-FCYlg.framer-72rtr7 { gap: 96px; padding: 32px 0px 0px 0px; width: 810px; } .framer-FCYlg .framer-1b4zb4c-container { order: 0; } .framer-FCYlg .framer-yx1p7s { order: 1; padding: 56px 40px 0px 40px; } .framer-FCYlg .framer-1wk7scs, .framer-FCYlg .framer-1hgm961 { width: 100%; } .framer-FCYlg .framer-1a2nrr5 { order: 2; padding: 0px 40px 0px 40px; } .framer-FCYlg .framer-17l9gjy { gap: 8px; } .framer-FCYlg .framer-1ybbt03 { order: 3; padding: 0px 40px 0px 40px; } .framer-FCYlg .framer-bl6vo5-container { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-FCYlg.framer-72rtr7, .framer-FCYlg .framer-17l9gjy { gap: 0px; } .framer-FCYlg.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-FCYlg.framer-72rtr7 > :first-child { margin-top: 0px; } .framer-FCYlg.framer-72rtr7 > :last-child { margin-bottom: 0px; } .framer-FCYlg .framer-17l9gjy > *, .framer-FCYlg .framer-17l9gjy > :first-child, .framer-FCYlg .framer-17l9gjy > :last-child { margin: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-FCYlg { background: var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253)) /* {\"name\":\"White 1000\"} */; } .framer-FCYlg.framer-72rtr7 { gap: 72px; width: 390px; } .framer-FCYlg .framer-1b4zb4c-container { left: 50%; position: fixed; top: 0px; transform: translateX(-50%); z-index: 4; } .framer-FCYlg .framer-yx1p7s { padding: 128px 20px 0px 20px; } .framer-FCYlg .framer-1wk7scs, .framer-FCYlg .framer-1hgm961 { width: 100%; } .framer-FCYlg .framer-1a2nrr5, .framer-FCYlg .framer-1ybbt03 { padding: 0px 20px 0px 20px; } .framer-FCYlg .framer-17l9gjy { grid-template-columns: repeat(1, minmax(200px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-FCYlg.framer-72rtr7 { gap: 0px; } .framer-FCYlg.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-FCYlg.framer-72rtr7 > :first-child { margin-top: 0px; } .framer-FCYlg.framer-72rtr7 > :last-child { margin-bottom: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3843\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BFnmXgmTT\":{\"layout\":[\"fixed\",\"auto\"]},\"o_spXzIxq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-FCYlg\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3843,width:1400};addFonts(FrameraugiA20Il,[{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\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"}]},...TopNavFonts,...ButtonFonts,...ToolsFonts,...TickerFonts,...ProjectCardFonts,...ExperienceFonts,...FooterFonts,...VisitCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1400\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"3843\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BFnmXgmTT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"o_spXzIxq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"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", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "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", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "SVG", "css", "FramerWUPcCODow", "withCSS", "WUPcCODow_default", "addPropertyControls", "ControlType", "addFonts", "ButtonFonts", "getFonts", "WUPcCODow_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerSGKTYOK6t", "withCSS", "SGKTYOK6t_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "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", "isDisplayed8", "isDisplayed9", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "SVG", "css", "Framerzr00Tmdx_", "withCSS", "zr00Tmdx_default", "addPropertyControls", "ControlType", "addFonts", "TopNavFonts", "getFonts", "SatP92P1v_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText2", "RichTextWithFX", "withFX", "MotionDivWithFX", "motion", "ButtonFonts", "WUPcCODow_default", "ToolsFonts", "zr00Tmdx_default", "TickerFonts", "Ticker", "ProjectCardFonts", "L9iH6cpuF_default", "ContainerWithFX", "ExperienceFonts", "SGKTYOK6t_default", "FooterFonts", "rf9xDC3ks_default", "VisitCursorFonts", "jhJl_aApf_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transformTemplate1", "_", "animation2", "transition2", "animation3", "transition3", "animation4", "animation5", "animation6", "animation7", "animation8", "animation9", "transition4", "animation10", "animation11", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "cursor", "jhJl_aApf_default", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "ContainerWithOptimizedAppearEffect", "SatP92P1v_default", "MotionDivWithFX", "RichTextWithOptimizedAppearEffect", "x", "RichTextWithFX", "Container", "WUPcCODow_default", "Ticker", "zr00Tmdx_default", "RichText2", "ContainerWithFX", "L9iH6cpuF_default", "SGKTYOK6t_default", "rf9xDC3ks_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "TopNavFonts", "ButtonFonts", "ToolsFonts", "TickerFonts", "ProjectCardFonts", "ExperienceFonts", "FooterFonts", "VisitCursorFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
