{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js", "ssg:https://framerusercontent.com/modules/X8JkXv64M9eUcJmcyKMf/XKQbf1GXCrMdJ9i8GYZP/krZkCAPv9.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){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 swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Noise from\"https://framerusercontent.com/modules/bamMgJhjMszHbcnxCtZj/20nHFbpxFqdlchR1dDZF/Noise.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import AriveCaseStudyCard from\"#framer/local/canvasComponent/Fmx_PAKam/Fmx_PAKam.js\";import BackButton from\"#framer/local/canvasComponent/tN8WC97ZC/tN8WC97ZC.js\";import ISCCaseStudyCard from\"#framer/local/canvasComponent/UUtF1XsQV/UUtF1XsQV.js\";import TOC from\"#framer/local/canvasComponent/XQw2OGrBS/XQw2OGrBS.js\";import ShaderGradientL from\"#framer/local/codeFile/Z4m7_30/ShaderGradient.js\";import*as sharedStyle from\"#framer/local/css/AS4PcgcTr/AS4PcgcTr.js\";import metadataProvider from\"#framer/local/webPageMetadata/krZkCAPv9/krZkCAPv9.js\";const BackButtonFonts=getFonts(BackButton);const TOCFonts=getFonts(TOC);const TOCWithVariantAppearEffect=withVariantAppearEffect(TOC);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const CarouselFonts=getFonts(Carousel);const AriveCaseStudyCardFonts=getFonts(AriveCaseStudyCard);const ContainerWithFX=withFX(Container);const ISCCaseStudyCardFonts=getFonts(ISCCaseStudyCard);const MotionDivWithFX=withFX(motion.div);const ShaderGradientLFonts=getFonts(ShaderGradientL);const NoiseFonts=getFonts(Noise);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const breakpoints={eQMLX2iL5:\"(min-width: 1180px)\",kg855Kvhl:\"(min-width: 810px) and (max-width: 1179px)\",vG9P5Bsmd:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-1xWaE\";const variantClassNames={eQMLX2iL5:\"framer-v-1khx3ch\",kg855Kvhl:\"framer-v-7zffj8\",vG9P5Bsmd:\"framer-v-tm845q\"};const transition1={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};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:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={delay:.2,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition3={delay:1,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition4={delay:0,duration:.5,ease:[1,.01,.08,.99],type:\"tween\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:50};const animation8={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,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:\"eQMLX2iL5\",Phone:\"vG9P5Bsmd\",Tablet:\"kg855Kvhl\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"eQMLX2iL5\"};};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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"vG9P5Bsmd\")return false;return true;};const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const elementId=useRouteElementId(\"YzDMcxm5f\");const ref7=React.useRef(null);const elementId1=useRouteElementId(\"KFy3A3iGb\");const elementId2=useRouteElementId(\"EuaHpjbUF\");const elementId3=useRouteElementId(\"YXglvVJrl\");const elementId4=useRouteElementId(\"WDuZZbv9c\");const elementId5=useRouteElementId(\"VCBt3n2vx\");const elementId6=useRouteElementId(\"Feb0rxQqO\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"eQMLX2iL5\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1khx3ch\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-138he9y\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1jx47nn\",\"data-framer-appear-id\":\"1jx47nn\",\"data-framer-name\":\"Left Side\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6ppb91\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":eZpk4cPux\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":eZpk4cPux\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":eZpk4cPux\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c3i623-container\",nodeId:\"wQeBwTCmD\",scopeId:\"krZkCAPv9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{link:resolvedLinks[1]},vG9P5Bsmd:{link:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(BackButton,{height:\"100%\",id:\"wQeBwTCmD\",layoutId:\"wQeBwTCmD\",link:resolvedLinks[0],title:\"Back\",width:\"100%\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v8p2fa hidden-tm845q\",\"data-framer-name\":\"Table of Content\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":YzDMcxm5f\",webPageId:\"krZkCAPv9\"},implicitPathVariables:undefined},{href:{hash:\":YzDMcxm5f\",webPageId:\"krZkCAPv9\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-js2woc-container\",nodeId:\"FmsO9KE3A\",rendersWithMotion:true,scopeId:\"krZkCAPv9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{__framer__targets:undefined,link:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(TOCWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"uR9njwIaj\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"FmsO9KE3A\",layoutId:\"FmsO9KE3A\",link:resolvedLinks1[0],title:\"TL;DR\",variant:\"DhQXMcH9y\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":KFy3A3iGb\",webPageId:\"krZkCAPv9\"},implicitPathVariables:undefined},{href:{hash:\":KFy3A3iGb\",webPageId:\"krZkCAPv9\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jin0mw-container\",nodeId:\"Eh5lvmlg6\",rendersWithMotion:true,scopeId:\"krZkCAPv9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{__framer__targets:undefined,link:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(TOCWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"DhQXMcH9y\"},{ref:ref2,target:\"uR9njwIaj\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"Eh5lvmlg6\",layoutId:\"Eh5lvmlg6\",link:resolvedLinks2[0],title:\"Iteration 1\",variant:\"uR9njwIaj\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":EuaHpjbUF\",webPageId:\"krZkCAPv9\"},implicitPathVariables:undefined},{href:{hash:\":EuaHpjbUF\",webPageId:\"krZkCAPv9\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xr0oyg-container\",nodeId:\"K1g3GJiFx\",rendersWithMotion:true,scopeId:\"krZkCAPv9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{__framer__targets:undefined,link:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(TOCWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"DhQXMcH9y\"},{ref:ref3,target:\"uR9njwIaj\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"K1g3GJiFx\",layoutId:\"K1g3GJiFx\",link:resolvedLinks3[0],title:\"Research\",variant:\"uR9njwIaj\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":YXglvVJrl\",webPageId:\"krZkCAPv9\"},implicitPathVariables:undefined},{href:{hash:\":YXglvVJrl\",webPageId:\"krZkCAPv9\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6fkmgk-container\",nodeId:\"Sq3Udrt5y\",rendersWithMotion:true,scopeId:\"krZkCAPv9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{__framer__targets:undefined,link:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(TOCWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref3,target:\"DhQXMcH9y\"},{ref:ref4,target:\"uR9njwIaj\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"Sq3Udrt5y\",layoutId:\"Sq3Udrt5y\",link:resolvedLinks4[0],title:\"IA\",variant:\"uR9njwIaj\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":WDuZZbv9c\",webPageId:\"krZkCAPv9\"},implicitPathVariables:undefined},{href:{hash:\":WDuZZbv9c\",webPageId:\"krZkCAPv9\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-adqa9p-container\",nodeId:\"BunlJUiuD\",rendersWithMotion:true,scopeId:\"krZkCAPv9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{__framer__targets:undefined,link:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(TOCWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref4,target:\"DhQXMcH9y\"},{ref:ref5,target:\"uR9njwIaj\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"BunlJUiuD\",layoutId:\"BunlJUiuD\",link:resolvedLinks5[0],title:\"Prototyping\",variant:\"uR9njwIaj\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":VCBt3n2vx\",webPageId:\"krZkCAPv9\"},implicitPathVariables:undefined},{href:{hash:\":VCBt3n2vx\",webPageId:\"krZkCAPv9\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17bgx32-container\",nodeId:\"AHfiSIO1Q\",rendersWithMotion:true,scopeId:\"krZkCAPv9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{__framer__targets:undefined,link:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(TOCWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref5,target:\"DhQXMcH9y\"},{ref:ref6,target:\"uR9njwIaj\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"AHfiSIO1Q\",layoutId:\"AHfiSIO1Q\",link:resolvedLinks6[0],title:\"Testing\",variant:\"uR9njwIaj\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nc9na4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1icvaf2\",\"data-framer-name\":\"Right Side\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kuwjb0\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vG9P5Bsmd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIEVpa28gTWVkaXVt\",\"--framer-font-family\":'\"PP Eiko Medium\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Joblyst\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIEVpa28gTWVkaXVt\",\"--framer-font-family\":'\"PP Eiko Medium\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Joblyst\"})}),className:\"framer-1x3qjx6\",\"data-framer-appear-id\":\"1x3qjx6\",fonts:[\"CUSTOM;PP Eiko Medium\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11vkjm4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+60+348+-5),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.8, 1px) - 120px)`,src:\"https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png?scale-down-to=512 512w,https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png 1658w\"},transformTemplate:transformTemplate1},vG9P5Bsmd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+81+0+0+0+0+258+-3),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 40px)`,src:\"https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png?scale-down-to=512 512w,https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png 1658w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation2,background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+60+348+-28),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.75, 1px) - 56px)`,src:\"https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png?scale-down-to=512 512w,https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png 1658w\"},className:\"framer-n70oly\",\"data-framer-appear-id\":\"n70oly\",\"data-framer-name\":\"Manage_Applications_List\",initial:animation1,optimized:true,style:{transformPerspective:1200}})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-dabshg\",\"data-framer-appear-id\":\"dabshg\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k44qde\",\"data-framer-name\":\"TLDR\",id:elementId,ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1frt0q8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"TL;DR\"})}),className:\"framer-72c89u\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n4q55q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"What did I do?\"})})}),className:\"framer-50uog2\",fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Designed a web application aimed at assisting job seekers throughout their entire journey. Initially, the project began as a design challenge focusing on the creation of a browser extension. However, after conducting extensive user research, it became apparent that a web application was necessary to handle more intricate interactions in conjunction with the extension.\"})}),className:\"framer-1l5vnnq\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fns1ew\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"What did I learn?\"})})}),className:\"framer-1hqm0is\",fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"I learned the significance of iteration and the substantial impact that primary research and testing have on the design process.\"})}),className:\"framer-1gi4e35\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16qoog8\",\"data-framer-name\":\"iteration1\",id:elementId1,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-169lwon\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Short Recap of Iteration 1\"})})}),className:\"framer-1c1cj9w\",fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"I created a Chrome Extension that provided users with organization and job role insights, streamlined the application process by autofilling forms, and enabled custom cover letter attachments. Iteration 1 primarily involved secondary research, wireframing and rapid prototyping.\"})}),className:\"framer-kr41wu\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mupou3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dSd_I2aCi\",scopeId:\"krZkCAPv9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:20,widthType:\"stretch\"}},vG9P5Bsmd:{sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:17,widthType:\"stretch\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"dSd_I2aCi\",layoutId:\"dSd_I2aCi\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:68,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2666,pixelHeight:3e3,pixelWidth:5332,sizes:\"2666px\",src:\"https://framerusercontent.com/images/MtFKRc1czvsmpu0Ep4vr0BpOGw.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/MtFKRc1czvsmpu0Ep4vr0BpOGw.png?scale-down-to=512 512w,https://framerusercontent.com/images/MtFKRc1czvsmpu0Ep4vr0BpOGw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MtFKRc1czvsmpu0Ep4vr0BpOGw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MtFKRc1czvsmpu0Ep4vr0BpOGw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/MtFKRc1czvsmpu0Ep4vr0BpOGw.png 5332w\"},className:\"framer-6d86q9\",\"data-framer-name\":\"Search\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2666,pixelHeight:3e3,pixelWidth:5332,sizes:\"2666px\",src:\"https://framerusercontent.com/images/3ZDsl6o9U5sekrhndBKxzMirJ2Q.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/3ZDsl6o9U5sekrhndBKxzMirJ2Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/3ZDsl6o9U5sekrhndBKxzMirJ2Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3ZDsl6o9U5sekrhndBKxzMirJ2Q.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3ZDsl6o9U5sekrhndBKxzMirJ2Q.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/3ZDsl6o9U5sekrhndBKxzMirJ2Q.png 5332w\"},className:\"framer-15fjvwg\",\"data-framer-name\":\"Try_Now\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2666,pixelHeight:3e3,pixelWidth:5332,sizes:\"2666px\",src:\"https://framerusercontent.com/images/Cbck3MGqS7cFuAY2DHYRiQRRQ.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/Cbck3MGqS7cFuAY2DHYRiQRRQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/Cbck3MGqS7cFuAY2DHYRiQRRQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Cbck3MGqS7cFuAY2DHYRiQRRQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Cbck3MGqS7cFuAY2DHYRiQRRQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Cbck3MGqS7cFuAY2DHYRiQRRQ.png 5332w\"},className:\"framer-rzdda3\",\"data-framer-name\":\"Generating\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2666,pixelHeight:3e3,pixelWidth:5332,sizes:\"2666px\",src:\"https://framerusercontent.com/images/yvf53bz25Z4dYqmybc31eWXRow.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/yvf53bz25Z4dYqmybc31eWXRow.png?scale-down-to=512 512w,https://framerusercontent.com/images/yvf53bz25Z4dYqmybc31eWXRow.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yvf53bz25Z4dYqmybc31eWXRow.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yvf53bz25Z4dYqmybc31eWXRow.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/yvf53bz25Z4dYqmybc31eWXRow.png 5332w\"},className:\"framer-srfycj\",\"data-framer-name\":\"Result\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2666,pixelHeight:3e3,pixelWidth:5332,sizes:\"2666px\",src:\"https://framerusercontent.com/images/8l5hhZAHlNZvdjryKj4IdeXCEXo.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/8l5hhZAHlNZvdjryKj4IdeXCEXo.png?scale-down-to=512 512w,https://framerusercontent.com/images/8l5hhZAHlNZvdjryKj4IdeXCEXo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8l5hhZAHlNZvdjryKj4IdeXCEXo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8l5hhZAHlNZvdjryKj4IdeXCEXo.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/8l5hhZAHlNZvdjryKj4IdeXCEXo.png 5332w\"},className:\"framer-puxpq1\",\"data-framer-name\":\"Track\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qxzaha\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"What was the need of Iteration 2?\"})})}),className:\"framer-1jj5eox\",fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Shortly after personally encountering user frustrations while applying for internships during my Master's in HCI/D, I recognized that the extension fell short. The job and internship search is a multifaceted process, requiring ongoing monitoring and organization. While the Joblyst extension provided valuable features such as Company Details and Application Auto-fill, Application Tracking and Document Management still consumed a substantial amount of users' time.\"})}),className:\"framer-1rusgdr\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gnfj35\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"How might we enhance the job search experience for students while minimizing the time and effort they need to invest?\"})})}),className:\"framer-t1oj3h\",fonts:[\"FS;Satoshi-medium\",\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6xks5t\",\"data-framer-name\":\"research\",id:elementId2,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qavppa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Research\"})}),className:\"framer-gfyut8\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k8f4u4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"User Interviews\"})})}),className:\"framer-13rzzy0\",fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"I conducted 10 user interviews, consisting of 6 in-person and 4 virtual sessions, aimed at gaining insights into their usual job search and application procedures.\"})}),className:\"framer-p1zhag\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:212,intrinsicWidth:745.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+1290.6+0+0+0+44+0+151.7),pixelHeight:424,pixelWidth:1491,sizes:`calc((max(${componentViewport?.width||\"100vw\"} * 0.8, 1px) - 120px) * 0.9)`,src:\"https://framerusercontent.com/images/k6Lgqu8jDyQnaaXhAX63nxhr0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/k6Lgqu8jDyQnaaXhAX63nxhr0.png?scale-down-to=512 512w,https://framerusercontent.com/images/k6Lgqu8jDyQnaaXhAX63nxhr0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/k6Lgqu8jDyQnaaXhAX63nxhr0.png 1491w\"}},vG9P5Bsmd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:212,intrinsicWidth:745.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+81+0+0+714.5+0+1224.6+20+0+10+44+0+151.7),pixelHeight:424,pixelWidth:1491,sizes:`calc((max(${componentViewport?.width||\"100vw\"}, 1px) - 60px) * 0.9)`,src:\"https://framerusercontent.com/images/k6Lgqu8jDyQnaaXhAX63nxhr0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/k6Lgqu8jDyQnaaXhAX63nxhr0.png?scale-down-to=512 512w,https://framerusercontent.com/images/k6Lgqu8jDyQnaaXhAX63nxhr0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/k6Lgqu8jDyQnaaXhAX63nxhr0.png 1491w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:212,intrinsicWidth:745.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+1356.6+0+0+0+44+0+151.7),pixelHeight:424,pixelWidth:1491,sizes:\"616.5px\",src:\"https://framerusercontent.com/images/k6Lgqu8jDyQnaaXhAX63nxhr0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/k6Lgqu8jDyQnaaXhAX63nxhr0.png?scale-down-to=512 512w,https://framerusercontent.com/images/k6Lgqu8jDyQnaaXhAX63nxhr0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/k6Lgqu8jDyQnaaXhAX63nxhr0.png 1491w\"},className:\"framer-1u522wv\",\"data-framer-name\":\"user_interview\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c058ti\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Contextual Inquiry\"})})}),className:\"framer-10qz7i0\",fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"I also conducted observations with 2 individuals as they navigated their application processes. During these sessions, I asked them questions and guided them through specific tasks, such as, \u201Cif this company required a cover letter, how would you go about uploading it?\u201D\"})}),className:\"framer-9gpbvc\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5iilr1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Secondary Research\"})})}),className:\"framer-1ye8lpy\",fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"A 2020 study by the National Association of Colleges and Employers (NACE) found that 61% of graduate students reported spending between 1 and 15 hours per week on job search activities, and 28% reported spending more than 15 hours per week on job search activities. The average amount of time spent on job search activities was 15 hours per week.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Reference: \",/*#__PURE__*/_jsx(Link,{href:\"https://www.naceweb.org/job-market/graduate-outcomes/first-destination\",motionChild:true,nodeId:\"cOo05tpYW\",openInNewTab:true,scopeId:\"krZkCAPv9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"https://www.naceweb.org/job-market/graduate-outcomes/first-destination\"})})]})]}),className:\"framer-1don4fa\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v22dp5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Key Takeaways from Research\"})})}),className:\"framer-bvajp1\",fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:1312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+1290.6+0+0+0+976.1+0+29.2),pixelHeight:552,pixelWidth:2624,sizes:`calc((max(${componentViewport?.width||\"100vw\"} * 0.8, 1px) - 120px) * 0.9)`,src:\"https://framerusercontent.com/images/1MBvAJ5V2bUb1djs9NGgE1BD1h0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/1MBvAJ5V2bUb1djs9NGgE1BD1h0.png?scale-down-to=512 512w,https://framerusercontent.com/images/1MBvAJ5V2bUb1djs9NGgE1BD1h0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1MBvAJ5V2bUb1djs9NGgE1BD1h0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1MBvAJ5V2bUb1djs9NGgE1BD1h0.png 2624w\"}},vG9P5Bsmd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:1312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+81+0+0+714.5+0+1224.6+20+0+10+976.1+0+29.2),pixelHeight:552,pixelWidth:2624,sizes:`calc((max(${componentViewport?.width||\"100vw\"}, 1px) - 60px) * 0.9)`,src:\"https://framerusercontent.com/images/1MBvAJ5V2bUb1djs9NGgE1BD1h0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/1MBvAJ5V2bUb1djs9NGgE1BD1h0.png?scale-down-to=512 512w,https://framerusercontent.com/images/1MBvAJ5V2bUb1djs9NGgE1BD1h0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1MBvAJ5V2bUb1djs9NGgE1BD1h0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1MBvAJ5V2bUb1djs9NGgE1BD1h0.png 2624w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:1312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+1356.6+0+0+0+976.1+0+29.2),pixelHeight:552,pixelWidth:2624,sizes:\"616.5px\",src:\"https://framerusercontent.com/images/1MBvAJ5V2bUb1djs9NGgE1BD1h0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/1MBvAJ5V2bUb1djs9NGgE1BD1h0.png?scale-down-to=512 512w,https://framerusercontent.com/images/1MBvAJ5V2bUb1djs9NGgE1BD1h0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1MBvAJ5V2bUb1djs9NGgE1BD1h0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1MBvAJ5V2bUb1djs9NGgE1BD1h0.png 2624w\"},className:\"framer-10e3kgx\",\"data-framer-name\":\"Screenshot_2023_10_30_at_2_06_35_AM\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"A participant shared the Google Sheet they used to track their previous year's internship search process.\"})}),className:\"framer-1qw1c4f\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:363,intrinsicWidth:695,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+1290.6+0+0+0+976.1+0+437.7),pixelHeight:726,pixelWidth:1390,sizes:`calc((max(${componentViewport?.width||\"100vw\"} * 0.8, 1px) - 120px) * 0.9)`,src:\"https://framerusercontent.com/images/bxAcgh9RRtynMEvdLDymc0OMxyo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bxAcgh9RRtynMEvdLDymc0OMxyo.png?scale-down-to=512 512w,https://framerusercontent.com/images/bxAcgh9RRtynMEvdLDymc0OMxyo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bxAcgh9RRtynMEvdLDymc0OMxyo.png 1390w\"}},vG9P5Bsmd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:363,intrinsicWidth:695,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+81+0+0+714.5+0+1224.6+20+0+10+976.1+0+437.7),pixelHeight:726,pixelWidth:1390,sizes:`calc((max(${componentViewport?.width||\"100vw\"}, 1px) - 60px) * 0.9)`,src:\"https://framerusercontent.com/images/bxAcgh9RRtynMEvdLDymc0OMxyo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bxAcgh9RRtynMEvdLDymc0OMxyo.png?scale-down-to=512 512w,https://framerusercontent.com/images/bxAcgh9RRtynMEvdLDymc0OMxyo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bxAcgh9RRtynMEvdLDymc0OMxyo.png 1390w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:363,intrinsicWidth:695,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+1356.6+0+0+0+976.1+0+437.7),pixelHeight:726,pixelWidth:1390,sizes:\"616.5px\",src:\"https://framerusercontent.com/images/bxAcgh9RRtynMEvdLDymc0OMxyo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bxAcgh9RRtynMEvdLDymc0OMxyo.png?scale-down-to=512 512w,https://framerusercontent.com/images/bxAcgh9RRtynMEvdLDymc0OMxyo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bxAcgh9RRtynMEvdLDymc0OMxyo.png 1390w\"},className:\"framer-10quefb\",\"data-framer-name\":\"excel_sheet\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Creating customized cover letters for every other company and managing these documents was time consuming and messy.\"})}),className:\"framer-z689eu\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:211.5,intrinsicWidth:601,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+1290.6+0+0+0+976.1+0+933.2),pixelHeight:423,pixelWidth:1202,sizes:`calc((max(${componentViewport?.width||\"100vw\"} * 0.8, 1px) - 120px) * 0.9)`,src:\"https://framerusercontent.com/images/CtgeDiIkMAEQpxeuGHOJXCn383Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/CtgeDiIkMAEQpxeuGHOJXCn383Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/CtgeDiIkMAEQpxeuGHOJXCn383Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CtgeDiIkMAEQpxeuGHOJXCn383Y.png 1202w\"}},vG9P5Bsmd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:211.5,intrinsicWidth:601,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+81+0+0+714.5+0+1224.6+20+0+10+976.1+0+933.2),pixelHeight:423,pixelWidth:1202,sizes:`calc((max(${componentViewport?.width||\"100vw\"}, 1px) - 60px) * 0.9)`,src:\"https://framerusercontent.com/images/CtgeDiIkMAEQpxeuGHOJXCn383Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/CtgeDiIkMAEQpxeuGHOJXCn383Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/CtgeDiIkMAEQpxeuGHOJXCn383Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CtgeDiIkMAEQpxeuGHOJXCn383Y.png 1202w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:211.5,intrinsicWidth:601,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+1356.6+0+0+0+976.1+0+933.2),pixelHeight:423,pixelWidth:1202,sizes:\"616.5px\",src:\"https://framerusercontent.com/images/CtgeDiIkMAEQpxeuGHOJXCn383Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/CtgeDiIkMAEQpxeuGHOJXCn383Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/CtgeDiIkMAEQpxeuGHOJXCn383Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CtgeDiIkMAEQpxeuGHOJXCn383Y.png 1202w\"},className:\"framer-175q0bf\",\"data-framer-name\":\"Documents_Old\"})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dm0hpi\",\"data-framer-name\":\"IA\",id:elementId3,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1615ryr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Information Architecture\"})}),className:\"framer-13oi3yw\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9aqqe8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Informed by the research findings, I created an Information Architecture -\"})}),className:\"framer-llkm0l\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xrfbei\",\"data-framer-name\":\"prototyping\",id:elementId4,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-keecas\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Prototyping\"})}),className:\"framer-188oi9p\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dc7c08\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xl1yta\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Onboarding\"})})}),className:\"framer-akid6w\",fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Given that email is the primary mode of communication, we request user permission to scan their emails solely for specific keywords and from designated email addresses. Privacy concerns may arise for some users, making it essential to effectively convey the importance of this onboarding process through our screens.\"})}),className:\"framer-s56hrh\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+3668.4+0+0+0+44+0+0+0+151.7),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.8, 1px) - 120px)`,src:\"https://framerusercontent.com/images/vjacNME83MI9Wl67Hsg9aQEDTYA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vjacNME83MI9Wl67Hsg9aQEDTYA.png?scale-down-to=512 512w,https://framerusercontent.com/images/vjacNME83MI9Wl67Hsg9aQEDTYA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vjacNME83MI9Wl67Hsg9aQEDTYA.png 1658w\"}},vG9P5Bsmd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+81+0+0+714.5+0+3662.4+20+0+10+44+0+0+0+151.7),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 60px)`,src:\"https://framerusercontent.com/images/vjacNME83MI9Wl67Hsg9aQEDTYA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vjacNME83MI9Wl67Hsg9aQEDTYA.png?scale-down-to=512 512w,https://framerusercontent.com/images/vjacNME83MI9Wl67Hsg9aQEDTYA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vjacNME83MI9Wl67Hsg9aQEDTYA.png 1658w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+3734.4+0+0+0+44+0+0+0+151.7),pixelHeight:1074,pixelWidth:1658,sizes:\"685px\",src:\"https://framerusercontent.com/images/vjacNME83MI9Wl67Hsg9aQEDTYA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vjacNME83MI9Wl67Hsg9aQEDTYA.png?scale-down-to=512 512w,https://framerusercontent.com/images/vjacNME83MI9Wl67Hsg9aQEDTYA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vjacNME83MI9Wl67Hsg9aQEDTYA.png 1658w\"},className:\"framer-2lrqrb\",\"data-framer-name\":\"Onboarding_1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+3668.4+0+0+0+44+0+0+0+698.7),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.8, 1px) - 120px)`,src:\"https://framerusercontent.com/images/WcYHo0rI536CXxpnb1pC6Y1PMJY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WcYHo0rI536CXxpnb1pC6Y1PMJY.png?scale-down-to=512 512w,https://framerusercontent.com/images/WcYHo0rI536CXxpnb1pC6Y1PMJY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WcYHo0rI536CXxpnb1pC6Y1PMJY.png 1658w\"}},vG9P5Bsmd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+81+0+0+714.5+0+3662.4+20+0+10+44+0+0+0+698.7),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 60px)`,src:\"https://framerusercontent.com/images/WcYHo0rI536CXxpnb1pC6Y1PMJY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WcYHo0rI536CXxpnb1pC6Y1PMJY.png?scale-down-to=512 512w,https://framerusercontent.com/images/WcYHo0rI536CXxpnb1pC6Y1PMJY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WcYHo0rI536CXxpnb1pC6Y1PMJY.png 1658w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+3734.4+0+0+0+44+0+0+0+698.7),pixelHeight:1074,pixelWidth:1658,sizes:\"685px\",src:\"https://framerusercontent.com/images/WcYHo0rI536CXxpnb1pC6Y1PMJY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WcYHo0rI536CXxpnb1pC6Y1PMJY.png?scale-down-to=512 512w,https://framerusercontent.com/images/WcYHo0rI536CXxpnb1pC6Y1PMJY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WcYHo0rI536CXxpnb1pC6Y1PMJY.png 1658w\"},className:\"framer-15n49u2\",\"data-framer-name\":\"Onboarding_2\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qfogxa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Home\"})})}),className:\"framer-nc31ti\",fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"To provide an overview of the entire application process.\"})}),className:\"framer-1h9bxhl\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+3668.4+0+0+0+44+0+1275.7+0+151.7),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.8, 1px) - 120px)`,src:\"https://framerusercontent.com/images/k3Tqj5yOWBYlcdyZFNMjCb8rw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/k3Tqj5yOWBYlcdyZFNMjCb8rw.png?scale-down-to=512 512w,https://framerusercontent.com/images/k3Tqj5yOWBYlcdyZFNMjCb8rw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/k3Tqj5yOWBYlcdyZFNMjCb8rw.png 1658w\"}},vG9P5Bsmd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+81+0+0+714.5+0+3662.4+20+0+10+44+0+1275.7+0+151.7),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 60px)`,src:\"https://framerusercontent.com/images/k3Tqj5yOWBYlcdyZFNMjCb8rw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/k3Tqj5yOWBYlcdyZFNMjCb8rw.png?scale-down-to=512 512w,https://framerusercontent.com/images/k3Tqj5yOWBYlcdyZFNMjCb8rw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/k3Tqj5yOWBYlcdyZFNMjCb8rw.png 1658w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+3734.4+0+0+0+44+0+1275.7+0+151.7),pixelHeight:1074,pixelWidth:1658,sizes:\"685px\",src:\"https://framerusercontent.com/images/k3Tqj5yOWBYlcdyZFNMjCb8rw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/k3Tqj5yOWBYlcdyZFNMjCb8rw.png?scale-down-to=512 512w,https://framerusercontent.com/images/k3Tqj5yOWBYlcdyZFNMjCb8rw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/k3Tqj5yOWBYlcdyZFNMjCb8rw.png 1658w\"},className:\"framer-1a7m5ct\",\"data-framer-name\":\"Home\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-plluwb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Documents\"})})}),className:\"framer-7unmcd\",fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Generating customized resumes and cover letters for hundreds of companies while managing these documents was overwhelming. In the initial solution for the Extension, I integrated OpenAI's GPT API to create personalized resumes and cover letters. It's crucial to adapt these documents to match the job descriptions while retaining the user's unique background. The master documents serve as the basis for generating tailored content for individual companies.\"})}),className:\"framer-lw7kgu\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+3668.4+0+0+0+44+0+2004.4+0+151.7),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.8, 1px) - 120px)`,src:\"https://framerusercontent.com/images/JK3IKpWJR1rXZUxZO3A0rzfj19s.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/JK3IKpWJR1rXZUxZO3A0rzfj19s.png?scale-down-to=512 512w,https://framerusercontent.com/images/JK3IKpWJR1rXZUxZO3A0rzfj19s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JK3IKpWJR1rXZUxZO3A0rzfj19s.png 1658w\"}},vG9P5Bsmd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+81+0+0+714.5+0+3662.4+20+0+10+44+0+2004.4+0+151.7),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 60px)`,src:\"https://framerusercontent.com/images/JK3IKpWJR1rXZUxZO3A0rzfj19s.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/JK3IKpWJR1rXZUxZO3A0rzfj19s.png?scale-down-to=512 512w,https://framerusercontent.com/images/JK3IKpWJR1rXZUxZO3A0rzfj19s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JK3IKpWJR1rXZUxZO3A0rzfj19s.png 1658w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+3734.4+0+0+0+44+0+2004.4+0+151.7),pixelHeight:1074,pixelWidth:1658,sizes:\"685px\",src:\"https://framerusercontent.com/images/JK3IKpWJR1rXZUxZO3A0rzfj19s.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/JK3IKpWJR1rXZUxZO3A0rzfj19s.png?scale-down-to=512 512w,https://framerusercontent.com/images/JK3IKpWJR1rXZUxZO3A0rzfj19s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JK3IKpWJR1rXZUxZO3A0rzfj19s.png 1658w\"},className:\"framer-kli51u\",\"data-framer-name\":\"Documents\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w8e42p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Jobs\"})})}),className:\"framer-q3yj3k\",fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Job searching and curation are time-consuming, and popular job search tools often lack essential filters, such as visa sponsorship information.\"})}),className:\"framer-1l4hkxq\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+3668.4+0+0+0+44+0+2733.1+0+151.7),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.8, 1px) - 120px)`,src:\"https://framerusercontent.com/images/9cgB6YFwZe326uLeBOR1Z0jRtA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9cgB6YFwZe326uLeBOR1Z0jRtA.png?scale-down-to=512 512w,https://framerusercontent.com/images/9cgB6YFwZe326uLeBOR1Z0jRtA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9cgB6YFwZe326uLeBOR1Z0jRtA.png 1658w\"}},vG9P5Bsmd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+81+0+0+714.5+0+3662.4+20+0+10+44+0+2733.1+0+151.7),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 60px)`,src:\"https://framerusercontent.com/images/9cgB6YFwZe326uLeBOR1Z0jRtA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9cgB6YFwZe326uLeBOR1Z0jRtA.png?scale-down-to=512 512w,https://framerusercontent.com/images/9cgB6YFwZe326uLeBOR1Z0jRtA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9cgB6YFwZe326uLeBOR1Z0jRtA.png 1658w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+3734.4+0+0+0+44+0+2733.1+0+151.7),pixelHeight:1074,pixelWidth:1658,sizes:\"685px\",src:\"https://framerusercontent.com/images/9cgB6YFwZe326uLeBOR1Z0jRtA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9cgB6YFwZe326uLeBOR1Z0jRtA.png?scale-down-to=512 512w,https://framerusercontent.com/images/9cgB6YFwZe326uLeBOR1Z0jRtA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9cgB6YFwZe326uLeBOR1Z0jRtA.png 1658w\"},className:\"framer-1y74pw\",\"data-framer-name\":\"Search_jobs\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k4gmk7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Manage Applications\"})})}),className:\"framer-1bmovir\",fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Managing hundreds of job applications is a challenging task. According to our research, some users resort to spreadsheets, while others don't bother tracking at all. This poses a significant issue \u2013 for instance, you might have applied to Walmart through the Workday portal and missed a critical task related to US work authorization due to the sheer volume of applications.\"})}),className:\"framer-1erkvst\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+3668.4+0+0+0+44+0+3461.8+0+151.7),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.8, 1px) - 120px)`,src:\"https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png?scale-down-to=512 512w,https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png 1658w\"}},vG9P5Bsmd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+81+0+0+714.5+0+3662.4+20+0+10+44+0+3461.8+0+151.7),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 60px)`,src:\"https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png?scale-down-to=512 512w,https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png 1658w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+3734.4+0+0+0+44+0+3461.8+0+151.7),pixelHeight:1074,pixelWidth:1658,sizes:\"685px\",src:\"https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png?scale-down-to=512 512w,https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yFOWLpnGlAbOSHTmPfngv5Au3yc.png 1658w\"},className:\"framer-1rvfu6j\",\"data-framer-name\":\"Manage_Applications_List\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The Kanban view empowers users to effortlessly drag and drop their applications into various statuses.\"})}),className:\"framer-gk2fla\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+3668.4+0+0+0+44+0+3461.8+0+821.2),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.8, 1px) - 120px)`,src:\"https://framerusercontent.com/images/v6pzu0Er7sHDx7sdtz6aDR4EIFY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/v6pzu0Er7sHDx7sdtz6aDR4EIFY.png?scale-down-to=512 512w,https://framerusercontent.com/images/v6pzu0Er7sHDx7sdtz6aDR4EIFY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v6pzu0Er7sHDx7sdtz6aDR4EIFY.png 1658w\"}},vG9P5Bsmd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+81+0+0+714.5+0+3662.4+20+0+10+44+0+3461.8+0+821.2),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 60px)`,src:\"https://framerusercontent.com/images/v6pzu0Er7sHDx7sdtz6aDR4EIFY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/v6pzu0Er7sHDx7sdtz6aDR4EIFY.png?scale-down-to=512 512w,https://framerusercontent.com/images/v6pzu0Er7sHDx7sdtz6aDR4EIFY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v6pzu0Er7sHDx7sdtz6aDR4EIFY.png 1658w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+3734.4+0+0+0+44+0+3461.8+0+821.2),pixelHeight:1074,pixelWidth:1658,sizes:\"685px\",src:\"https://framerusercontent.com/images/v6pzu0Er7sHDx7sdtz6aDR4EIFY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/v6pzu0Er7sHDx7sdtz6aDR4EIFY.png?scale-down-to=512 512w,https://framerusercontent.com/images/v6pzu0Er7sHDx7sdtz6aDR4EIFY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v6pzu0Er7sHDx7sdtz6aDR4EIFY.png 1658w\"},className:\"framer-1dl749z\",\"data-framer-name\":\"Manage_Applications_Kanban\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wws4rb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Events\"})})}),className:\"framer-1kprauf\",fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Career Fairs and Networking events are crucial in a user's journey, whether in person or online. Users often find these events through various platforms such as Handshake, LinkedIn, and university emails. It was essential to centralize and provide users with the capability to register for these events and receive reminders through notifications and email.\"})}),className:\"framer-1jvh5fm\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+3668.4+0+0+0+44+0+4860+0+151.7),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.8, 1px) - 120px)`,src:\"https://framerusercontent.com/images/f3wXn8boqiB7GyhavBLkedgNoE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/f3wXn8boqiB7GyhavBLkedgNoE.png?scale-down-to=512 512w,https://framerusercontent.com/images/f3wXn8boqiB7GyhavBLkedgNoE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f3wXn8boqiB7GyhavBLkedgNoE.png 1658w\"}},vG9P5Bsmd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+81+0+0+714.5+0+3662.4+20+0+10+44+0+4860+0+151.7),pixelHeight:1074,pixelWidth:1658,sizes:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 60px)`,src:\"https://framerusercontent.com/images/f3wXn8boqiB7GyhavBLkedgNoE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/f3wXn8boqiB7GyhavBLkedgNoE.png?scale-down-to=512 512w,https://framerusercontent.com/images/f3wXn8boqiB7GyhavBLkedgNoE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f3wXn8boqiB7GyhavBLkedgNoE.png 1658w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:829,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+3734.4+0+0+0+44+0+4860+0+151.7),pixelHeight:1074,pixelWidth:1658,sizes:\"685px\",src:\"https://framerusercontent.com/images/f3wXn8boqiB7GyhavBLkedgNoE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/f3wXn8boqiB7GyhavBLkedgNoE.png?scale-down-to=512 512w,https://framerusercontent.com/images/f3wXn8boqiB7GyhavBLkedgNoE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f3wXn8boqiB7GyhavBLkedgNoE.png 1658w\"},className:\"framer-c1ci7o\",\"data-framer-name\":\"Events\"})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18qnry7\",\"data-framer-name\":\"testing\",id:elementId5,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cijvxg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Testing\"})}),className:\"framer-1g5azn6\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qh4ko7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l0p5zo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Cognitive Walkthrough\"})})}),className:\"framer-1khkvyx\",fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Conducted a Cognitive Walkthrough with a few of my HCI classmates, all of whom are experienced UX Designers.\"})}),className:\"framer-necneo\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1512,intrinsicWidth:2016,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+9311.1+0+0+0+44+0+0+0+151.7),pixelHeight:3024,pixelWidth:4032,sizes:`calc((max(${componentViewport?.width||\"100vw\"} * 0.8, 1px) - 120px) * 0.6)`,src:\"https://framerusercontent.com/images/BRKYIEG8KF8VYHeWJ7yNQHIw4k.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/BRKYIEG8KF8VYHeWJ7yNQHIw4k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BRKYIEG8KF8VYHeWJ7yNQHIw4k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BRKYIEG8KF8VYHeWJ7yNQHIw4k.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BRKYIEG8KF8VYHeWJ7yNQHIw4k.jpg 4032w\"}},vG9P5Bsmd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1512,intrinsicWidth:2016,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+81+0+0+714.5+0+9335.1+20+0+10+44+0+0+0+151.7),pixelHeight:3024,pixelWidth:4032,sizes:`calc((max(${componentViewport?.width||\"100vw\"}, 1px) - 60px) * 0.6)`,src:\"https://framerusercontent.com/images/BRKYIEG8KF8VYHeWJ7yNQHIw4k.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/BRKYIEG8KF8VYHeWJ7yNQHIw4k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BRKYIEG8KF8VYHeWJ7yNQHIw4k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BRKYIEG8KF8VYHeWJ7yNQHIw4k.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BRKYIEG8KF8VYHeWJ7yNQHIw4k.jpg 4032w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1512,intrinsicWidth:2016,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+714.5+0+9377.1+0+0+0+44+0+0+0+151.7),pixelHeight:3024,pixelWidth:4032,sizes:\"411px\",src:\"https://framerusercontent.com/images/BRKYIEG8KF8VYHeWJ7yNQHIw4k.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/BRKYIEG8KF8VYHeWJ7yNQHIw4k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BRKYIEG8KF8VYHeWJ7yNQHIw4k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BRKYIEG8KF8VYHeWJ7yNQHIw4k.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BRKYIEG8KF8VYHeWJ7yNQHIw4k.jpg 4032w\"},className:\"framer-15zfumb\",\"data-framer-name\":\"IMG_8854\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Key Insight: Was the Home screen necessary, and if so, was it essential for it to be the initial screen displayed? There's a possibility that it could lead to anxiety when users view the summary card.\"})}),className:\"framer-1995n6u\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e5jl3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Usability Testing\"})})}),className:\"framer-rbnzfp\",fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Following the integration of insights from the Cognitive Walkthrough, I conducted usability testing with a potential user who had no prior UX knowledge.\"})}),className:\"framer-1f7mi9x\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nera1j\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIEVpa28gSXRhbGljIE1lZGl1bQ==\",\"--framer-font-family\":'\"PP Eiko Italic Medium\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(236, 235, 245)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-471f2b17-1ad5-41e8-9c3e-e5342455e801, rgba(236, 235, 245, 0.4)) 0%, rgb(255, 255, 255) 100%)\"},children:\"Other Work\"})})}),className:\"framer-1dsh1be\",fonts:[\"CUSTOM;PP Eiko Italic Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v4wq1u\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"IMh9YYGyd\"},implicitPathVariables:undefined},{href:{webPageId:\"IMh9YYGyd\"},implicitPathVariables:undefined},{href:{webPageId:\"IMh9YYGyd\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1terz0s-container\",nodeId:\"xd5BrNutu\",rendersWithMotion:true,scopeId:\"krZkCAPv9\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kg855Kvhl:{XL8VKRWf0:resolvedLinks7[1]},vG9P5Bsmd:{XL8VKRWf0:resolvedLinks7[2]}},children:/*#__PURE__*/_jsx(AriveCaseStudyCard,{height:\"100%\",id:\"xd5BrNutu\",layoutId:\"xd5BrNutu\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",XL8VKRWf0:resolvedLinks7[0]})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ge8oyq-container\",nodeId:\"oGyfJcFac\",rendersWithMotion:true,scopeId:\"krZkCAPv9\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ISCCaseStudyCard,{height:\"100%\",id:\"oGyfJcFac\",layoutId:\"oGyfJcFac\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-oqmo7j\",\"data-framer-name\":\"Footer\",id:elementId6,ref:ref6,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ftu4ym\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIEVpa28gSXRhbGljIE1lZGl1bQ==\",\"--framer-font-family\":'\"PP Eiko Italic Medium\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(236, 235, 245)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-471f2b17-1ad5-41e8-9c3e-e5342455e801, rgba(236, 235, 245, 0.4)) 0%, rgb(255, 255, 255) 100%)\"},children:\"Thank you for visiting!\"})})}),className:\"framer-goxzr7\",fonts:[\"CUSTOM;PP Eiko Italic Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tuyuit\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(236, 235, 245, 0.5)\"},children:\"\\xa9 2023 Harshesh Sayani. All Rights Reserved.\"})}),className:\"framer-m0q05s\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19ykvqb-container\",isAuthoredByUser:true,nodeId:\"pPdwxQVty\",scopeId:\"krZkCAPv9\",children:/*#__PURE__*/_jsx(ShaderGradientL,{activeTab:\"Colors\",animate:\"on\",brightness:1,cameraAngle:{cAzimuthAngle:180,cPolarAngle:115},cameraZoom:1,cDistance:1,color1:\"rgb(3, 6, 22)\",color2:\"rgb(4, 25, 42)\",color3:\"rgb(5, 5, 21)\",control:\"props\",envPreset:\"lobby\",grain:\"off\",height:\"100%\",id:\"pPdwxQVty\",layoutId:\"pPdwxQVty\",lightType:\"3d\",noise:{uDensity:1.5,uStrength:1.5},performantOnCanvas:false,pixelDensity:1,pointerEvents:\"none\",position:{positionX:0,positionY:0,positionZ:0},reflection:1,rotation:{rotationX:0,rotationY:0,rotationZ:235},shader:\"defaults\",style:{height:\"100%\",width:\"100%\"},toggleAxis:false,type:\"waterPlane\",uAmplitude:.1,urlString:\"https://www.shadergradient.co/customize?animate=on&axesHelper=off&brightness=1&cAzimuthAngle=180&cDistance=2.8&cPolarAngle=80&cameraZoom=9.1&color1=%23606080&color2=%238d7dca&color3=%23212121&destination=onCanvas&embedMode=off&envPreset=city&format=gif&fov=45&frameRate=10&gizmoHelper=hide&grain=on&lightType=3d&pixelDensity=1&positionX=0&positionY=0&positionZ=0&range=enabled&rangeEnd=40&rangeStart=0&reflection=0.1&rotationX=50&rotationY=0&rotationZ=-60&shader=defaults&type=waterPlane&uAmplitude=0&uDensity=1.5&uFrequency=0&uSpeed=0.3&uStrength=1.5&uTime=8&wireframe=false\",uSpeed:.2,uTime:0,width:\"100%\",zoomOut:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1apapn1-container\",\"data-framer-appear-id\":\"1apapn1\",initial:animation9,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IBGgpMR2m\",optimized:true,rendersWithMotion:true,scopeId:\"krZkCAPv9\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Noise,{backgroundSize:128,borderRadius:0,height:\"100%\",id:\"IBGgpMR2m\",layoutId:\"IBGgpMR2m\",opacity:.1,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1xWaE.framer-lgzv09, .framer-1xWaE .framer-lgzv09 { display: block; }\",\".framer-1xWaE.framer-1khx3ch { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1180px; }\",\".framer-1xWaE .framer-138he9y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-1xWaE .framer-1jx47nn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: 100vh; justify-content: flex-start; left: 0px; overflow: hidden; padding: 50px; position: sticky; top: 0px; width: 25%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-1xWaE .framer-6ppb91 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 40px; position: relative; width: 100%; }\",\".framer-1xWaE .framer-1c3i623-container, .framer-1xWaE .framer-js2woc-container, .framer-1xWaE .framer-jin0mw-container, .framer-1xWaE .framer-xr0oyg-container, .framer-1xWaE .framer-6fkmgk-container, .framer-1xWaE .framer-adqa9p-container, .framer-1xWaE .framer-17bgx32-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-1xWaE .framer-v8p2fa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 40px; position: relative; width: 100%; }\",\".framer-1xWaE .framer-1nc9na4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1xWaE .framer-1icvaf2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1xWaE .framer-1kuwjb0 { align-content: center; align-items: center; aspect-ratio: 1.2386284114765571 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: var(--framer-aspect-ratio-supported, 161px); justify-content: flex-start; overflow: hidden; padding: 60px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-1xWaE .framer-1x3qjx6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; text-shadow: 0px 0px 24px rgba(255, 255, 255, 0.4); white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-1xWaE .framer-11vkjm4 { aspect-ratio: 1.5904365904365905 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: var(--framer-aspect-ratio-supported, 126px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-1xWaE .framer-n70oly { aspect-ratio: 1.5437616387337059 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 537px); left: -32px; overflow: visible; position: absolute; right: -32px; top: -28px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1xWaE .framer-dabshg { align-content: center; align-items: center; 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: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1xWaE .framer-1k44qde, .framer-1xWaE .framer-16qoog8, .framer-1xWaE .framer-6xks5t, .framer-1xWaE .framer-1dm0hpi, .framer-1xWaE .framer-1xrfbei, .framer-1xWaE .framer-18qnry7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 100px 40px 100px; position: relative; width: 885px; }\",\".framer-1xWaE .framer-1frt0q8, .framer-1xWaE .framer-169lwon, .framer-1xWaE .framer-1qavppa, .framer-1xWaE .framer-1615ryr, .framer-1xWaE .framer-keecas, .framer-1xWaE .framer-1cijvxg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1xWaE .framer-72c89u, .framer-1xWaE .framer-50uog2, .framer-1xWaE .framer-1hqm0is, .framer-1xWaE .framer-1c1cj9w, .framer-1xWaE .framer-1jj5eox, .framer-1xWaE .framer-gfyut8, .framer-1xWaE .framer-13rzzy0, .framer-1xWaE .framer-10qz7i0, .framer-1xWaE .framer-1ye8lpy, .framer-1xWaE .framer-bvajp1, .framer-1xWaE .framer-13oi3yw, .framer-1xWaE .framer-188oi9p, .framer-1xWaE .framer-akid6w, .framer-1xWaE .framer-nc31ti, .framer-1xWaE .framer-7unmcd, .framer-1xWaE .framer-q3yj3k, .framer-1xWaE .framer-1bmovir, .framer-1xWaE .framer-1kprauf, .framer-1xWaE .framer-1g5azn6, .framer-1xWaE .framer-1khkvyx, .framer-1xWaE .framer-rbnzfp, .framer-1xWaE .framer-1dsh1be, .framer-1xWaE .framer-goxzr7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-1xWaE .framer-1n4q55q, .framer-1xWaE .framer-1fns1ew, .framer-1xWaE .framer-qxzaha, .framer-1xWaE .framer-1k8f4u4, .framer-1xWaE .framer-1c058ti, .framer-1xWaE .framer-5iilr1, .framer-1xWaE .framer-1v22dp5, .framer-1xWaE .framer-9aqqe8, .framer-1xWaE .framer-1xl1yta, .framer-1xWaE .framer-qfogxa, .framer-1xWaE .framer-plluwb, .framer-1xWaE .framer-w8e42p, .framer-1xWaE .framer-1k4gmk7, .framer-1xWaE .framer-1wws4rb, .framer-1xWaE .framer-1l0p5zo, .framer-1xWaE .framer-1e5jl3 { 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-1xWaE .framer-1l5vnnq, .framer-1xWaE .framer-1gi4e35, .framer-1xWaE .framer-kr41wu, .framer-1xWaE .framer-1rusgdr, .framer-1xWaE .framer-t1oj3h, .framer-1xWaE .framer-p1zhag, .framer-1xWaE .framer-9gpbvc, .framer-1xWaE .framer-llkm0l, .framer-1xWaE .framer-s56hrh, .framer-1xWaE .framer-1h9bxhl, .framer-1xWaE .framer-lw7kgu, .framer-1xWaE .framer-1l4hkxq, .framer-1xWaE .framer-1erkvst, .framer-1xWaE .framer-gk2fla, .framer-1xWaE .framer-1jvh5fm, .framer-1xWaE .framer-necneo, .framer-1xWaE .framer-1995n6u, .framer-1xWaE .framer-1f7mi9x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1xWaE .framer-1mupou3-container { flex: none; height: 385px; position: relative; width: 682px; }\",\".framer-1xWaE .framer-6d86q9, .framer-1xWaE .framer-15fjvwg, .framer-1xWaE .framer-rzdda3, .framer-1xWaE .framer-srfycj, .framer-1xWaE .framer-puxpq1 { aspect-ratio: 1.7773333333333334 / 1; height: var(--framer-aspect-ratio-supported, 1500px); overflow: visible; position: relative; width: 2666px; }\",\".framer-1xWaE .framer-gnfj35 { --border-bottom-width: 0px; --border-color: #ffffff; --border-left-width: 4px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; 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: 20px; position: relative; width: 685px; }\",\".framer-1xWaE .framer-1u522wv { aspect-ratio: 3.516509433962264 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); overflow: visible; position: relative; width: 90%; }\",\".framer-1xWaE .framer-1don4fa, .framer-1xWaE .framer-1qw1c4f, .framer-1xWaE .framer-z689eu { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1xWaE .framer-10e3kgx { aspect-ratio: 4.753623188405797 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 90%; }\",\".framer-1xWaE .framer-10quefb { aspect-ratio: 1.9146005509641872 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 104px); overflow: visible; position: relative; width: 90%; }\",\".framer-1xWaE .framer-175q0bf { aspect-ratio: 2.84160756501182 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); overflow: visible; position: relative; width: 90%; }\",\".framer-1xWaE .framer-1dc7c08, .framer-1xWaE .framer-1qh4ko7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1xWaE .framer-2lrqrb, .framer-1xWaE .framer-15n49u2, .framer-1xWaE .framer-1a7m5ct, .framer-1xWaE .framer-kli51u, .framer-1xWaE .framer-1y74pw, .framer-1xWaE .framer-1rvfu6j, .framer-1xWaE .framer-1dl749z, .framer-1xWaE .framer-c1ci7o { aspect-ratio: 1.5437616387337059 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 130px); overflow: visible; position: relative; width: 100%; }\",\".framer-1xWaE .framer-15zfumb { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); overflow: visible; position: relative; width: 60%; }\",\".framer-1xWaE .framer-nera1j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-1xWaE .framer-v4wq1u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-1xWaE .framer-1terz0s-container, .framer-1xWaE .framer-1ge8oyq-container { flex: none; height: 480px; position: relative; width: 400px; }\",\".framer-1xWaE .framer-oqmo7j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 30px 40px 30px; position: relative; width: 1180px; z-index: 2; }\",\".framer-1xWaE .framer-ftu4ym, .framer-1xWaE .framer-tuyuit { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1xWaE .framer-m0q05s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-1xWaE .framer-19ykvqb-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-1xWaE .framer-1apapn1-container { bottom: 0px; flex: none; left: 0px; opacity: 0.5; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",...sharedStyle.css,'.framer-1xWaE[data-border=\"true\"]::after, .framer-1xWaE [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1179px) { .framer-1xWaE.framer-1khx3ch { width: 810px; } .framer-1xWaE .framer-1jx47nn { height: min-content; padding: 60px 10px 60px 20px; width: 20%; } .framer-1xWaE .framer-6ppb91 { align-content: flex-start; align-items: flex-start; padding: 0px; } .framer-1xWaE .framer-v8p2fa { padding: 0px; } .framer-1xWaE .framer-11vkjm4 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; } .framer-1xWaE .framer-n70oly { bottom: var(--framer-aspect-ratio-supported, -5px); height: unset; left: 50%; right: unset; top: -5px; transform: translateX(-50%); width: 100%; } .framer-1xWaE .framer-dabshg, .framer-1xWaE .framer-v4wq1u { width: 100%; } .framer-1xWaE .framer-1k44qde, .framer-1xWaE .framer-16qoog8, .framer-1xWaE .framer-6xks5t, .framer-1xWaE .framer-1dm0hpi, .framer-1xWaE .framer-1xrfbei, .framer-1xWaE .framer-18qnry7 { padding: 0px 30px 40px 30px; width: 100%; } .framer-1xWaE .framer-1frt0q8, .framer-1xWaE .framer-169lwon, .framer-1xWaE .framer-1qavppa, .framer-1xWaE .framer-1615ryr, .framer-1xWaE .framer-keecas, .framer-1xWaE .framer-1cijvxg { padding: 0px 30px 0px 30px; } .framer-1xWaE .framer-1mupou3-container { height: 319px; width: 559px; } .framer-1xWaE .framer-1terz0s-container, .framer-1xWaE .framer-1ge8oyq-container { flex: 1 0 0px; width: 1px; }}\",\"@media (max-width: 809px) { .framer-1xWaE.framer-1khx3ch { width: 390px; } .framer-1xWaE .framer-138he9y { flex-direction: column; } .framer-1xWaE .framer-1jx47nn { gap: 0px; height: min-content; left: unset; padding: 20px 20px 30px 20px; position: relative; top: unset; width: 100%; } .framer-1xWaE .framer-6ppb91 { padding: 0px; } .framer-1xWaE .framer-1nc9na4 { flex: none; width: 100%; } .framer-1xWaE .framer-1kuwjb0 { gap: 30px; padding: 0px 20px 0px 20px; } .framer-1xWaE .framer-11vkjm4 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; } .framer-1xWaE .framer-n70oly { bottom: var(--framer-aspect-ratio-supported, -3px); height: unset; left: 50%; right: unset; top: -3px; transform: translateX(-50%); width: 100%; } .framer-1xWaE .framer-dabshg { gap: 20px; width: 100%; } .framer-1xWaE .framer-1k44qde, .framer-1xWaE .framer-16qoog8, .framer-1xWaE .framer-6xks5t, .framer-1xWaE .framer-1dm0hpi, .framer-1xWaE .framer-1xrfbei, .framer-1xWaE .framer-18qnry7 { padding: 20px; width: 100%; } .framer-1xWaE .framer-1frt0q8, .framer-1xWaE .framer-169lwon, .framer-1xWaE .framer-1qavppa, .framer-1xWaE .framer-1615ryr, .framer-1xWaE .framer-keecas, .framer-1xWaE .framer-1cijvxg { padding: 10px; } .framer-1xWaE .framer-1mupou3-container { height: 193px; width: 342px; } .framer-1xWaE .framer-nera1j { gap: 30px; padding: 40px 10px 10px 10px; } .framer-1xWaE .framer-v4wq1u { flex-direction: column; gap: 20px; padding: 20px; width: 100%; } .framer-1xWaE .framer-1terz0s-container { height: 453px; width: 335px; } .framer-1xWaE .framer-1ge8oyq-container, .framer-1xWaE .framer-oqmo7j { width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9482\n * @framerIntrinsicWidth 1180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kg855Kvhl\":{\"layout\":[\"fixed\",\"auto\"]},\"vG9P5Bsmd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"YzDMcxm5f\":{\"pattern\":\":YzDMcxm5f\",\"name\":\"tldr\"},\"KFy3A3iGb\":{\"pattern\":\":KFy3A3iGb\",\"name\":\"iteration1\"},\"EuaHpjbUF\":{\"pattern\":\":EuaHpjbUF\",\"name\":\"research\"},\"YXglvVJrl\":{\"pattern\":\":YXglvVJrl\",\"name\":\"ia\"},\"WDuZZbv9c\":{\"pattern\":\":WDuZZbv9c\",\"name\":\"prototyping\"},\"VCBt3n2vx\":{\"pattern\":\":VCBt3n2vx\",\"name\":\"testing\"},\"Feb0rxQqO\":{\"pattern\":\":Feb0rxQqO\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FramerkrZkCAPv9=withCSS(Component,css,\"framer-1xWaE\");export default FramerkrZkCAPv9;FramerkrZkCAPv9.displayName=\"Joblyst\";FramerkrZkCAPv9.defaultProps={height:9482,width:1180};addFonts(FramerkrZkCAPv9,[{explicitInter:true,fonts:[{family:\"PP Eiko Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/qVs5Aj7CMjM9xQluaOJovwGqo.ttf\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"PP Eiko Italic Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/6NrZNGe75hVlGQtPhqfPUskfvvc.ttf\"}]},...BackButtonFonts,...TOCFonts,...CarouselFonts,...AriveCaseStudyCardFonts,...ISCCaseStudyCardFonts,...ShaderGradientLFonts,...NoiseFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkrZkCAPv9\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"9482\",\"framerIntrinsicWidth\":\"1180\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"YzDMcxm5f\\\":{\\\"pattern\\\":\\\":YzDMcxm5f\\\",\\\"name\\\":\\\"tldr\\\"},\\\"KFy3A3iGb\\\":{\\\"pattern\\\":\\\":KFy3A3iGb\\\",\\\"name\\\":\\\"iteration1\\\"},\\\"EuaHpjbUF\\\":{\\\"pattern\\\":\\\":EuaHpjbUF\\\",\\\"name\\\":\\\"research\\\"},\\\"YXglvVJrl\\\":{\\\"pattern\\\":\\\":YXglvVJrl\\\",\\\"name\\\":\\\"ia\\\"},\\\"WDuZZbv9c\\\":{\\\"pattern\\\":\\\":WDuZZbv9c\\\",\\\"name\\\":\\\"prototyping\\\"},\\\"VCBt3n2vx\\\":{\\\"pattern\\\":\\\":VCBt3n2vx\\\",\\\"name\\\":\\\"testing\\\"},\\\"Feb0rxQqO\\\":{\\\"pattern\\\":\\\":Feb0rxQqO\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kg855Kvhl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vG9P5Bsmd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "e", "n", "progress", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "start1", "end1", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "ref", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "ref1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "BackButtonFonts", "getFonts", "tN8WC97ZC_default", "TOCFonts", "XQw2OGrBS_default", "TOCWithVariantAppearEffect", "withVariantAppearEffect", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "ImageWithOptimizedAppearEffect", "Image2", "CarouselFonts", "Carousel", "AriveCaseStudyCardFonts", "Fmx_PAKam_default", "ContainerWithFX", "withFX", "Container", "ISCCaseStudyCardFonts", "UUtF1XsQV_default", "MotionDivWithFX", "ShaderGradientLFonts", "ShaderGradient_default", "NoiseFonts", "Noise", "ContainerWithOptimizedAppearEffect", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transformTemplate1", "_", "t", "transition3", "animation3", "animation4", "animation5", "animation6", "transition4", "animation7", "animation8", "animation9", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "ref1", "ref2", "ref3", "ref4", "ref5", "ref6", "elementId", "useRouteElementId", "ref7", "elementId1", "elementId2", "elementId3", "elementId4", "elementId5", "elementId6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "PropertyOverrides2", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "x", "getLoadingLazyAtYPosition", "Link", "resolvedLinks7", "css", "FramerkrZkCAPv9", "withCSS", "krZkCAPv9_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
