{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js", "ssg:https://framerusercontent.com/modules/8A8VWLOenrrb4ol6MXy0/aYDK0jdtwaVVjY5dDWCE/SGKTYOK6t.js", "ssg:https://framerusercontent.com/modules/jRjuKUTNt4Ra2NqChgUE/uF3r6FyWyVZdPRTAGGS8/WUPcCODow.js", "ssg:https://framerusercontent.com/modules/U6vYiRgMO55uTm8Fo5UE/FsqX8ohsdQg6GkvHd0GA/ToKmytViv.js", "ssg:https://framerusercontent.com/modules/zMAro19HObS00zrdQBbD/AGy2Dy1037a2XQG7QCGl/QhuaSEbCg.js", "ssg:https://framerusercontent.com/modules/jRVDQyb6vzUqQY6t6wqG/SFPfT5ff8xTp9ixq0GYU/zr00Tmdx_.js", "ssg:https://framerusercontent.com/modules/zNVQH9FURFD4cpZERipe/QzQDLT0OLWGuc3R6UnWQ/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", "// Generated by Framer (cf4c6d7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/qZaCOuUdDxyU5eACi7ig/49TaX1ZY7KqhMfwNdPZl/CL4sLDRA1.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/pymPvr512onAYcIPz2WO/igmitTroIhEppF45uu9O/mHZTUGTIl.js\";const cycleOrder=[\"FBz38I54P\",\"T8EkImCoT\",\"OLSwIu9BO\",\"YQcsMijKL\",\"U4fHt9XIl\",\"CSeyg0Hfr\",\"oaWqogKWG\",\"ZDuvwg9JV\",\"mvqqFG5Oo\",\"k32Psfs9y\",\"u8C7WTayP\",\"H5IMDgnTq\"];const serializationHash=\"framer-OY4n4\";const variantClassNames={CSeyg0Hfr:\"framer-v-npsw0b\",FBz38I54P:\"framer-v-wbaxo2\",H5IMDgnTq:\"framer-v-1kjtpkk\",k32Psfs9y:\"framer-v-yxe08c\",mvqqFG5Oo:\"framer-v-lqisyr\",oaWqogKWG:\"framer-v-1t9diul\",OLSwIu9BO:\"framer-v-uc41rs\",T8EkImCoT:\"framer-v-1737nzk\",U4fHt9XIl:\"framer-v-1sfybfx\",u8C7WTayP:\"framer-v-1nu805i\",YQcsMijKL:\"framer-v-gjh9mh\",ZDuvwg9JV:\"framer-v-18oewci\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"[Contract] UI/UX Designer, Foreman Consulting\":\"mvqqFG5Oo\",\"Digital Designer, Freelance\":\"oaWqogKWG\",\"Teacher, The Privett Academy\":\"H5IMDgnTq\",\"UI/UX Design Intern, Boostability\":\"ZDuvwg9JV\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"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 fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FBz38I54P\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-wbaxo2\",className,classNames),\"data-framer-name\":\"Digital Designer, Freelance\",layoutDependency:layoutDependency,layoutId:\"FBz38I54P\",ref:refBinding,style:{...style},...addPropertyOverrides({CSeyg0Hfr:{\"data-framer-name\":\"[Contract] UI/UX Designer, Foreman Consulting\"},H5IMDgnTq:{\"data-framer-name\":\"Teacher, The Privett Academy\"},k32Psfs9y:{\"data-framer-name\":\"Teacher, The Privett Academy\"},mvqqFG5Oo:{\"data-framer-name\":\"[Contract] UI/UX Designer, Foreman Consulting\"},OLSwIu9BO:{\"data-framer-name\":\"[Contract] UI/UX Designer, Foreman Consulting\"},T8EkImCoT:{\"data-framer-name\":\"UI/UX Design Intern, Boostability\"},U4fHt9XIl:{\"data-framer-name\":\"UI/UX Design Intern, Boostability\"},u8C7WTayP:{\"data-framer-name\":\"Teacher, The Privett Academy\"},ZDuvwg9JV:{\"data-framer-name\":\"UI/UX Design Intern, Boostability\"}},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, 2023 - 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:\"Feb, 2025 - CURRENT\"})})},H5IMDgnTq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"SEP, 2014 - AUG, 2024\"})})},k32Psfs9y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\" SEP, 2014 - AUG, 2024\"})})},mvqqFG5Oo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"FEB, 2025 - current\"})})},OLSwIu9BO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"Feb, 2025 - CURRENT\"})})},T8EkImCoT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"JUN, 2024 - AUG, 2024\"})})},U4fHt9XIl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"JUN, 2024 - AUG, 2024\"})})},u8C7WTayP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"SEP, 2014 - AUG, 2024\"})})},ZDuvwg9JV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"JUN, 2024 - AUG, 2024\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,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:[\"Web Designer, \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-weight\":\"500\"},children:\"Freelance\"})]})}),className:\"framer-m6dh8n\",\"data-framer-name\":\"Product Designer, Coinbase\",fonts:[\"GF;Inter Tight-regular\",\"GF;Inter Tight-500\"],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:\"[Contract] UI/UX Designer, Foreman Consulting\"})}),fonts:[\"GF;Inter Tight-regular\"]},H5IMDgnTq:{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:\"Teacher, The Privett Academy\"})}),fonts:[\"GF;Inter Tight-regular\"]},k32Psfs9y:{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:\"Teacher, The Privett Academy\"})}),fonts:[\"GF;Inter Tight-regular\"]},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:\"[Contract] UI/UX Designer, Foreman Consulting\"})}),fonts:[\"GF;Inter Tight-regular\"]},oaWqogKWG:{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\":\"24px\",\"--framer-line-height\":\"105%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8)))\"},children:[\"Web Designer, \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-weight\":\"500\"},children:\"Freelance\"})]})})},OLSwIu9BO:{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:\"[Contract] UI/UX Designer, Foreman Consulting\"})}),fonts:[\"GF;Inter Tight-regular\"]},T8EkImCoT:{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:[\"UI/UX Design Intern, \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-weight\":\"500\"},children:\"Boostability\"})]})})},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:\"UI/UX Design Intern, Boostability\"})}),fonts:[\"GF;Inter Tight-regular\"]},u8C7WTayP:{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:\"Teacher, The Privett Academy\"})}),fonts:[\"GF;Inter Tight-regular\"]},YQcsMijKL:{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-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"105%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8)))\"},children:[\"Web Designer, \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-weight\":\"500\"},children:\"Freelance\"})]})})},ZDuvwg9JV:{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\":\"24px\",\"--framer-line-height\":\"105%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8)))\"},children:[\"UI/UX Design Intern, \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-weight\":\"500\"},children:\"Boostability\"})]})})}},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:\"Researched, wireframed, prototyped and launched fully responsive websites for clients across varying industries (e-commerce, automotive, DEI services, portfolio websites). Employed a variety of design tools and resources including Figma, Framer, WIX Studio, BigCommerce, and more. Frequent communication with clients to ensure designs exceeded client expectations.\"})}),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:\"Designed high-fidelity components and web pages in Figma for A/B testing, with a focus on Conversion Rate Optimization (CRO).\\u2028\\u2028Created visually engaging and user-friendly UI elements that aligned with client branding and business goals.\\u2028\\u2028Worked closely with the Product team, using clear communication to turn design objectives into testable iterations.\"})})},H5IMDgnTq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"Taught grades 8-12 in the subjects of English, Algebra, and Geometry. Adjusted curricula and lesson plans to suit both advanced students as well as those struggling with learning disorders (ADHD, Dyslexia, Dysgraphia). Applied practice in clear communication and empathy to ensure understanding of material.\"})})},k32Psfs9y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"Taught grades 8-12 in the subjects of English, Algebra, and Geometry. Adjusted curricula and lesson plans to suit both advanced students as well as those struggling with learning disorders (ADHD, Dyslexia, Dysgraphia). Applied practice in clear communication and empathy to ensure understanding of material.\"})})},mvqqFG5Oo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"Designed high-fidelity components and web pages in Figma for A/B testing, with a focus on Conversion Rate Optimization (CRO). Created visually engaging and user-friendly UI elements that aligned with client branding and business goals. Worked closely with the Product team, using clear communication to turn design objectives into testable iterations.\"})})},OLSwIu9BO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"Designed high-fidelity components and web pages in Figma for A/B testing, with a focus on Conversion Rate Optimization (CRO).\\u2028\\u2028Created visually engaging and user-friendly UI elements that aligned with client branding and business goals.\\u2028\\u2028Worked closely with the Product team, using clear communication to turn design objectives into testable iterations.\"})})},T8EkImCoT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"Led the product team in the design of the primary feature of Boostability\u2019s desktop app, an AI-assisted educational tool to help ADHD college students achieve their academic goals. Worked directly with developers on a weekly basis to ensure clear communication of design decisions and a smooth hand-off process.\"})})},U4fHt9XIl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"Led the product team in the design of the primary feature of Boostability\u2019s desktop app, an AI-assisted educational tool to help ADHD college students achieve their academic goals. Worked directly with developers on a weekly basis to ensure clear communication of design decisions and a smooth hand-off process.\"})})},u8C7WTayP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"Taught grades 8-12 in the subjects of English, Algebra, and Geometry. Adjusted curricula and lesson plans to suit both advanced students as well as those struggling with learning disorders (ADHD, Dyslexia, Dysgraphia). Applied practice in clear communication and empathy to ensure understanding of material.\"})})},ZDuvwg9JV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"Led the product team in the design of the primary feature of Boostability\u2019s desktop app, an AI-assisted educational tool to help ADHD college students achieve their academic goals. Worked directly with developers on a weekly basis to ensure clear communication of design decisions and a smooth hand-off process.\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OY4n4.framer-1s402r9, .framer-OY4n4 .framer-1s402r9 { display: block; }\",\".framer-OY4n4.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-OY4n4 .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-OY4n4 .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-OY4n4 .framer-sky6sr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-OY4n4 .framer-m6dh8n, .framer-OY4n4 .framer-66xv1k { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OY4n4.framer-wbaxo2, .framer-OY4n4 .framer-f3whjg, .framer-OY4n4 .framer-1p59qmq { gap: 0px; } .framer-OY4n4.framer-wbaxo2 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-OY4n4.framer-wbaxo2 > :first-child { margin-left: 0px; } .framer-OY4n4.framer-wbaxo2 > :last-child { margin-right: 0px; } .framer-OY4n4 .framer-f3whjg > *, .framer-OY4n4 .framer-1p59qmq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-OY4n4 .framer-f3whjg > :first-child, .framer-OY4n4 .framer-1p59qmq > :first-child { margin-top: 0px; } .framer-OY4n4 .framer-f3whjg > :last-child, .framer-OY4n4 .framer-1p59qmq > :last-child { margin-bottom: 0px; } }\",\".framer-OY4n4.framer-v-1t9diul.framer-wbaxo2, .framer-OY4n4.framer-v-18oewci.framer-wbaxo2, .framer-OY4n4.framer-v-lqisyr.framer-wbaxo2, .framer-OY4n4.framer-v-1kjtpkk.framer-wbaxo2 { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-OY4n4.framer-v-1t9diul .framer-f3whjg, .framer-OY4n4.framer-v-18oewci .framer-f3whjg, .framer-OY4n4.framer-v-lqisyr .framer-f3whjg, .framer-OY4n4.framer-v-1kjtpkk .framer-f3whjg { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OY4n4.framer-v-1t9diul.framer-wbaxo2 { gap: 0px; } .framer-OY4n4.framer-v-1t9diul.framer-wbaxo2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-OY4n4.framer-v-1t9diul.framer-wbaxo2 > :first-child { margin-top: 0px; } .framer-OY4n4.framer-v-1t9diul.framer-wbaxo2 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OY4n4.framer-v-18oewci.framer-wbaxo2 { gap: 0px; } .framer-OY4n4.framer-v-18oewci.framer-wbaxo2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-OY4n4.framer-v-18oewci.framer-wbaxo2 > :first-child { margin-top: 0px; } .framer-OY4n4.framer-v-18oewci.framer-wbaxo2 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OY4n4.framer-v-lqisyr.framer-wbaxo2 { gap: 0px; } .framer-OY4n4.framer-v-lqisyr.framer-wbaxo2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-OY4n4.framer-v-lqisyr.framer-wbaxo2 > :first-child { margin-top: 0px; } .framer-OY4n4.framer-v-lqisyr.framer-wbaxo2 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OY4n4.framer-v-1kjtpkk.framer-wbaxo2 { gap: 0px; } .framer-OY4n4.framer-v-1kjtpkk.framer-wbaxo2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-OY4n4.framer-v-1kjtpkk.framer-wbaxo2 > :first-child { margin-top: 0px; } .framer-OY4n4.framer-v-1kjtpkk.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]},\"k32Psfs9y\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"u8C7WTayP\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"H5IMDgnTq\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSGKTYOK6t=withCSS(Component,css,\"framer-OY4n4\");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\",\"k32Psfs9y\",\"u8C7WTayP\",\"H5IMDgnTq\"],optionTitles:[\"Digital Designer, Freelance\",\"UI/UX Design Intern, Boostability\",\"[Contract] UI/UX Designer, Foreman Consulting\",\"Digital Designer, Freelance\",\"UI/UX Design Intern, Boostability\",\"[Contract] UI/UX Designer, Foreman Consulting\",\"Digital Designer, Freelance\",\"UI/UX Design Intern, Boostability\",\"[Contract] UI/UX Designer, Foreman Consulting\",\"Teacher, The Privett Academy\",\"Teacher, The Privett Academy\",\"Teacher, The Privett Academy\"],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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSGKTYOK6t\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"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]},\\\"k32Psfs9y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"u8C7WTayP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"H5IMDgnTq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"183\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SGKTYOK6t.map", "// Generated by Framer (0b8b5e5)\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={AEcs2qQMf:{hover:true},OKKq1Dx9i:{hover:true},SSmbu1nN4:{hover:true}};const cycleOrder=[\"OKKq1Dx9i\",\"SSmbu1nN4\",\"AEcs2qQMf\"];const serializationHash=\"framer-HKCQw\";const variantClassNames={AEcs2qQMf:\"framer-v-b95g8u\",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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"All Work\":\"AEcs2qQMf\",\"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(gestureVariant===\"AEcs2qQMf-hover\")return true;return false;};const isDisplayed1=()=>{if([\"OKKq1Dx9i-hover\",\"SSmbu1nN4-hover\"].includes(gestureVariant))return true;if(gestureVariant===\"AEcs2qQMf-hover\")return false;if([\"SSmbu1nN4\",\"AEcs2qQMf\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/peace-badejo/\",...addPropertyOverrides({AEcs2qQMf:{href:{webPageId:\"XEqkmxWgO\"},openInNewTab:false},SSmbu1nN4:{href:{webPageId:\"iq23AD6E7\"},openInNewTab:false}},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:{\"AEcs2qQMf-hover\":{backgroundColor:\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8))\"},\"OKKq1Dx9i-hover\":{backgroundColor:\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8))\"},\"SSmbu1nN4-hover\":{backgroundColor:\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8))\"}},...addPropertyOverrides({\"AEcs2qQMf-hover\":{\"data-framer-name\":undefined},\"OKKq1Dx9i-hover\":{\"data-framer-name\":undefined},\"SSmbu1nN4-hover\":{\"data-framer-name\":undefined},AEcs2qQMf:{\"data-framer-name\":\"All Work\"},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:{\"AEcs2qQMf-hover\":{\"--extracted-r6o4lv\":\"var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253))\"},\"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({\"AEcs2qQMf-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:\"All Work\"})})},\"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\":\"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:\"Hire Me\"})})},AEcs2qQMf:{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:\"All Work\"})})},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-94qmz7\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"hWSXOkJnj\",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-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253)) /* {&quot;name&quot;:&quot;White 1000&quot;} */\"></path></svg>',svgContentId:10963384605,withExternalLayout:true,...addPropertyOverrides({\"AEcs2qQMf-hover\":{svgContentId:10698016735}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__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},AEcs2qQMf:{svgContentId:9557812100},SSmbu1nN4:{svgContentId:9557812100}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HKCQw.framer-9swwau, .framer-HKCQw .framer-9swwau { display: block; }\",\".framer-HKCQw.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-HKCQw .framer-hy9lsg { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HKCQw .framer-94qmz7, .framer-HKCQw .framer-88is16 { flex: none; height: 10px; position: relative; width: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HKCQw.framer-1ra6v9g { gap: 0px; } .framer-HKCQw.framer-1ra6v9g > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HKCQw.framer-1ra6v9g > :first-child { margin-left: 0px; } .framer-HKCQw.framer-1ra6v9g > :last-child { margin-right: 0px; } }\",'.framer-HKCQw[data-border=\"true\"]::after, .framer-HKCQw [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\"]},\"AEcs2qQMf\":{\"layout\":[\"auto\",\"fixed\"]},\"qNhBIfAu7\":{\"layout\":[\"auto\",\"fixed\"]},\"zMsmGvRAf\":{\"layout\":[\"auto\",\"fixed\"]},\"pTA73Ku2P\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWUPcCODow=withCSS(Component,css,\"framer-HKCQw\");export default FramerWUPcCODow;FramerWUPcCODow.displayName=\"Button\";FramerWUPcCODow.defaultProps={height:48,width:96};addPropertyControls(FramerWUPcCODow,{variant:{options:[\"OKKq1Dx9i\",\"SSmbu1nN4\",\"AEcs2qQMf\"],optionTitles:[\"Visit Link\",\"Hire Me\",\"All Work\"],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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWUPcCODow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"48\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"96\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"SSmbu1nN4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"AEcs2qQMf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"qNhBIfAu7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"zMsmGvRAf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"pTA73Ku2P\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WUPcCODow.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-oKDut\";const variantClassNames={kGYA_Q8TV:\"framer-v-9ko5nd\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"kGYA_Q8TV\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-9ko5nd\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"kGYA_Q8TV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-168c71i\",\"data-framer-name\":\"bigcommerce_1\",fill:\"black\",intrinsicHeight:2488,intrinsicWidth:2489,layoutDependency:layoutDependency,layoutId:\"xTbdPqHa6\",svg:'<svg version=\"1.1\" id=\"Laag_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 2489.2 2487.6\" style=\"enable-background:new 0 0 2489.2 2487.6\" xml:space=\"preserve\"><style>.st0{fill:#34313f}</style><path class=\"st0\" d=\"M1311.5 1416.2h314c89.3 0 145.8-49.1 145.8-128 0-74.4-56.5-128-145.8-128h-314c-10.4 0-19.3 8.9-19.3 17.9v220.2c1.4 10.4 8.8 17.9 19.3 17.9zm0 507.4h324.4c99.7 0 159.2-50.6 159.2-139.9 0-77.4-56.5-139.9-159.2-139.9h-324.4c-10.4 0-19.3 8.9-19.3 17.9v242.6c1.4 11.9 8.8 19.3 19.3 19.3z\"/><path class=\"st0\" d=\"m2460.3 5.5-928.6 925.6h151.8c236.6 0 376.5 148.8 376.5 311 0 128-86.3 221.7-178.6 263.4-14.9 6-14.9 26.8 1.5 32.7 107.1 41.7 183 153.3 183 284.2 0 184.5-123.5 331.8-363.1 331.8h-657.7c-10.4 0-19.3-8.9-19.3-17.9v-700.9L6.4 2450.4c-13.4 13.4-4.5 37.2 14.9 37.2h2450.9c8.9 0 16.4-7.4 16.4-16.4V18.9c4.4-16.4-16.4-25.3-28.3-13.4z\"/></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oKDut.framer-2tyh5, .framer-oKDut .framer-2tyh5 { display: block; }\",\".framer-oKDut.framer-9ko5nd { height: 36px; overflow: hidden; position: relative; width: 36px; }\",\".framer-oKDut .framer-168c71i { aspect-ratio: 1.0004019292604502 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 36\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerToKmytViv=withCSS(Component,css,\"framer-oKDut\");export default FramerToKmytViv;FramerToKmytViv.displayName=\"BigCommerce\";FramerToKmytViv.defaultProps={height:36,width:36};addFonts(FramerToKmytViv,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerToKmytViv\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"36\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"36\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ToKmytViv.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-xgZ6O\";const variantClassNames={IbrklNgZV:\"framer-v-1mhzkya\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"IbrklNgZV\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:2400,pixelWidth:2400,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/iZIzKcdSb1B7KDIAe4tEvmiQFVY.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/iZIzKcdSb1B7KDIAe4tEvmiQFVY.png?scale-down-to=512 512w,https://framerusercontent.com/images/iZIzKcdSb1B7KDIAe4tEvmiQFVY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iZIzKcdSb1B7KDIAe4tEvmiQFVY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/iZIzKcdSb1B7KDIAe4tEvmiQFVY.png 2400w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1mhzkya\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"IbrklNgZV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xgZ6O.framer-npo95r, .framer-xgZ6O .framer-npo95r { display: block; }\",\".framer-xgZ6O.framer-1mhzkya { height: 1200px; overflow: visible; position: relative; width: 1200px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1200\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQhuaSEbCg=withCSS(Component,css,\"framer-xgZ6O\");export default FramerQhuaSEbCg;FramerQhuaSEbCg.displayName=\"Mural\";FramerQhuaSEbCg.defaultProps={height:1200,width:1200};addFonts(FramerQhuaSEbCg,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQhuaSEbCg\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QhuaSEbCg.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import BigCommerce from\"https://framerusercontent.com/modules/U6vYiRgMO55uTm8Fo5UE/FsqX8ohsdQg6GkvHd0GA/ToKmytViv.js\";import Mural from\"https://framerusercontent.com/modules/zMAro19HObS00zrdQBbD/AGy2Dy1037a2XQG7QCGl/QhuaSEbCg.js\";const BigCommerceFonts=getFonts(BigCommerce);const MuralFonts=getFonts(Mural);const cycleOrder=[\"CoKONKGFq\",\"FW8JnloXI\",\"xC4pRIlXn\",\"ik9BeqfNt\",\"v4MORcBmZ\",\"TZ9qLzyOR\",\"ALkAFfwbN\",\"bG1H_NXqD\",\"kvqpXWUe4\",\"WW6d5Ckht\"];const serializationHash=\"framer-VNkX1\";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?.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??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\",BigCommerce:\"ALkAFfwbN\",Figma:\"CoKONKGFq\",Framer:\"FW8JnloXI\",Illustrator:\"ik9BeqfNt\",InDesign:\"v4MORcBmZ\",Mural:\"TZ9qLzyOR\",Photoshop:\"xC4pRIlXn\",Slack:\"bG1H_NXqD\",Wix:\"kvqpXWUe4\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"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 sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"FW8JnloXI\",\"xC4pRIlXn\",\"ik9BeqfNt\",\"v4MORcBmZ\",\"TZ9qLzyOR\",\"ALkAFfwbN\",\"bG1H_NXqD\",\"kvqpXWUe4\",\"WW6d5Ckht\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"FW8JnloXI\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"xC4pRIlXn\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"ik9BeqfNt\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"bG1H_NXqD\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"WW6d5Ckht\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"v4MORcBmZ\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"ALkAFfwbN\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"TZ9qLzyOR\")return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"kvqpXWUe4\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-puzouf\",className,classNames),\"data-framer-name\":\"Figma\",layoutDependency:layoutDependency,layoutId:\"CoKONKGFq\",ref: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\":\"BigCommerce\"},bG1H_NXqD:{\"data-framer-name\":\"Slack\"},FW8JnloXI:{\"data-framer-name\":\"Framer\"},ik9BeqfNt:{\"data-framer-name\":\"Illustrator\"},kvqpXWUe4:{\"data-framer-name\":\"Wix\"},TZ9qLzyOR:{\"data-framer-name\":\"Mural\"},v4MORcBmZ:{\"data-framer-name\":\"InDesign\"},WW6d5Ckht:{\"data-framer-name\":\"Atlassian\"},xC4pRIlXn:{\"data-framer-name\":\"Photoshop\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__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}),isDisplayed1()&&/*#__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}),isDisplayed2()&&/*#__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}),isDisplayed3()&&/*#__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}),isDisplayed4()&&/*#__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}),isDisplayed5()&&/*#__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})}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-bmjx4q\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"EioM5HOJf\",svg:'<svg height=\"512\" style=\"enable-background:new 0 0 512 512\" width=\"512\" xml:space=\"preserve\" xmlns=\"http://www.w3.org/2000/svg\"><path style=\"fill:#ff418a\" d=\"M1.207.711h510.576v510.578H1.207z\"/><path style=\"fill:#26000d\" d=\"M23.669 23.179h465.646v465.646H23.669z\"/><path style=\"fill:#ff3b93\" d=\"M144.566 137.433h38.515v233.968h-38.515zm184.644 0v59.82h-11.494c-39.207 0-86.606 25.284-86.606 89.865 0 49.925 25.301 87.448 79.179 87.448 39.672 0 58.358-13.722 58.358-13.722V137.433H329.21zm-.043 202.773s-4.539 1.998-15.252 1.998c-10.719 0-43.589-4.721-43.589-56.846 0-52.124 37.775-56.3 46.856-56.3 9.078 0 11.984 2.544 11.984 2.544v108.604z\"/></svg>',withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({ALkAFfwbN:{height:36,width:\"36px\",y:(componentViewport?.y||0)+(17+((componentViewport?.height||72)-34-36)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kxt9sy-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"az8YXv2fJ-container\",nodeId:\"az8YXv2fJ\",rendersWithMotion:true,scopeId:\"zr00Tmdx_\",children:/*#__PURE__*/_jsx(BigCommerce,{height:\"100%\",id:\"az8YXv2fJ\",layoutId:\"az8YXv2fJ\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed8()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({TZ9qLzyOR:{height:61,width:\"61px\",y:(componentViewport?.y||0)+(17+((componentViewport?.height||72)-34-61)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qeze97-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"cbcmxQ6fd-container\",nodeId:\"cbcmxQ6fd\",rendersWithMotion:true,scopeId:\"zr00Tmdx_\",children:/*#__PURE__*/_jsx(Mural,{height:\"100%\",id:\"cbcmxQ6fd\",layoutId:\"cbcmxQ6fd\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed9()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/p9cX8K44nVF6LfAsDTGd3BSyl8.png\"},className:\"framer-44amdm\",layoutDependency:layoutDependency,layoutId:\"EHo1Rz7Ws\",...addPropertyOverrides({kvqpXWUe4:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(17+((componentViewport?.height||72)-34-38)/2)),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/p9cX8K44nVF6LfAsDTGd3BSyl8.png\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VNkX1.framer-f9a7bu, .framer-VNkX1 .framer-f9a7bu { display: block; }\",\".framer-VNkX1.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-VNkX1 .framer-oqvtnm, .framer-VNkX1 .framer-6q4os, .framer-VNkX1 .framer-1yob3kx, .framer-VNkX1 .framer-vuf1z2, .framer-VNkX1 .framer-aebm2c { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-VNkX1 .framer-1eih423 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 40px; }\",\".framer-VNkX1 .framer-ezltd3 { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(46.87500000000002% - 24px / 2); width: 24px; }\",\".framer-VNkX1 .framer-bmjx4q { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 36px; }\",\".framer-VNkX1 .framer-kxt9sy-container { flex: none; height: 36px; position: relative; width: 36px; }\",\".framer-VNkX1 .framer-1qeze97-container { flex: none; height: 61px; position: relative; width: 61px; }\",\".framer-VNkX1 .framer-44amdm { flex: none; height: 38px; position: relative; width: 50px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VNkX1.framer-puzouf { gap: 0px; } .framer-VNkX1.framer-puzouf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-VNkX1.framer-puzouf > :first-child { margin-left: 0px; } .framer-VNkX1.framer-puzouf > :last-child { margin-right: 0px; } }\"];/**\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\"]},\"v4MORcBmZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"TZ9qLzyOR\":{\"layout\":[\"fixed\",\"fixed\"]},\"ALkAFfwbN\":{\"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-VNkX1\");export default Framerzr00Tmdx_;Framerzr00Tmdx_.displayName=\"Tools\";Framerzr00Tmdx_.defaultProps={height:72,width:74};addPropertyControls(Framerzr00Tmdx_,{variant:{options:[\"CoKONKGFq\",\"FW8JnloXI\",\"xC4pRIlXn\",\"ik9BeqfNt\",\"v4MORcBmZ\",\"TZ9qLzyOR\",\"ALkAFfwbN\",\"bG1H_NXqD\",\"kvqpXWUe4\",\"WW6d5Ckht\"],optionTitles:[\"Figma\",\"Framer\",\"Photoshop\",\"Illustrator\",\"InDesign\",\"Mural\",\"BigCommerce\",\"Slack\",\"Wix\",\"Atlassian\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerzr00Tmdx_,[{explicitInter:true,fonts:[]},...BigCommerceFonts,...MuralFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerzr00Tmdx_\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FW8JnloXI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xC4pRIlXn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ik9BeqfNt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v4MORcBmZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TZ9qLzyOR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ALkAFfwbN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bG1H_NXqD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kvqpXWUe4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WW6d5Ckht\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"74\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"72\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zr00Tmdx_.map", "// Generated by Framer (cf4c6d7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}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: 1199px)\",o_spXzIxq:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-8AkRo\";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 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 HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"o_spXzIxq\",Tablet:\"BFnmXgmTT\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const transition4={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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 fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"VRXVg3PCZ\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"RZXqogYqZ\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"Snd65OQpA\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"mwWKKNB2Q\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"Lj2ExKCXg\");const ref5=React.useRef(null);useCustomCursors({\"1ddylya\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{y:(componentViewport?.y||0)+32+0},o_spXzIxq:{width:\"min(100vw, 1400px)\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,width:`min(${componentViewport?.width||\"100vw\"}, 1400px)`,y:(componentViewport?.y||0)+48+0,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,nodeId:\"VRXVg3PCZ\",optimized:true,ref:ref1,rendersWithMotion:true,scopeId:\"augiA20Il\",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\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a818or\",\"data-framer-name\":\"Hero\",id:elementId1,ref:ref2,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\u2019m Daniel.\"})}),className:\"framer-d8k4ej\",\"data-framer-appear-id\":\"d8k4ej\",\"data-framer-name\":\"Hello! I\u2019m Peace.\",fonts:[\"CUSTOM;Overused Grotesk Regular\"],initial:animation5,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 Digital Designer with roots in Education\"})}),className:\"framer-1hgm961\",\"data-framer-name\":\"A Brand and Product Designer focusing on creating delightful digital experiences\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{y:(componentViewport?.y||0)+32+130+56+0+0+0+0+183.25},o_spXzIxq:{y:(componentViewport?.y||0)+48+0+128+0+0+0+0+183.25}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+48+170+56+0+0+0+0+183.25,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19odggi-container\",nodeId:\"PhBQw0dG5\",scopeId:\"augiA20Il\",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\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WvoiAlvBl\",scopeId:\"augiA20Il\",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\",inComponentSlot:true,name:\"Tools\",nodeId:\"le3Lyv3vi\",rendersWithMotion:true,scopeId:\"augiA20Il\",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\",inComponentSlot:true,name:\"Tools\",nodeId:\"AnTAXF6dN\",rendersWithMotion:true,scopeId:\"augiA20Il\",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\",inComponentSlot:true,nodeId:\"VlatS0p2f\",rendersWithMotion:true,scopeId:\"augiA20Il\",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\",inComponentSlot:true,nodeId:\"zMbem32sw\",rendersWithMotion:true,scopeId:\"augiA20Il\",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\",inComponentSlot:true,nodeId:\"OxHUvuDk_\",rendersWithMotion:true,scopeId:\"augiA20Il\",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\",inComponentSlot:true,nodeId:\"EvuDeATdW\",rendersWithMotion:true,scopeId:\"augiA20Il\",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\",inComponentSlot:true,nodeId:\"nySdmcLXH\",rendersWithMotion:true,scopeId:\"augiA20Il\",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\",inComponentSlot:true,nodeId:\"VKe4Tczd3\",rendersWithMotion:true,scopeId:\"augiA20Il\",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\",inComponentSlot:true,nodeId:\"QQJRzTMIu\",rendersWithMotion:true,scopeId:\"augiA20Il\",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,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yoenht\",\"data-framer-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\"],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:\"Selected Work\"})}),className:\"framer-16kcrgc\",\"data-framer-name\":\"Case Studies\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{y:(componentViewport?.y||0)+32+633.25+0+0+0},o_spXzIxq:{y:(componentViewport?.y||0)+48+551.25+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+48+713.25+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pftdnf-container\",nodeId:\"LuVBNYcie\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"LuVBNYcie\",layoutId:\"LuVBNYcie\",variant:\"AEcs2qQMf\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17l9gjy\",\"data-framer-name\":\"Project\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px, 1200px) - 8px) / 2, 200px)`,y:(componentViewport?.y||0)+32+633.25+0+124+0+0},o_spXzIxq:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 40px, 1200px), 200px)`,y:(componentViewport?.y||0)+48+551.25+0+124+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:644,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px, 1200px) - 28px) / 2, 200px)`,y:(componentViewport?.y||0)+48+713.25+0+124+0+0,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\",nodeId:\"t7m1nXrAR\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",id:\"t7m1nXrAR\",layoutId:\"t7m1nXrAR\",S1ZA_r5TM:\"1ddylya\",style:{width:\"100%\"},variant:\"oh0f9_08D\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px, 1200px) - 8px) / 2, 200px)`,y:(componentViewport?.y||0)+32+633.25+0+124+0+0},o_spXzIxq:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 40px, 1200px), 200px)`,y:(componentViewport?.y||0)+48+551.25+0+124+0+672}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:644,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px, 1200px) - 28px) / 2, 200px)`,y:(componentViewport?.y||0)+48+713.25+0+124+0+0,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\",nodeId:\"lPSAH3xYG\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",id:\"lPSAH3xYG\",layoutId:\"lPSAH3xYG\",S1ZA_r5TM:\"1ddylya\",style:{width:\"100%\"},variant:\"fWaiyS4wv\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px, 1200px) - 8px) / 2, 200px)`,y:(componentViewport?.y||0)+32+633.25+0+124+0+652},o_spXzIxq:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 40px, 1200px), 200px)`,y:(componentViewport?.y||0)+48+551.25+0+124+0+1344}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:644,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px, 1200px) - 28px) / 2, 200px)`,y:(componentViewport?.y||0)+48+713.25+0+124+0+672,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\",nodeId:\"zVceMHT8Q\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",id:\"zVceMHT8Q\",layoutId:\"zVceMHT8Q\",S1ZA_r5TM:\"1ddylya\",style:{width:\"100%\"},variant:\"Y4bmIiMmw\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px, 1200px) - 8px) / 2, 200px)`,y:(componentViewport?.y||0)+32+633.25+0+124+0+652},o_spXzIxq:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 40px, 1200px), 200px)`,y:(componentViewport?.y||0)+48+551.25+0+124+0+2016}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:644,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px, 1200px) - 28px) / 2, 200px)`,y:(componentViewport?.y||0)+48+713.25+0+124+0+672,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\",nodeId:\"lJu0OpM60\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",id:\"lJu0OpM60\",layoutId:\"lJu0OpM60\",S1ZA_r5TM:\"1ddylya\",style:{width:\"100%\"},variant:\"J3GOLBg21\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ybbt03\",\"data-framer-name\":\"Section EXPERIENCE\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k1wh7m\",\"data-framer-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\"],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:\"Experience\"})}),className:\"framer-19nm1fo\",\"data-framer-name\":\"Work Experience\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19g310q\",\"data-framer-name\":\"Experience\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px)`,y:(componentViewport?.y||0)+32+2149.25+0+148+0+0},o_spXzIxq:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 40px)`,y:(componentViewport?.y||0)+48+3407.25+0+148+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:183,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px)`,y:(componentViewport?.y||0)+48+2289.25+0+148+0+0,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\",\"data-framer-name\":\"Art with Heart\",name:\"Art with Heart\",nodeId:\"gp4_I9E5x\",rendersWithMotion:true,scopeId:\"augiA20Il\",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\",name:\"Art with Heart\",style:{width:\"100%\"},variant:\"OLSwIu9BO\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px)`,y:(componentViewport?.y||0)+32+2149.25+0+148+0+247},o_spXzIxq:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 40px)`,y:(componentViewport?.y||0)+48+3407.25+0+148+0+247}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:183,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px)`,y:(componentViewport?.y||0)+48+2289.25+0+148+0+247,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\",\"data-framer-name\":\"Freelance\",name:\"Freelance\",nodeId:\"JNyh0Srwu\",rendersWithMotion:true,scopeId:\"augiA20Il\",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\",name:\"Freelance\",style:{width:\"100%\"},variant:\"FBz38I54P\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px)`,y:(componentViewport?.y||0)+32+2149.25+0+148+0+494},o_spXzIxq:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 40px)`,y:(componentViewport?.y||0)+48+3407.25+0+148+0+494}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:183,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px)`,y:(componentViewport?.y||0)+48+2289.25+0+148+0+494,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\",\"data-framer-name\":\"Boostability\",name:\"Boostability\",nodeId:\"NY3wW7Ivv\",rendersWithMotion:true,scopeId:\"augiA20Il\",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\",name:\"Boostability\",style:{width:\"100%\"},variant:\"T8EkImCoT\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px)`,y:(componentViewport?.y||0)+32+2149.25+0+148+0+741},o_spXzIxq:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 40px)`,y:(componentViewport?.y||0)+48+3407.25+0+148+0+741}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:183,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px)`,y:(componentViewport?.y||0)+48+2289.25+0+148+0+741,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-az4i1z-container\",\"data-framer-name\":\"Art with Heart\",name:\"Art with Heart\",nodeId:\"kxki6PsTT\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{variant:\"u8C7WTayP\"},o_spXzIxq:{variant:\"H5IMDgnTq\"}},children:/*#__PURE__*/_jsx(Experience,{height:\"100%\",id:\"kxki6PsTT\",layoutId:\"kxki6PsTT\",name:\"Art with Heart\",style:{width:\"100%\"},variant:\"k32Psfs9y\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BFnmXgmTT:{y:(componentViewport?.y||0)+32+3317.25},o_spXzIxq:{y:(componentViewport?.y||0)+48+4551.25}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:401,width:`min(${componentViewport?.width||\"100vw\"}, 1400px)`,y:(componentViewport?.y||0)+48+3497.25,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bl6vo5-container\",id:elementId4,nodeId:\"Lj2ExKCXg\",ref:ref5,scopeId:\"augiA20Il\",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\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8AkRo.framer-lux5qc, .framer-8AkRo .framer-lux5qc { display: block; }\",\".framer-8AkRo.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: 1200px; }\",\".framer-8AkRo .framer-1b4zb4c-container { flex: none; height: auto; max-width: 1400px; position: relative; scroll-margin-top: 30px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8AkRo .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-8AkRo .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-8AkRo .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: 1000px; }\",\".framer-8AkRo .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-8AkRo .framer-d8k4ej { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8AkRo .framer-1hgm961 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8AkRo .framer-19odggi-container, .framer-8AkRo .framer-1pftdnf-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-8AkRo .framer-l0zrrl-container { flex: none; height: 72px; position: relative; width: 100%; }\",\".framer-8AkRo .framer-5p1rso-container, .framer-8AkRo .framer-1rcv3ad-container, .framer-8AkRo .framer-1rfds1f-container, .framer-8AkRo .framer-1dd1did-container, .framer-8AkRo .framer-1raxuw1-container, .framer-8AkRo .framer-1njoc9n-container, .framer-8AkRo .framer-5tjux-container, .framer-8AkRo .framer-qammth-container, .framer-8AkRo .framer-1vw4jl8-container { height: 72px; position: relative; width: 74px; }\",\".framer-8AkRo .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-8AkRo .framer-1yoenht, .framer-8AkRo .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-8AkRo .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-8AkRo .framer-16kcrgc, .framer-8AkRo .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-8AkRo .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-8AkRo .framer-ywiyyj-container, .framer-8AkRo .framer-mqfi5p-container, .framer-8AkRo .framer-ho9jqj-container, .framer-8AkRo .framer-krmujb-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-8AkRo .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-8AkRo .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-8AkRo .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-8AkRo .framer-zp8sn3-container, .framer-8AkRo .framer-gtq401-container, .framer-8AkRo .framer-178skfk-container, .framer-8AkRo .framer-az4i1z-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-8AkRo .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-8AkRo.framer-72rtr7, .framer-8AkRo .framer-yx1p7s, .framer-8AkRo .framer-a818or, .framer-8AkRo .framer-1wk7scs, .framer-8AkRo .framer-1lzs9v7, .framer-8AkRo .framer-1a2nrr5, .framer-8AkRo .framer-1yoenht, .framer-8AkRo .framer-1ybbt03, .framer-8AkRo .framer-1k1wh7m, .framer-8AkRo .framer-19g310q { gap: 0px; } .framer-8AkRo.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(136px / 2); margin-top: calc(136px / 2); } .framer-8AkRo.framer-72rtr7 > :first-child, .framer-8AkRo .framer-yx1p7s > :first-child, .framer-8AkRo .framer-a818or > :first-child, .framer-8AkRo .framer-1wk7scs > :first-child, .framer-8AkRo .framer-1lzs9v7 > :first-child, .framer-8AkRo .framer-1a2nrr5 > :first-child, .framer-8AkRo .framer-1ybbt03 > :first-child, .framer-8AkRo .framer-19g310q > :first-child { margin-top: 0px; } .framer-8AkRo.framer-72rtr7 > :last-child, .framer-8AkRo .framer-yx1p7s > :last-child, .framer-8AkRo .framer-a818or > :last-child, .framer-8AkRo .framer-1wk7scs > :last-child, .framer-8AkRo .framer-1lzs9v7 > :last-child, .framer-8AkRo .framer-1a2nrr5 > :last-child, .framer-8AkRo .framer-1ybbt03 > :last-child, .framer-8AkRo .framer-19g310q > :last-child { margin-bottom: 0px; } .framer-8AkRo .framer-yx1p7s > *, .framer-8AkRo .framer-a818or > *, .framer-8AkRo .framer-1ybbt03 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-8AkRo .framer-1wk7scs > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-8AkRo .framer-1lzs9v7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-8AkRo .framer-1a2nrr5 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-8AkRo .framer-1yoenht > *, .framer-8AkRo .framer-1k1wh7m > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-8AkRo .framer-1yoenht > :first-child, .framer-8AkRo .framer-1k1wh7m > :first-child { margin-left: 0px; } .framer-8AkRo .framer-1yoenht > :last-child, .framer-8AkRo .framer-1k1wh7m > :last-child { margin-right: 0px; } .framer-8AkRo .framer-19g310q > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-8AkRo.framer-72rtr7 { gap: 96px; padding: 32px 0px 0px 0px; width: 810px; } .framer-8AkRo .framer-1b4zb4c-container { order: 0; } .framer-8AkRo .framer-yx1p7s { order: 1; padding: 56px 40px 0px 40px; } .framer-8AkRo .framer-1wk7scs { width: 100%; } .framer-8AkRo .framer-1a2nrr5 { order: 2; padding: 0px 40px 0px 40px; } .framer-8AkRo .framer-17l9gjy { gap: 8px; } .framer-8AkRo .framer-1ybbt03 { order: 3; padding: 0px 40px 0px 40px; } .framer-8AkRo .framer-bl6vo5-container { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8AkRo.framer-72rtr7, .framer-8AkRo .framer-17l9gjy { gap: 0px; } .framer-8AkRo.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-8AkRo.framer-72rtr7 > :first-child { margin-top: 0px; } .framer-8AkRo.framer-72rtr7 > :last-child { margin-bottom: 0px; } .framer-8AkRo .framer-17l9gjy > *, .framer-8AkRo .framer-17l9gjy > :first-child, .framer-8AkRo .framer-17l9gjy > :last-child { margin: 0px; } }}\",\"@media (max-width: 809px) { .framer-8AkRo.framer-72rtr7 { gap: 72px; width: 390px; } .framer-8AkRo .framer-1b4zb4c-container { left: 50%; position: fixed; top: 0px; transform: translateX(-50%); z-index: 4; } .framer-8AkRo .framer-yx1p7s { padding: 128px 20px 0px 20px; } .framer-8AkRo .framer-1wk7scs { width: 100%; } .framer-8AkRo .framer-1a2nrr5, .framer-8AkRo .framer-1ybbt03 { padding: 0px 20px 0px 20px; } .framer-8AkRo .framer-17l9gjy { grid-template-columns: repeat(1, minmax(200px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8AkRo.framer-72rtr7 { gap: 0px; } .framer-8AkRo.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-8AkRo.framer-72rtr7 > :first-child { margin-top: 0px; } .framer-8AkRo.framer-72rtr7 > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3758\n * @framerIntrinsicWidth 1200\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 * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"VRXVg3PCZ\":{\"pattern\":\":VRXVg3PCZ\",\"name\":\"top\"},\"RZXqogYqZ\":{\"pattern\":\":RZXqogYqZ\",\"name\":\"hero\"},\"Snd65OQpA\":{\"pattern\":\":Snd65OQpA\",\"name\":\"case-studies\"},\"mwWKKNB2Q\":{\"pattern\":\":mwWKKNB2Q\",\"name\":\"work-experience\"},\"Lj2ExKCXg\":{\"pattern\":\":Lj2ExKCXg\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-8AkRo\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3758,width:1200};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\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"3758\",\"framerScrollSections\":\"{\\\"VRXVg3PCZ\\\":{\\\"pattern\\\":\\\":VRXVg3PCZ\\\",\\\"name\\\":\\\"top\\\"},\\\"RZXqogYqZ\\\":{\\\"pattern\\\":\\\":RZXqogYqZ\\\",\\\"name\\\":\\\"hero\\\"},\\\"Snd65OQpA\\\":{\\\"pattern\\\":\\\":Snd65OQpA\\\",\\\"name\\\":\\\"case-studies\\\"},\\\"mwWKKNB2Q\\\":{\\\"pattern\\\":\\\":mwWKKNB2Q\\\",\\\"name\\\":\\\"work-experience\\\"},\\\"Lj2ExKCXg\\\":{\\\"pattern\\\":\\\":Lj2ExKCXg\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BFnmXgmTT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"o_spXzIxq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "css", "FramerSGKTYOK6t", "withCSS", "SGKTYOK6t_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "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", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "SVG", "css", "FramerWUPcCODow", "withCSS", "WUPcCODow_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "SVG", "css", "FramerToKmytViv", "withCSS", "ToKmytViv_default", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "cx", "serializationHash", "css", "FramerQhuaSEbCg", "withCSS", "QhuaSEbCg_default", "addFonts", "BigCommerceFonts", "getFonts", "ToKmytViv_default", "MuralFonts", "QhuaSEbCg_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", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "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", "_", "t", "animation2", "transition2", "animation3", "transition3", "animation4", "animation5", "animation6", "animation7", "animation8", "animation9", "animation10", "animation11", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition4", "cursor", "jhJl_aApf_default", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "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__"]
}
