{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/4arAHsd7hJrO3J6fUEnu/FBrXe8Z4g6aOkKrLgbpK/NGz1_8wlR.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (a3b61f5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";const VideoFonts=getFonts(Video);const cycleOrder=[\"Lx9ylULtG\",\"r7hTTEF0j\",\"ZMPuebAGi\",\"aECAmBkcG\",\"SBi6xNQDV\",\"tgyy4aWUV\",\"KCLr9_EQI\",\"xxZf9hYyV\",\"kmfiPctYv\",\"bE9sioy47\",\"KwSJdVK8Q\",\"xhvTcDXRP\",\"bIFUtxI7r\",\"UmjK4WGsR\",\"NFaweCgeE\"];const serializationHash=\"framer-AFQTi\";const variantClassNames={aECAmBkcG:\"framer-v-1te9c0v\",bE9sioy47:\"framer-v-ahpmqs\",bIFUtxI7r:\"framer-v-1qcy3ne\",KCLr9_EQI:\"framer-v-x6nu9a\",kmfiPctYv:\"framer-v-1w4vazf\",KwSJdVK8Q:\"framer-v-kt3197\",Lx9ylULtG:\"framer-v-1mq3ds\",NFaweCgeE:\"framer-v-1u3xkup\",r7hTTEF0j:\"framer-v-1k3v11p\",SBi6xNQDV:\"framer-v-10lp2dy\",tgyy4aWUV:\"framer-v-111xxut\",UmjK4WGsR:\"framer-v-17h9arz\",xhvTcDXRP:\"framer-v-ik4adl\",xxZf9hYyV:\"framer-v-1co6o99\",ZMPuebAGi:\"framer-v-1fdwlbi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1Morph\":\"Lx9ylULtG\",\"2-Mobile\":\"bE9sioy47\",\"2Candlemonk-Tablet\":\"KCLr9_EQI\",\"2Candlemonk\":\"aECAmBkcG\",\"3-Mobile\":\"KwSJdVK8Q\",\"3Gmm-Tablet\":\"xxZf9hYyV\",\"3Gmm\":\"SBi6xNQDV\",\"4-Mobile\":\"xhvTcDXRP\",\"4-RedTablet\":\"kmfiPctYv\",\"4Red\":\"tgyy4aWUV\",\"5-Mobile\":\"NFaweCgeE\",\"5-redesignTablet\":\"UmjK4WGsR\",Phone:\"ZMPuebAGi\",Tablet:\"r7hTTEF0j\",uxredesign:\"bIFUtxI7r\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Lx9ylULtG\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Lx9ylULtG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1wjdqww=activeVariantCallback(async(...args)=>{setVariant(\"r7hTTEF0j\");});const onTap1dtdujm=activeVariantCallback(async(...args)=>{setVariant(\"KCLr9_EQI\");});const onTap103s6t=activeVariantCallback(async(...args)=>{setVariant(\"xxZf9hYyV\");});const onTapm16wx2=activeVariantCallback(async(...args)=>{setVariant(\"kmfiPctYv\");});const onTap1wvfviy=activeVariantCallback(async(...args)=>{setVariant(\"UmjK4WGsR\");});const onTapqn7va9=activeVariantCallback(async(...args)=>{setVariant(\"Lx9ylULtG\");});const onTapaqy7jh=activeVariantCallback(async(...args)=>{setVariant(\"aECAmBkcG\");});const onTapatm5g9=activeVariantCallback(async(...args)=>{setVariant(\"SBi6xNQDV\");});const onTap1lmh6yq=activeVariantCallback(async(...args)=>{setVariant(\"tgyy4aWUV\");});const onTappg2mk0=activeVariantCallback(async(...args)=>{setVariant(\"ZMPuebAGi\");});const onTap16eijn3=activeVariantCallback(async(...args)=>{setVariant(\"bE9sioy47\");});const onTap1g62yvo=activeVariantCallback(async(...args)=>{setVariant(\"KwSJdVK8Q\");});const onTapmz77n0=activeVariantCallback(async(...args)=>{setVariant(\"xhvTcDXRP\");});const onTapz85ad0=activeVariantCallback(async(...args)=>{setVariant(\"bIFUtxI7r\");});const onTap1bq4r3z=activeVariantCallback(async(...args)=>{setVariant(\"NFaweCgeE\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"KCLr9_EQI\")return true;return false;};const isDisplayed1=()=>{if([\"KCLr9_EQI\",\"xxZf9hYyV\",\"kmfiPctYv\",\"bE9sioy47\",\"KwSJdVK8Q\",\"xhvTcDXRP\",\"UmjK4WGsR\",\"NFaweCgeE\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"aECAmBkcG\",\"tgyy4aWUV\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"xxZf9hYyV\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"xxZf9hYyV\")return false;return true;};const isDisplayed5=()=>{if([\"kmfiPctYv\",\"UmjK4WGsR\"].includes(baseVariant))return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"kmfiPctYv\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"UmjK4WGsR\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"UmjK4WGsR\")return false;return true;};const isDisplayed9=()=>{if(baseVariant===\"bE9sioy47\")return true;return false;};const isDisplayed10=()=>{if(baseVariant===\"KwSJdVK8Q\")return true;return false;};const isDisplayed11=()=>{if(baseVariant===\"KwSJdVK8Q\")return false;return true;};const isDisplayed12=()=>{if([\"xhvTcDXRP\",\"NFaweCgeE\"].includes(baseVariant))return true;return false;};const isDisplayed13=()=>{if(baseVariant===\"xhvTcDXRP\")return true;return false;};const isDisplayed14=()=>{if(baseVariant===\"NFaweCgeE\")return true;return false;};const isDisplayed15=()=>{if(baseVariant===\"NFaweCgeE\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1mq3ds\",className,classNames),\"data-framer-name\":\"1Morph\",layoutDependency:layoutDependency,layoutId:\"Lx9ylULtG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({aECAmBkcG:{\"data-framer-name\":\"2Candlemonk\"},bE9sioy47:{\"data-framer-name\":\"2-Mobile\"},bIFUtxI7r:{\"data-framer-name\":\"uxredesign\"},KCLr9_EQI:{\"data-framer-name\":\"2Candlemonk-Tablet\"},kmfiPctYv:{\"data-framer-name\":\"4-RedTablet\"},KwSJdVK8Q:{\"data-framer-name\":\"3-Mobile\"},NFaweCgeE:{\"data-framer-name\":\"5-Mobile\"},r7hTTEF0j:{\"data-framer-name\":\"Tablet\"},SBi6xNQDV:{\"data-framer-name\":\"3Gmm\"},tgyy4aWUV:{\"data-framer-name\":\"4Red\"},UmjK4WGsR:{\"data-framer-name\":\"5-redesignTablet\"},xhvTcDXRP:{\"data-framer-name\":\"4-Mobile\"},xxZf9hYyV:{\"data-framer-name\":\"3Gmm-Tablet\"},ZMPuebAGi:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lr7fq7\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"aRgD98M87\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ei3s6q\",layoutDependency:layoutDependency,layoutId:\"FYNJHn0KH\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\"},children:\"UX Design Projects\"})}),className:\"framer-1uxuwad\",fonts:[\"GF;Playfair Display-600\"],layoutDependency:layoutDependency,layoutId:\"EKplKOPA8\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14h2q2g\",layoutDependency:layoutDependency,layoutId:\"S6pjermnm\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vaf8gj\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gLTU1H5oG\",onTap:onTap1wjdqww,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15a2vmn\",\"data-framer-name\":\"Graphic\",fill:\"rgb(85, 85, 85)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"EKYKgQyx1\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"m313-440 224 224-57 56-320-320 320-320 57 56-224 224h487v80H313Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(20, 20, 20))\"},children:\"1\"})}),className:\"framer-o8m0k8\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AxHx72f3c\",onTap:onTap1wjdqww,style:{\"--extracted-r6o4lv\":\"rgb(20, 20, 20)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(131, 82, 245))\"},children:\"2\"})}),className:\"framer-m16u7p\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"T4mW4sSUC\",onTap:onTap1dtdujm,style:{\"--extracted-r6o4lv\":\"rgb(131, 82, 245)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"3\"})}),className:\"framer-w5uhzz\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TUHpCit6G\",onTap:onTap103s6t,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"4\"})}),className:\"framer-1hiops4\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BdyaYWLjX\",onTap:onTapm16wx2,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"5\"})}),className:\"framer-fswakc\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JclMKJ09F\",onTap:onTap1wvfviy,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11hf55f\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"aYxqcNoGe\",onTap:onTap103s6t,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1leb7r4\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"aKC3nE9Cs\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z\"/></svg>',withExternalLayout:true})})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m3zdrn\",\"data-border\":true,\"data-framer-name\":\"UXDESIGNPROJECTS\",layoutDependency:layoutDependency,layoutId:\"epkdXefRR\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-1b2avkn\",layoutDependency:layoutDependency,layoutId:\"BY0VzVnRN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-acrzoa\",layoutDependency:layoutDependency,layoutId:\"VMUy5jV5a\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g8shg0-container\",layoutDependency:layoutDependency,layoutId:\"PJssTPiJ3-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(255, 255, 255, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"PJssTPiJ3\",isMixedBorderRadius:false,layoutId:\"PJssTPiJ3\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/B4vjon69aSehG2PwyFsNubD2Uc.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vvl51s\",layoutDependency:layoutDependency,layoutId:\"FxFsY1MtW\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\"},children:\"CANDLEMONK.COM\"})}),className:\"framer-1wyg6xg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"N76xPF4GT\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS01MDBpdGFsaWM=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(209, 153, 69))\"},children:\"Enhanced User Engagement by 4% in the comments section of a blogging website through intuitive redesign\"})}),className:\"framer-1e4ufgj\",fonts:[\"GF;Playfair Display-500italic\"],layoutDependency:layoutDependency,layoutId:\"ImZ5HZPDk\",style:{\"--extracted-r6o4lv\":\"rgb(209, 153, 69)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Role: UI/UX Designer    Timeline: Feb 2024 -Apr 2024    Client: Candlemonk.com\"})}),className:\"framer-uefqyi\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"zqH9YxM4G\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fIr_YBzAW\"},nodeId:\"Bki4srlGf\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-j2oyng framer-h1o5mo\",layoutDependency:layoutDependency,layoutId:\"Bki4srlGf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLWl0YWxpYw==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-style\":\"italic\"},children:\"View Case Study\"})}),className:\"framer-1oaj7c6\",fonts:[\"GF;Instrument Sans-italic\"],layoutDependency:layoutDependency,layoutId:\"fuLFbbnPG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1i740m7\",\"data-framer-name\":\"Graphic\",fill:\"rgb(85, 0, 255)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"rhzQY4f4P\",style:{rotate:-45},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z\"/></svg>',withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k0psx2\",layoutDependency:layoutDependency,layoutId:\"T64DNUDEL\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11fjnoh\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"ZReTgsmdE\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"WHAT ?\"})}),className:\"framer-rp5cv2\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"Sr1h7il7a\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Blogging website had lower user engagement. A new design for mobile app following the brand guidelines had to be created along with redesign of the existing website.\"})}),className:\"framer-11x1gp8\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"iUBAJo9iv\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mvl1mg\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"yszYdQ0YS\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"WHY ?\"})}),className:\"framer-4tprs7\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"yLM453cWf\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"User research, interviews , competitive analysis revealed various insights about the existing system which includes\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Distracted due to lengthy comments section, often making it difficult to access blogs.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Bookmarked list often being abandoned , thereby returning users percentage is lower.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Unable to easily find blogs written by same author.\"})})]})]}),className:\"framer-1ygkj1k\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"BWISyZqOH\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xnx03u\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"XutifW0c3\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"HOW ?\"})}),className:\"framer-1hlsgha\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"v4RojnnEl\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Redesigned the comments section with a filter options to show comments based on user preference through simplified and intuitive UI.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Introduced Your reading list section along with recommendations thereby reminding while also encouraging users to read the blogs they have already bookmarked.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Improved market penetration and user engagement through Line Sharing to social media feature where users can select the lines or wordings they like and share it with ease across social media platforms through a single click action.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"User retention was increased by adding By the same author section.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Reminder notifications were designed for mobile app to improve user engagement.\"})})]})}),className:\"framer-mhxe2o\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"BZEtF3iRp\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-104vfex\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"NTGgU4fuf\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sqsuij\",layoutDependency:layoutDependency,layoutId:\"UrxX7KZeT\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\"},children:\"UX Design Projects\"})}),className:\"framer-1oyuza5\",fonts:[\"GF;Playfair Display-600\"],layoutDependency:layoutDependency,layoutId:\"fIbS3laLz\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9jhm8v\",layoutDependency:layoutDependency,layoutId:\"Lc_pFvSqz\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19vlyym\",layoutDependency:layoutDependency,layoutId:\"SRWYvGoxD\",...addPropertyOverrides({aECAmBkcG:{\"data-highlight\":true,onTap:onTapqn7va9},bIFUtxI7r:{\"data-highlight\":true,onTap:onTap1lmh6yq},SBi6xNQDV:{\"data-highlight\":true,onTap:onTapaqy7jh},tgyy4aWUV:{\"data-highlight\":true,onTap:onTapatm5g9}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1aosxoy\",\"data-framer-name\":\"Graphic\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"qw_NYvv8i\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"m313-440 224 224-57 56-320-320 320-320 57 56-224 224h487v80H313Z\"/></svg>',withExternalLayout:true,...addPropertyOverrides({aECAmBkcG:{fill:\"rgb(85, 85, 85)\"},bIFUtxI7r:{fill:\"rgb(6, 6, 6)\"},SBi6xNQDV:{fill:\"rgb(52, 52, 52)\"},tgyy4aWUV:{fill:\"rgb(6, 6, 6)\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 92, 255))\"},children:\"1\"})}),className:\"framer-9ffrm4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Q6OPFBtQf\",style:{\"--extracted-r6o4lv\":\"rgb(141, 92, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{aECAmBkcG:{\"--extracted-r6o4lv\":\"rgb(20, 20, 20)\"},SBi6xNQDV:{\"--extracted-r6o4lv\":\"rgb(33, 33, 33)\"},tgyy4aWUV:{\"--extracted-r6o4lv\":\"rgb(38, 38, 38)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aECAmBkcG:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(20, 20, 20))\"},children:\"1\"})}),onTap:onTapqn7va9},bIFUtxI7r:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"1\"})}),onTap:onTapqn7va9},r7hTTEF0j:{\"data-highlight\":true,onTap:onTap1wjdqww},SBi6xNQDV:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 33, 33))\"},children:\"1\"})}),onTap:onTapqn7va9},tgyy4aWUV:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(38, 38, 38))\"},children:\"1\"})}),onTap:onTapqn7va9},ZMPuebAGi:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 92, 255))\"},children:\"1\"})}),onTap:onTappg2mk0}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"2\"})}),className:\"framer-r83oag\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BwqFhGT5H\",onTap:onTapaqy7jh,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{aECAmBkcG:{\"--extracted-r6o4lv\":\"rgb(131, 82, 245)\"},SBi6xNQDV:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\"},tgyy4aWUV:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aECAmBkcG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(131, 82, 245))\"},children:\"2\"})})},r7hTTEF0j:{onTap:onTap1dtdujm},SBi6xNQDV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"2\"})})},tgyy4aWUV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"2\"})})},ZMPuebAGi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"2\"})}),onTap:onTap16eijn3}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"3\"})}),className:\"framer-1v4k46u\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VQv1Z8X_p\",onTap:onTapatm5g9,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{SBi6xNQDV:{\"--extracted-r6o4lv\":\"rgb(131, 82, 245)\"},tgyy4aWUV:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({r7hTTEF0j:{onTap:onTap103s6t},SBi6xNQDV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(131, 82, 245))\"},children:\"3\"})})},tgyy4aWUV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"3\"})})},ZMPuebAGi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"3\"})}),onTap:onTap1g62yvo}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"4\"})}),className:\"framer-7g9b69\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZWqxQmlBs\",onTap:onTap1lmh6yq,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{tgyy4aWUV:{\"--extracted-r6o4lv\":\"rgb(136, 84, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({r7hTTEF0j:{onTap:onTapm16wx2},tgyy4aWUV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 84, 255))\"},children:\"4\"})})},ZMPuebAGi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"4\"})}),onTap:onTapmz77n0}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"5\"})}),className:\"framer-j829w\",\"data-framer-name\":\"5\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VT658v43l\",onTap:onTapz85ad0,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{bIFUtxI7r:{\"--extracted-r6o4lv\":\"rgb(141, 92, 255)\"},tgyy4aWUV:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bIFUtxI7r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 92, 255))\"},children:\"5\"})})},r7hTTEF0j:{onTap:onTap1wvfviy},tgyy4aWUV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"5\"})})},ZMPuebAGi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"5\"})}),onTap:onTap1bq4r3z}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1df3tx7\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MUkd1Bz2j\",onTap:onTapaqy7jh,...addPropertyOverrides({aECAmBkcG:{onTap:onTapatm5g9},r7hTTEF0j:{onTap:onTap1dtdujm},SBi6xNQDV:{onTap:onTap1lmh6yq},tgyy4aWUV:{onTap:onTapz85ad0},ZMPuebAGi:{onTap:onTap16eijn3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1oscz6g\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"iFwNOpptz\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z\"/></svg>',withExternalLayout:true,...addPropertyOverrides({bIFUtxI7r:{fill:\"rgb(255, 255, 255)\"},tgyy4aWUV:{fill:\"rgb(6, 6, 6)\"}},baseVariant,gestureVariant)})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-96qhlp\",\"data-border\":true,\"data-framer-name\":\"UXDESIGNPROJECTS\",layoutDependency:layoutDependency,layoutId:\"FAsDLtxKJ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-nyrx9s\",layoutDependency:layoutDependency,layoutId:\"yQ79cb8Sl\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1145)-0-1817)/2+45+0)+518+0+0),pixelHeight:1440,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"720px\",src:\"https://framerusercontent.com/images/GZ17jyqb96z7HuVSvaeacrmP8c.gif\",srcSet:\"https://framerusercontent.com/images/GZ17jyqb96z7HuVSvaeacrmP8c.gif?scale-down-to=512 512w,https://framerusercontent.com/images/GZ17jyqb96z7HuVSvaeacrmP8c.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/GZ17jyqb96z7HuVSvaeacrmP8c.gif 1920w\"},className:\"framer-125quyy\",layoutDependency:layoutDependency,layoutId:\"Szmnv0AYJ\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{aECAmBkcG:{backgroundColor:\"rgb(255, 255, 255)\"},tgyy4aWUV:{backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({aECAmBkcG:{background:undefined},bIFUtxI7r:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1145)-0-1577)/2+45+0)+398+0+0),pixelHeight:1440,pixelWidth:1920,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/rpeSPjkjKsnc2pPRLe78GHQcRVo.jpg\"}},r7hTTEF0j:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1554.5)-0-2553)/2+45+0)+40+0+0+356),pixelHeight:1440,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`calc((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px) * 0.8)`,src:\"https://framerusercontent.com/images/GZ17jyqb96z7HuVSvaeacrmP8c.gif\",srcSet:\"https://framerusercontent.com/images/GZ17jyqb96z7HuVSvaeacrmP8c.gif?scale-down-to=512 512w,https://framerusercontent.com/images/GZ17jyqb96z7HuVSvaeacrmP8c.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/GZ17jyqb96z7HuVSvaeacrmP8c.gif 1920w\"}},SBi6xNQDV:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1145)-0-1577)/2+45+0)+398+0+0),pixelHeight:2824,pixelWidth:3765,positionX:\"center\",positionY:\"center\",sizes:\"720px\",src:\"https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif\",srcSet:\"https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif?scale-down-to=512 512w,https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif?scale-down-to=2048 2048w,https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif 3765w\"}},tgyy4aWUV:{background:undefined},ZMPuebAGi:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1961)-0-2877.8)/2+93.8+0)+40+0+0+812),pixelHeight:1440,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/GZ17jyqb96z7HuVSvaeacrmP8c.gif\",srcSet:\"https://framerusercontent.com/images/GZ17jyqb96z7HuVSvaeacrmP8c.gif?scale-down-to=512 512w,https://framerusercontent.com/images/GZ17jyqb96z7HuVSvaeacrmP8c.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/GZ17jyqb96z7HuVSvaeacrmP8c.gif 1920w\"}}},baseVariant,gestureVariant),children:isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6gebza-container\",layoutDependency:layoutDependency,layoutId:\"NidtLvJC5-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(255, 255, 255, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"NidtLvJC5\",isMixedBorderRadius:false,layoutId:\"NidtLvJC5\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/B4vjon69aSehG2PwyFsNubD2Uc.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({tgyy4aWUV:{objectFit:\"contain\",srcFile:\"https://framerusercontent.com/assets/MCwuZOej3rLS7QkreBmdyCbl0g.mp4\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qulsfq\",layoutDependency:layoutDependency,layoutId:\"rL4noMU02\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"MORPH.IN\"})}),className:\"framer-1i8skcz\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"G0Szjdwsz\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aECAmBkcG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\"},children:\"CANDLEMONK.COM\"})}),fonts:[\"Inter\"]},bIFUtxI7r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"UX REDESIGN\"})})},SBi6xNQDV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\"},children:\"GENERATEMYMEAL.COM\"})}),fonts:[\"Inter\"]},tgyy4aWUV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\"},children:\"RED APP\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS01MDBpdGFsaWM=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(55, 0, 150))\"},children:\"Optimized operations and enhanced data accuracy by designing a comprehensive ERP system\"})}),className:\"framer-k4rkj8\",fonts:[\"GF;Playfair Display-500italic\"],layoutDependency:layoutDependency,layoutId:\"vtuItXekf\",style:{\"--extracted-r6o4lv\":\"rgb(55, 0, 150)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{aECAmBkcG:{\"--extracted-r6o4lv\":\"rgb(209, 153, 69)\"},bIFUtxI7r:{\"--extracted-r6o4lv\":\"rgb(55, 102, 95)\"},SBi6xNQDV:{\"--extracted-r6o4lv\":\"rgb(201, 74, 28)\"},tgyy4aWUV:{\"--extracted-r6o4lv\":\"rgb(166, 0, 0)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aECAmBkcG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS01MDBpdGFsaWM=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(209, 153, 69))\"},children:\"Enhanced User Engagement by 4% in the comments section of a blogging website through intuitive redesign\"})})},bIFUtxI7r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS01MDBpdGFsaWM=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(55, 102, 95))\"},children:\"Enhancing social awareness about accessibility and improving user experience through feature suggestions\"})})},SBi6xNQDV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS01MDBpdGFsaWM=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(201, 74, 28))\"},children:\"Re-inventing the wheel of daily decision making on what to cook though a web app design\"})})},tgyy4aWUV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS01MDBpdGFsaWM=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(166, 0, 0))\"},children:\"Ensuring safety for all though helping people take informed decisions while travelling\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:\"Role: UI/UX Designer    Timeline: Aug 2024 -Nov 2024    Client: Wireone Labs Pvt. Ltd.\"})}),className:\"framer-14nc58r\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"sJNHxTdaG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aECAmBkcG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:\"Role: UI/UX Designer    Timeline: Feb 2024 -Apr 2024    Client: Candlemonk.com\"})})},bIFUtxI7r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:\"Role: UI/UX Designer    Timeline: May 2024 - Dec 2024    \"})})},SBi6xNQDV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:\"Role: UI/UX Designer    Timeline: Apr 2024 - May 2024    \"})})},tgyy4aWUV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:\"Role: UI/UX Designer    Timeline: Mar 2024 - Apr 2024    \"})})},ZMPuebAGi:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{children:\"Role: UI/UX Designer    \"}),/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{children:\"Timeline: Aug 2024 -Nov 2024\"}),/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{children:\"Client: Wireone Labs Pvt. Ltd.\"})]}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dr6ag3ONb\"},nodeId:\"LwR4z3LHy\",...addPropertyOverrides({aECAmBkcG:{href:{webPageId:\"fIr_YBzAW\"},openInNewTab:false},bIFUtxI7r:{href:{webPageId:\"l3SxS0YC6\"},openInNewTab:false},SBi6xNQDV:{href:{webPageId:\"gIdVAze65\"},openInNewTab:false},tgyy4aWUV:{href:{webPageId:\"lBR8_cDt2\"},openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-mt3hvu framer-h1o5mo\",layoutDependency:layoutDependency,layoutId:\"LwR4z3LHy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLWl0YWxpYw==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"View Case Study\"})}),className:\"framer-hg1p86\",fonts:[\"GF;Instrument Sans-italic\"],layoutDependency:layoutDependency,layoutId:\"w1lF7Z02G\",style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aECAmBkcG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLWl0YWxpYw==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-style\":\"italic\"},children:\"View Case Study\"})})},bIFUtxI7r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLWl0YWxpYw==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"View Collection\"})})},SBi6xNQDV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLWl0YWxpYw==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-style\":\"italic\"},children:\"View Case Study\"})})},tgyy4aWUV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLWl0YWxpYw==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-style\":\"italic\"},children:\"View Case Study\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11ozki8\",\"data-framer-name\":\"Graphic\",fill:\"rgb(85, 0, 255)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"ExXsr5tJF\",style:{rotate:-45},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z\"/></svg>',withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u462c4\",layoutDependency:layoutDependency,layoutId:\"pr_X5lu6z\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qmrfvi\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"zmT8aUzkb\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"WHAT ?\"})}),className:\"framer-66t6sk\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"X52aB8uRw\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:\"Pharmaceutical manufacturers have traditionally relied on manual systems or disconnected software solutions to manage their complex operations.\"})}),className:\"framer-wkpfpn\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Fj9Z2O1Fv\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aECAmBkcG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:\"Blogging website had lower user engagement. A new design for mobile app following the brand guidelines had to be created along with redesign of the existing website.\"})})},bIFUtxI7r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:\"An initiative to advocate usability and accessibility of websites, apps, softwares through social media posts that focus on enhancing user experience.\"})})},SBi6xNQDV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:\"Every individual does a lot of decision making on a daily basis of which deciding what to cook or eat is an inevitable part of the day which is time consuming and confusing.\"})})},tgyy4aWUV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:\"Every individual travelling in any part of the world feels unsafe at some specific locations due to various factors. Helping them take informed decision is the goal.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lkxbrj\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"E7hCMHiRY\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"WHY ?\"})}),className:\"framer-1muzi9n\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"NU7SIPX8Z\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:\"User research, competitive analysis revealed various pain points in the existing system which includes\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Difficulty in tracking inventory across multiple locations\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Complex approval workflows slowing down operations\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Lack of real-time visibility into sales and production metrics\"})})]})]}),className:\"framer-as1ti1\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"lEXVE5ZqP\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aECAmBkcG:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:\"User research, interviews , competitive analysis revealed various insights about the existing system which includes\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Distracted due to lengthy comments section, often making it difficult to access blogs.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Bookmarked list often being abandoned , thereby returning users percentage is lower.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Unable to easily find blogs written by same author.\"})})]})]})},bIFUtxI7r:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:\"Secondary user research and UX audit helped in identifying user pain points such as\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Difficulty in performing primary action of a website affects user engagement \"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Inconsistencies in user interface and features across different platforms of a website\"})})]})]})},SBi6xNQDV:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:\"User research, interviews , competitive analysis revealed various insights and paint points which includes\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Deciding a meal for at least three times a day frustrates the users more than the cooking process itself.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Existing apps do not solve the exact problem of helping in decision making rather they focus on planning.\"})})]})]})},tgyy4aWUV:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:\"User research, user interviews  and competitive analysis revealed various valuable insights which includes\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"People belonging to vulnerable groups expressed a heightened awareness of safety in unfamiliar environments.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"People often rely on family and friends to know how safe is a place to travel which is a limited resource.\"})})]})]})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jy5xj6\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"HX62MMctK\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"HOW ?\"})}),className:\"framer-tkgtae\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"g6giEiyEU\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Access priority data at the first instance enabled by including action items in home page.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Transparent and streamlined approval process was enabled by displaying request initiated time, initiator, approver details and deadline for approval.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Decreased discrepancies in data by tailored data view and role based access.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Easy data retrieval and maintenance enabled through activity log for both financial and non-financial transactions.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Improved understanding and provided context for pending approvals and rejections though adding comments section in the approval page.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Easy access of extensive and long forms was enabled through Anchor links.\"})})]})}),className:\"framer-oni08c\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"TWW97PHwU\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aECAmBkcG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Redesigned the comments section with a filter options to show comments based on user preference through simplified and intuitive UI.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Introduced Your reading list section along with recommendations thereby reminding while also encouraging users to read the blogs they have already bookmarked.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Improved market penetration and user engagement through Line Sharing to social media feature where users can select the lines or wordings they like and share it with ease across social media platforms through a single click action.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"User retention was increased by adding By the same author section.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Reminder notifications were designed for mobile app to improve user engagement.\"})})]})})},bIFUtxI7r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Feature suggestion of implementing visible scroll bars to improve accessibility for users with disabilities or those using assistive technologies was acknowledged by the LinkedIn Team for consideration in the future product updates.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Feature suggestions made to improve user engagement through redesigning of \u201Ccreate a post\u201D button placement on LinkedIn.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Feature suggestion of maintaining consistency across platform with regards to \u201CAdd a note\u201D option while sending Connect request on LinkedIn was acknowledged by the LinkedIn Team as feedback.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Sort option placement on Youtube was redesigned and suggested to be placed next to filters to make it easily accessible and discoverable.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Option to replace image was made as a suggestion to the X team to enhance user experience while posting.\"})})]})})},SBi6xNQDV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Designed a simple, single page web app that can be accessed both from mobile and desktop thereby catering to a large user group.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Customization at its core made possible through advanced filter options like cuisines, diet, likes and dislikes.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Constant improvement of the database through user feedback and input enabled by collecting data through Google Form where users can add dishes they wish to see in the generator.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Returning user percentage improved through cache data and status management so as to ensure users get tailor made results even without signing up.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"User engagement enhanced through illustrations and interactive UI elements.\"})})]})})},tgyy4aWUV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Intuitive and easy to user interface was achieved through simple interactive questionnaire type of user flow.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Aimed at catering to masses including the non tech savvy users the app was designed in a minimalist style reducing the cognitive load.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Key features like choosing which time of the day they feel unsafe helps travellers decide on what time to travel through that specific location.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Anonymous reporting improves privacy thereby encouraging more users to use the app.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Reliability and trust enhanced by showing the reason behind a location being marked RED. \"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Moderator addition enhances credibility of the data shared with users as the data is sensitive.\"})})]})})}},baseVariant,gestureVariant)})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lotffh\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"K9sOjpok5\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6bqayy\",layoutDependency:layoutDependency,layoutId:\"F_YyCbZOj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\"},children:\"UX Design Projects\"})}),className:\"framer-1ylgxis\",fonts:[\"GF;Playfair Display-600\"],layoutDependency:layoutDependency,layoutId:\"GwDBwFVMx\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ilk7o6\",layoutDependency:layoutDependency,layoutId:\"PSBIuxvj0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8hxm1y\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"oddVAbpS5\",onTap:onTap1dtdujm,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-z61sav\",\"data-framer-name\":\"Graphic\",fill:\"rgb(52, 52, 52)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"mWDluEfNc\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"m313-440 224 224-57 56-320-320 320-320 57 56-224 224h487v80H313Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 33, 33))\"},children:\"1\"})}),className:\"framer-169l3db\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JbXqF6S80\",onTap:onTap1wjdqww,style:{\"--extracted-r6o4lv\":\"rgb(33, 33, 33)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"2\"})}),className:\"framer-16s64h9\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ldi0aeqZ5\",onTap:onTap1dtdujm,style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(131, 82, 245))\"},children:\"3\"})}),className:\"framer-1rssz4z\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MKh4V4Z3l\",onTap:onTap103s6t,style:{\"--extracted-r6o4lv\":\"rgb(131, 82, 245)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"4\"})}),className:\"framer-pw4cab\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JyKxzat3x\",onTap:onTapm16wx2,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"5\"})}),className:\"framer-i71gnq\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"l6FNg_5n7\",onTap:onTap1wvfviy,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12ifcyu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"PYwyfWUzB\",onTap:onTapm16wx2,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gf3vax\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"ScI9gBQhE\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z\"/></svg>',withExternalLayout:true})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d0prtw\",\"data-border\":true,\"data-framer-name\":\"UXDESIGNPROJECTS\",layoutDependency:layoutDependency,layoutId:\"hPVEuoouP\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-uipfmg\",layoutDependency:layoutDependency,layoutId:\"zrIt6SKE7\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2824,pixelWidth:3765,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif\",srcSet:\"https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif?scale-down-to=512 512w,https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif?scale-down-to=2048 2048w,https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif 3765w\"},className:\"framer-14tvnwj\",layoutDependency:layoutDependency,layoutId:\"fxV0Yllwz\",...addPropertyOverrides({xxZf9hYyV:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1636.5)-0-2068.2)/2+45+0)+40+0+0+351.2),pixelHeight:2824,pixelWidth:3765,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.8 - 80px)`,src:\"https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif\",srcSet:\"https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif?scale-down-to=512 512w,https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif?scale-down-to=2048 2048w,https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif 3765w\"}}},baseVariant,gestureVariant),children:isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-33xrdc-container\",layoutDependency:layoutDependency,layoutId:\"Zv7uw3QzV-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(255, 255, 255, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Zv7uw3QzV\",isMixedBorderRadius:false,layoutId:\"Zv7uw3QzV\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/65epSSBk33Tq9kMSp8dzHdGazI.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rv1up1\",layoutDependency:layoutDependency,layoutId:\"J9LBaeBCQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\"},children:\"GENERATEMYMEAL.COM\"})}),className:\"framer-pc6ea9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"R_EGqyAg7\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS01MDBpdGFsaWM=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(201, 74, 28))\"},children:\"Re-inventing the wheel of daily decision making on what to cook though a web app design\"})}),className:\"framer-1xk7ci\",fonts:[\"GF;Playfair Display-500italic\"],layoutDependency:layoutDependency,layoutId:\"umupfeMV5\",style:{\"--extracted-r6o4lv\":\"rgb(201, 74, 28)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Role: UI/UX Designer    Timeline: Apr 2024 - May 2024    \"})}),className:\"framer-1r67jef\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"tyOblFhK6\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gIdVAze65\"},nodeId:\"O7uoeQ7sB\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-2uybva framer-h1o5mo\",layoutDependency:layoutDependency,layoutId:\"O7uoeQ7sB\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLWl0YWxpYw==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-style\":\"italic\"},children:\"View Case Study\"})}),className:\"framer-1xy5xhl\",fonts:[\"GF;Instrument Sans-italic\"],layoutDependency:layoutDependency,layoutId:\"a5DWkFlMX\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3nkqws\",\"data-framer-name\":\"Graphic\",fill:\"rgb(85, 0, 255)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"wHzGTMgZI\",style:{rotate:-45},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z\"/></svg>',withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wzug70\",layoutDependency:layoutDependency,layoutId:\"VgveXZeF4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k97br2\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"VEJhIkV3V\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"WHAT ?\"})}),className:\"framer-4t92r3\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"wAd7m802y\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Every individual does a lot of decision making on a daily basis of which deciding what to cook or eat is an inevitable part of the day which is time consuming and confusing.\"})}),className:\"framer-1y6xfxm\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"ZywiMsQ9N\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15gxqon\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"ldh6iMRVf\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"WHY ?\"})}),className:\"framer-lpklfl\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"JombsRVul\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"User research, interviews , competitive analysis revealed various insights and paint points which includes\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Deciding a meal for at least three times a day frustrates the users more than the cooking process itself.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Existing apps do not solve the exact problem of helping in decision making rather they focus on planning.\"})})]})]}),className:\"framer-1c73375\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"rZwyIXggT\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1514oaf\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"kDGM4g4SQ\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"HOW ?\"})}),className:\"framer-17x0z1w\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"pjapYKNKt\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Designed a simple, single page web app that can be accessed both from mobile and desktop thereby catering to a large user group.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Customization at its core made possible through advanced filter options like cuisines, diet, likes and dislikes.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Constant improvement of the database through user feedback and input enabled by collecting data through Google Form where users can add dishes they wish to see in the generator.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Returning user percentage improved through cache data and status management so as to ensure users get tailor made results even without signing up.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"User engagement enhanced through illustrations and interactive UI elements.\"})})]})}),className:\"framer-nfycj5\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"N80I2zo7A\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fif4i4\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"D_UlxcRXf\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-yapbnc\",layoutDependency:layoutDependency,layoutId:\"VmN3MaBMS\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\"},children:\"UX Design Projects\"})}),className:\"framer-8b1wnx\",fonts:[\"GF;Playfair Display-600\"],layoutDependency:layoutDependency,layoutId:\"RW5pmrNRt\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qfn20b\",layoutDependency:layoutDependency,layoutId:\"qpe46Hh3_\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-i0a69d\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"J5xEzum0t\",onTap:onTap103s6t,...addPropertyOverrides({UmjK4WGsR:{onTap:onTapm16wx2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15f0l6s\",\"data-framer-name\":\"Graphic\",fill:\"rgb(6, 6, 6)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"ZSldGsSg6\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"m313-440 224 224-57 56-320-320 320-320 57 56-224 224h487v80H313Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(38, 38, 38))\"},children:\"1\"})}),className:\"framer-g9r410\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OIfSNhYXf\",onTap:onTap1wjdqww,style:{\"--extracted-r6o4lv\":\"rgb(38, 38, 38)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"2\"})}),className:\"framer-5zz8ki\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dv5amOjV9\",onTap:onTap1dtdujm,style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"3\"})}),className:\"framer-1x485ec\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qwiAq2MgO\",onTap:onTap103s6t,style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 84, 255))\"},children:\"4\"})}),className:\"framer-rvr6ly\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vqEoLCAKf\",onTap:onTapm16wx2,style:{\"--extracted-r6o4lv\":\"rgb(136, 84, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"4\"})}),className:\"framer-29qhep\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"g_Lbf6M9y\",onTap:onTapm16wx2,style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 84, 255))\"},children:\"4\"})}),className:\"framer-k3tvaa\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rdez8C3Sy\",onTap:onTapm16wx2,style:{\"--extracted-r6o4lv\":\"rgb(136, 84, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{kmfiPctYv:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kmfiPctYv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"5\"})}),onTap:onTap1wvfviy},UmjK4WGsR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 84, 255))\"},children:\"5\"})}),onTap:onTap1wvfviy}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kahv97\",layoutDependency:layoutDependency,layoutId:\"V63THuzsa\",...addPropertyOverrides({kmfiPctYv:{\"data-highlight\":true,onTap:onTap1wvfviy}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vlwijs\",\"data-framer-name\":\"Graphic\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"ilXcZXgmw\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z\"/></svg>',withExternalLayout:true,...addPropertyOverrides({kmfiPctYv:{fill:\"rgb(6, 6, 6)\"}},baseVariant,gestureVariant)})})]})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7jivln\",\"data-border\":true,\"data-framer-name\":\"UXDESIGNPROJECTS\",layoutDependency:layoutDependency,layoutId:\"JO2e2GSeY\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-1cprij4\",layoutDependency:layoutDependency,layoutId:\"SkFuWQNqI\",children:[/*#__PURE__*/_jsx(Image,{className:\"framer-vanemq\",layoutDependency:layoutDependency,layoutId:\"KfznsKKRw\",style:{backgroundColor:\"rgb(255, 255, 255)\"},variants:{UmjK4WGsR:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({UmjK4WGsR:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1636.5)-0-2068.2)/2+45+0)+40+0+0+351.2),pixelHeight:1440,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.8 - 80px)`,src:\"https://framerusercontent.com/images/rpeSPjkjKsnc2pPRLe78GHQcRVo.jpg\",srcSet:\"https://framerusercontent.com/images/rpeSPjkjKsnc2pPRLe78GHQcRVo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rpeSPjkjKsnc2pPRLe78GHQcRVo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rpeSPjkjKsnc2pPRLe78GHQcRVo.jpg 1920w\"}}},baseVariant,gestureVariant),children:isDisplayed8()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-66lsyk-container\",layoutDependency:layoutDependency,layoutId:\"OpsFqE7Ug-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(255, 255, 255, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"OpsFqE7Ug\",isMixedBorderRadius:false,layoutId:\"OpsFqE7Ug\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/MCwuZOej3rLS7QkreBmdyCbl0g.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-121hjox\",layoutDependency:layoutDependency,layoutId:\"ARYbv7UCK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\"},children:\"RED APP\"})}),className:\"framer-ipyf3y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kpf5Aggnw\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UmjK4WGsR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\"},children:\"UX REDESIGN\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS01MDBpdGFsaWM=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(166, 0, 0))\"},children:\"Ensuring safety for all though helping people take informed decisions while travelling\"})}),className:\"framer-buomx7\",fonts:[\"GF;Playfair Display-500italic\"],layoutDependency:layoutDependency,layoutId:\"ki5PyXMoV\",style:{\"--extracted-r6o4lv\":\"rgb(166, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{UmjK4WGsR:{\"--extracted-r6o4lv\":\"rgb(55, 102, 95)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UmjK4WGsR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS01MDBpdGFsaWM=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(55, 102, 95))\"},children:\"Enhancing social awareness about accessibility and improving user experience through feature suggestions\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Role: UI/UX Designer    Timeline: Mar 2024 - Apr 2024    \"})}),className:\"framer-dtjb80\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"jx9uaJ9qG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UmjK4WGsR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Role: UI/UX Designer    Timeline: May 2024 - Dec 2024    \"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dr6ag3ONb\"},nodeId:\"o1EHPKRkO\",...addPropertyOverrides({UmjK4WGsR:{href:{webPageId:\"l3SxS0YC6\"},openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-k05pz9 framer-h1o5mo\",layoutDependency:layoutDependency,layoutId:\"o1EHPKRkO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLWl0YWxpYw==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-style\":\"italic\"},children:\"View Case Study\"})}),className:\"framer-hsvs55\",fonts:[\"GF;Instrument Sans-italic\"],layoutDependency:layoutDependency,layoutId:\"y2E_lDXrW\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UmjK4WGsR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLWl0YWxpYw==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-style\":\"italic\"},children:\"View Collection\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19f1s2c\",\"data-framer-name\":\"Graphic\",fill:\"rgb(85, 0, 255)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"SINkE9a_k\",style:{rotate:-45},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z\"/></svg>',withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6yh37i\",layoutDependency:layoutDependency,layoutId:\"ROKA1HkNk\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-199p7rx\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"zp3ckD6XM\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"WHAT ?\"})}),className:\"framer-1ido8r7\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"dyKKcjikt\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Every individual travelling in any part of the world feels unsafe at some specific locations due to various factors. Helping them take informed decision is the goal.\"})}),className:\"framer-1p19isi\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"BPWdMqnF9\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UmjK4WGsR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"An initiative to advocate usability and accessibility of websites, apps, softwares through social media posts that focus on enhancing user experience.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kelhu9\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"KUMOXFdwV\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"WHY ?\"})}),className:\"framer-aewbbg\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"mOyN1ISsc\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"User research, user interviews  and competitive analysis revealed various valuable insights which includes\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"People belonging to vulnerable groups expressed a heightened awareness of safety in unfamiliar environments.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"People often rely on family and friends to know how safe is a place to travel which is a limited resource.\"})})]})]}),className:\"framer-gs7mav\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"GGo7Ryo58\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UmjK4WGsR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Secondary user research and UX audit helped in identifying user pain points such as\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Difficulty in performing primary action of a website affects user engagement \"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Inconsistencies in user interface and features across different platforms of a website\"})})]})]})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tp4upb\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"ffc1BXbv4\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"HOW ?\"})}),className:\"framer-hpplxx\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"TtDskcLcO\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Intuitive and easy to user interface was achieved through simple interactive questionnaire type of user flow.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Aimed at catering to masses including the non tech savvy users the app was designed in a minimalist style reducing the cognitive load.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Key features like choosing which time of the day they feel unsafe helps travellers decide on what time to travel through that specific location.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Anonymous reporting improves privacy thereby encouraging more users to use the app.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Reliability and trust enhanced by showing the reason behind a location being marked RED. \"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Moderator addition enhances credibility of the data shared with users as the data is sensitive.\"})})]})}),className:\"framer-1yhfmiz\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Ttn5i25d7\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UmjK4WGsR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Feature suggestion of implementing visible scroll bars to improve accessibility for users with disabilities or those using assistive technologies was acknowledged by the LinkedIn Team for consideration in the future product updates.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Feature suggestions made to improve user engagement through redesigning of \u201Ccreate a post\u201D button placement on LinkedIn.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Feature suggestion of maintaining consistency across platform with regards to \u201CAdd a note\u201D option while sending Connect request on LinkedIn was acknowledged by the LinkedIn Team as feedback.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Sort option placement on Youtube was redesigned and suggested to be placed next to filters to make it easily accessible and discoverable.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Option to replace image was made as a suggestion to the X team to enhance user experience while posting.\"})})]})})}},baseVariant,gestureVariant)})]})]})]}),isDisplayed9()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bk5o83\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"a4T2WQ38Z\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18r76ym\",layoutDependency:layoutDependency,layoutId:\"BDODfT6N2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\"},children:\"UX Design Projects\"})}),className:\"framer-yv9t50\",fonts:[\"GF;Playfair Display-600\"],layoutDependency:layoutDependency,layoutId:\"b77secGYj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q8edyp\",layoutDependency:layoutDependency,layoutId:\"vJSTQqeMm\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hi65ol\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"FTON5Bc59\",onTap:onTappg2mk0,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vg68ix\",\"data-framer-name\":\"Graphic\",fill:\"rgb(85, 85, 85)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"H86hR6_WW\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"m313-440 224 224-57 56-320-320 320-320 57 56-224 224h487v80H313Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(20, 20, 20))\"},children:\"1\"})}),className:\"framer-1f1pltm\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I5UlQCLlC\",onTap:onTappg2mk0,style:{\"--extracted-r6o4lv\":\"rgb(20, 20, 20)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(131, 82, 245))\"},children:\"2\"})}),className:\"framer-23r8hs\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QItIFbP1m\",onTap:onTap16eijn3,style:{\"--extracted-r6o4lv\":\"rgb(131, 82, 245)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"3\"})}),className:\"framer-eouum8\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DhGeFgEWg\",onTap:onTap1g62yvo,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"4\"})}),className:\"framer-b715qs\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZaWelA0GD\",onTap:onTapmz77n0,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"5\"})}),className:\"framer-15fuabk\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NTNDbSgxJ\",onTap:onTap1bq4r3z,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-164zj2i\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vADXCVnNB\",onTap:onTap1g62yvo,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1u1q0qf\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"ROW2z6cle\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z\"/></svg>',withExternalLayout:true})})]})]}),isDisplayed9()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bgds55\",\"data-border\":true,\"data-framer-name\":\"UXDESIGNPROJECTS\",layoutDependency:layoutDependency,layoutId:\"ok7AOYmDy\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-vx9q66\",layoutDependency:layoutDependency,layoutId:\"qheGb8u4Q\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tvvgcd\",layoutDependency:layoutDependency,layoutId:\"efM_FvtBy\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-817yi4-container\",layoutDependency:layoutDependency,layoutId:\"sxZ53mIfs-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(255, 255, 255, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"sxZ53mIfs\",isMixedBorderRadius:false,layoutId:\"sxZ53mIfs\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/B4vjon69aSehG2PwyFsNubD2Uc.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ch43wm\",layoutDependency:layoutDependency,layoutId:\"X_u1Yh1HH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\"},children:\"CANDLEMONK.COM\"})}),className:\"framer-h18kf9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mewTj2mKr\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS01MDBpdGFsaWM=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(209, 153, 69))\"},children:\"Enhanced User Engagement by 4% in the comments section of a blogging website through intuitive redesign\"})}),className:\"framer-tmioeo\",fonts:[\"GF;Playfair Display-500italic\"],layoutDependency:layoutDependency,layoutId:\"Glyse_qe9\",style:{\"--extracted-r6o4lv\":\"rgb(209, 153, 69)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Role: UI/UX Designer    \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Timeline: Feb 2024 -Apr 2024    \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Client: Candlemonk.com\"})]}),className:\"framer-14rek2b\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Giu0WaR4A\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fIr_YBzAW\"},nodeId:\"QwKPgjNQo\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1e7drjb framer-h1o5mo\",layoutDependency:layoutDependency,layoutId:\"QwKPgjNQo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLWl0YWxpYw==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-style\":\"italic\"},children:\"View Case Study\"})}),className:\"framer-i15l40\",fonts:[\"GF;Instrument Sans-italic\"],layoutDependency:layoutDependency,layoutId:\"o_q45IkXv\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1fqfh9h\",\"data-framer-name\":\"Graphic\",fill:\"rgb(85, 0, 255)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"AtwjQt_YR\",style:{rotate:-45},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z\"/></svg>',withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17svpyp\",layoutDependency:layoutDependency,layoutId:\"L30K_oveO\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1taen0\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"BKWG6F23_\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"WHAT ?\"})}),className:\"framer-18jan41\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"tmfmAAApO\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Blogging website had lower user engagement. A new design for mobile app following the brand guidelines had to be created along with redesign of the existing website.\"})}),className:\"framer-1dqbx71\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"YaA3AoIKc\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mrglrj\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"gdb2AHz18\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"WHY ?\"})}),className:\"framer-iyxz2w\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"KF2MdO5CO\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"User research, interviews , competitive analysis revealed various insights about the existing system which includes\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Distracted due to lengthy comments section, often making it difficult to access blogs.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Bookmarked list often being abandoned , thereby returning users percentage is lower.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Unable to easily find blogs written by same author.\"})})]})]}),className:\"framer-2em48j\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"LBIsECEUN\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4je5cl\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"d9kypD0FW\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"HOW ?\"})}),className:\"framer-4asxs9\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"f0jDpCVv0\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Redesigned the comments section with a filter options to show comments based on user preference through simplified and intuitive UI.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Introduced Your reading list section along with recommendations thereby reminding while also encouraging users to read the blogs they have already bookmarked.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Improved market penetration and user engagement through Line Sharing to social media feature where users can select the lines or wordings they like and share it with ease across social media platforms through a single click action.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"User retention was increased by adding By the same author section.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Reminder notifications were designed for mobile app to improve user engagement.\"})})]})}),className:\"framer-1q4zh97\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"PSzEqSBIK\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed10()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ej57x0\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"uU4yRx4wO\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pjnzoy\",layoutDependency:layoutDependency,layoutId:\"mwOkQbYad\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\"},children:\"UX Design Projects\"})}),className:\"framer-1ml78vy\",fonts:[\"GF;Playfair Display-600\"],layoutDependency:layoutDependency,layoutId:\"in0CFkafC\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ghanh6\",layoutDependency:layoutDependency,layoutId:\"eSh3wMSCo\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jir9ej\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qRSmYsuTo\",onTap:onTap16eijn3,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1h3a4dh\",\"data-framer-name\":\"Graphic\",fill:\"rgb(52, 52, 52)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"jFuYecbOV\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"m313-440 224 224-57 56-320-320 320-320 57 56-224 224h487v80H313Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 33, 33))\"},children:\"1\"})}),className:\"framer-16mwv0z\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dNCMly8Cs\",onTap:onTappg2mk0,style:{\"--extracted-r6o4lv\":\"rgb(33, 33, 33)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"2\"})}),className:\"framer-11cbdsl\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sjgAm7JwT\",onTap:onTap16eijn3,style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(131, 82, 245))\"},children:\"3\"})}),className:\"framer-p4nsrm\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"U84HRxaxO\",onTap:onTap1g62yvo,style:{\"--extracted-r6o4lv\":\"rgb(131, 82, 245)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"4\"})}),className:\"framer-1v1pqml\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MMjwJoLf3\",onTap:onTapmz77n0,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"5\"})}),className:\"framer-133bpsj\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pwWkWXQzi\",onTap:onTap1bq4r3z,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l4oi9z\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"lGX60xLbI\",onTap:onTapmz77n0,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-e9n62x\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"gsLWU1463\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z\"/></svg>',withExternalLayout:true})})]})]}),isDisplayed10()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y03ad5\",\"data-border\":true,\"data-framer-name\":\"UXDESIGNPROJECTS\",layoutDependency:layoutDependency,layoutId:\"fYEiQVoN6\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-19xcyw7\",layoutDependency:layoutDependency,layoutId:\"wm46WLI8d\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2824,pixelWidth:3765,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif\",srcSet:\"https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif?scale-down-to=512 512w,https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif?scale-down-to=2048 2048w,https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif 3765w\"},className:\"framer-1dvf3rb\",layoutDependency:layoutDependency,layoutId:\"ktCj85WwS\",...addPropertyOverrides({KwSJdVK8Q:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||2034.5)-0-2485.6)/2+97.6+0)+40+0+0+716),pixelHeight:2824,pixelWidth:3765,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif\",srcSet:\"https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif?scale-down-to=512 512w,https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif?scale-down-to=2048 2048w,https://framerusercontent.com/images/v28ArhHzjnt2zb95pwC0LW4s.gif 3765w\"}}},baseVariant,gestureVariant),children:isDisplayed11()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dwk6sx-container\",layoutDependency:layoutDependency,layoutId:\"dYOT_lRiR-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(255, 255, 255, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"dYOT_lRiR\",isMixedBorderRadius:false,layoutId:\"dYOT_lRiR\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/65epSSBk33Tq9kMSp8dzHdGazI.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ivd9qt\",layoutDependency:layoutDependency,layoutId:\"RReoYV1yJ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\"},children:\"GENERATEMYMEAL.COM\"})}),className:\"framer-h5d7l7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZVozxOGex\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS01MDBpdGFsaWM=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(201, 74, 28))\"},children:\"Re-inventing the wheel of daily decision making on what to cook though a web app design\"})}),className:\"framer-1h64b96\",fonts:[\"GF;Playfair Display-500italic\"],layoutDependency:layoutDependency,layoutId:\"bxzzJL54X\",style:{\"--extracted-r6o4lv\":\"rgb(201, 74, 28)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Role: UI/UX Designer    \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Timeline: Apr 2024 - May 2024\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]}),className:\"framer-1hxfzh7\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"bGdfcyFoB\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gIdVAze65\"},nodeId:\"fnPRbiQjQ\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-jec05q framer-h1o5mo\",layoutDependency:layoutDependency,layoutId:\"fnPRbiQjQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLWl0YWxpYw==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-style\":\"italic\"},children:\"View Case Study\"})}),className:\"framer-ncungd\",fonts:[\"GF;Instrument Sans-italic\"],layoutDependency:layoutDependency,layoutId:\"LPclY7LaM\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vg5z49\",\"data-framer-name\":\"Graphic\",fill:\"rgb(85, 0, 255)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"hAKPRhrJk\",style:{rotate:-45},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z\"/></svg>',withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-417xpp\",layoutDependency:layoutDependency,layoutId:\"YZ1QFydXT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12vu399\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"m4C7_6RAd\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"WHAT ?\"})}),className:\"framer-1oqnwu8\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"I5hTz9zSB\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Every individual does a lot of decision making on a daily basis of which deciding what to cook or eat is an inevitable part of the day which is time consuming and confusing.\"})}),className:\"framer-1stp22t\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"kl7GaAzNS\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nzpir6\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"Tb72EW53m\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"WHY ?\"})}),className:\"framer-1s2jl5g\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"iSx4pUK5_\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"User research, interviews , competitive analysis revealed various insights and paint points which includes\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Deciding a meal for at least three times a day frustrates the users more than the cooking process itself.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Existing apps do not solve the exact problem of helping in decision making rather they focus on planning.\"})})]})]}),className:\"framer-1rbfuk1\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"KoiAYpGX9\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mo0zue\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"NvZbePNrD\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"HOW ?\"})}),className:\"framer-1170rc2\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"FyNiiB_PE\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Designed a simple, single page web app that can be accessed both from mobile and desktop thereby catering to a large user group.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Customization at its core made possible through advanced filter options like cuisines, diet, likes and dislikes.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Constant improvement of the database through user feedback and input enabled by collecting data through Google Form where users can add dishes they wish to see in the generator.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Returning user percentage improved through cache data and status management so as to ensure users get tailor made results even without signing up.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"User engagement enhanced through illustrations and interactive UI elements.\"})})]})}),className:\"framer-8zpg5q\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"uL6GJieB3\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed12()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nmpl6m\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"oaZT1miAn\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ipwmtn\",layoutDependency:layoutDependency,layoutId:\"xhjXNZApk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\"},children:\"UX Design Projects\"})}),className:\"framer-e56a9s\",fonts:[\"GF;Playfair Display-600\"],layoutDependency:layoutDependency,layoutId:\"JM9bPL7Az\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mqp8d8\",layoutDependency:layoutDependency,layoutId:\"HJP5noXD2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-uumiyy\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ICbZbEbQT\",onTap:onTap1g62yvo,...addPropertyOverrides({NFaweCgeE:{onTap:onTapmz77n0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-f9lgm4\",\"data-framer-name\":\"Graphic\",fill:\"rgb(6, 6, 6)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"AKaHvxE2f\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"m313-440 224 224-57 56-320-320 320-320 57 56-224 224h487v80H313Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(38, 38, 38))\"},children:\"1\"})}),className:\"framer-hj9j5s\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bcszvHrnV\",onTap:onTappg2mk0,style:{\"--extracted-r6o4lv\":\"rgb(38, 38, 38)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"2\"})}),className:\"framer-w8ex4\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"m0KVjSYHB\",onTap:onTap16eijn3,style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"3\"})}),className:\"framer-1forho8\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XDnKU3pEH\",onTap:onTap1g62yvo,style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 84, 255))\"},children:\"4\"})}),className:\"framer-190bwmd\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AkIgm3GxI\",onTap:onTapmz77n0,style:{\"--extracted-r6o4lv\":\"rgb(136, 84, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NFaweCgeE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"4\"})})}},baseVariant,gestureVariant)}),isDisplayed13()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"5\"})}),className:\"framer-flxpx4\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZtwJVCUxT\",onTap:onTap1bq4r3z,style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed14()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 84, 255))\"},children:\"5\"})}),className:\"framer-1yx9com\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oskJtz0gw\",onTap:onTap1bq4r3z,style:{\"--extracted-r6o4lv\":\"rgb(136, 84, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-amrur5\",layoutDependency:layoutDependency,layoutId:\"oagtJHKSB\",...addPropertyOverrides({xhvTcDXRP:{\"data-highlight\":true,onTap:onTap1bq4r3z}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-p22fv4\",\"data-framer-name\":\"Graphic\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"T0YeXy54h\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z\"/></svg>',withExternalLayout:true,...addPropertyOverrides({xhvTcDXRP:{fill:\"rgb(6, 6, 6)\"}},baseVariant,gestureVariant)})})]})]}),isDisplayed12()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17oci8e\",\"data-border\":true,\"data-framer-name\":\"UXDESIGNPROJECTS\",layoutDependency:layoutDependency,layoutId:\"C77mA_GI7\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-597xya\",layoutDependency:layoutDependency,layoutId:\"QrTMZuJza\",children:[/*#__PURE__*/_jsx(Image,{className:\"framer-us9quq\",layoutDependency:layoutDependency,layoutId:\"urrSAcODG\",style:{backgroundColor:\"rgb(255, 255, 255)\"},variants:{NFaweCgeE:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({NFaweCgeE:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||2073)-0-2389.6)/2+97.6+0)+40+0+0+620),pixelHeight:1440,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/rpeSPjkjKsnc2pPRLe78GHQcRVo.jpg\",srcSet:\"https://framerusercontent.com/images/rpeSPjkjKsnc2pPRLe78GHQcRVo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rpeSPjkjKsnc2pPRLe78GHQcRVo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rpeSPjkjKsnc2pPRLe78GHQcRVo.jpg 1920w\"}}},baseVariant,gestureVariant),children:isDisplayed15()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10sdp90-container\",layoutDependency:layoutDependency,layoutId:\"NuhIKHVOI-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(255, 255, 255, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"NuhIKHVOI\",isMixedBorderRadius:false,layoutId:\"NuhIKHVOI\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/MCwuZOej3rLS7QkreBmdyCbl0g.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v3dkhi\",layoutDependency:layoutDependency,layoutId:\"yfhYO04z7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\"},children:\"RED APP\"})}),className:\"framer-1mzeohc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PytUzx8ln\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NFaweCgeE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\"},children:\"UX REDESIGN\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS01MDBpdGFsaWM=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(166, 0, 0))\"},children:\"Ensuring safety for all though helping people take informed decisions while travelling\"})}),className:\"framer-1k878r4\",fonts:[\"GF;Playfair Display-500italic\"],layoutDependency:layoutDependency,layoutId:\"cnrNUdbEH\",style:{\"--extracted-r6o4lv\":\"rgb(166, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{NFaweCgeE:{\"--extracted-r6o4lv\":\"rgb(55, 102, 95)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NFaweCgeE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS01MDBpdGFsaWM=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(55, 102, 95))\"},children:\"Enhancing social awareness about accessibility and improving user experience through feature suggestions\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Role: UI/UX Designer    \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Timeline: Mar 2024 - Apr 2024    \"})]}),className:\"framer-1plcaum\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"C382RLn0p\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NFaweCgeE:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Role: UI/UX Designer    \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Timeline: May 2024 - Dec 2024    \"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dr6ag3ONb\"},nodeId:\"UW8__ggOP\",...addPropertyOverrides({NFaweCgeE:{href:{webPageId:\"l3SxS0YC6\"},openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-qxjifz framer-h1o5mo\",layoutDependency:layoutDependency,layoutId:\"UW8__ggOP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLWl0YWxpYw==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-style\":\"italic\"},children:\"View Case Study\"})}),className:\"framer-1m51tat\",fonts:[\"GF;Instrument Sans-italic\"],layoutDependency:layoutDependency,layoutId:\"Z5bqsHCei\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NFaweCgeE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLWl0YWxpYw==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-style\":\"italic\"},children:\"View Collection\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1m05pp4\",\"data-framer-name\":\"Graphic\",fill:\"rgb(85, 0, 255)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"vPbc2XHnQ\",style:{rotate:-45},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"undefined\"><path d=\"M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z\"/></svg>',withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jqxc6p\",layoutDependency:layoutDependency,layoutId:\"RTT01eC4S\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iq2r8a\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"i9Qgyxc2e\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"WHAT ?\"})}),className:\"framer-1xc21j5\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"xNd5UI4Nj\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Every individual travelling in any part of the world feels unsafe at some specific locations due to various factors. Helping them take informed decision is the goal.\"})}),className:\"framer-1vjfpon\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"dCvay8JQU\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NFaweCgeE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"An initiative to advocate usability and accessibility of websites, apps, softwares through social media posts that focus on enhancing user experience.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-57q68i\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"LAiS6WPFS\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"WHY ?\"})}),className:\"framer-1lzat3e\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"EnhvvnvG3\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"User research, user interviews  and competitive analysis revealed various valuable insights which includes\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"People belonging to vulnerable groups expressed a heightened awareness of safety in unfamiliar environments.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"People often rely on family and friends to know how safe is a place to travel which is a limited resource.\"})})]})]}),className:\"framer-lz48o5\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"N2hyjX19a\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NFaweCgeE:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:\"Secondary user research and UX audit helped in identifying user pain points such as\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Difficulty in performing primary action of a website affects user engagement \"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Inconsistencies in user interface and features across different platforms of a website\"})})]})]})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6wamt1\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"Z7k5UnXMd\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"HOW ?\"})}),className:\"framer-w9ayao\",fonts:[\"GF;Playfair Display-700\"],layoutDependency:layoutDependency,layoutId:\"XH7Rrmnh6\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Intuitive and easy to user interface was achieved through simple interactive questionnaire type of user flow.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Aimed at catering to masses including the non tech savvy users the app was designed in a minimalist style reducing the cognitive load.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Key features like choosing which time of the day they feel unsafe helps travellers decide on what time to travel through that specific location.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Anonymous reporting improves privacy thereby encouraging more users to use the app.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Reliability and trust enhanced by showing the reason behind a location being marked RED. \"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Moderator addition enhances credibility of the data shared with users as the data is sensitive.\"})})]})}),className:\"framer-zq2k6q\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"ViISiE1bM\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NFaweCgeE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ol,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif'},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Feature suggestion of implementing visible scroll bars to improve accessibility for users with disabilities or those using assistive technologies was acknowledged by the LinkedIn Team for consideration in the future product updates.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Feature suggestions made to improve user engagement through redesigning of \u201Ccreate a post\u201D button placement on LinkedIn.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Feature suggestion of maintaining consistency across platform with regards to \u201CAdd a note\u201D option while sending Connect request on LinkedIn was acknowledged by the LinkedIn Team as feedback.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Sort option placement on Youtube was redesigned and suggested to be placed next to filters to make it easily accessible and discoverable.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Option to replace image was made as a suggestion to the X team to enhance user experience while posting.\"})})]})})}},baseVariant,gestureVariant)})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AFQTi.framer-h1o5mo, .framer-AFQTi .framer-h1o5mo { display: block; }\",\".framer-AFQTi.framer-1mq3ds { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-AFQTi .framer-1lr7fq7, .framer-AFQTi .framer-104vfex, .framer-AFQTi .framer-1lotffh, .framer-AFQTi .framer-fif4i4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 8px 40px 8px 40px; position: relative; width: 100%; }\",\".framer-AFQTi .framer-1ei3s6q, .framer-AFQTi .framer-1sqsuij, .framer-AFQTi .framer-6bqayy, .framer-AFQTi .framer-yapbnc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-AFQTi .framer-1uxuwad, .framer-AFQTi .framer-1wyg6xg, .framer-AFQTi .framer-uefqyi, .framer-AFQTi .framer-1oaj7c6, .framer-AFQTi .framer-rp5cv2, .framer-AFQTi .framer-4tprs7, .framer-AFQTi .framer-1hlsgha, .framer-AFQTi .framer-1oyuza5, .framer-AFQTi .framer-9ffrm4, .framer-AFQTi .framer-1i8skcz, .framer-AFQTi .framer-14nc58r, .framer-AFQTi .framer-hg1p86, .framer-AFQTi .framer-66t6sk, .framer-AFQTi .framer-1muzi9n, .framer-AFQTi .framer-tkgtae, .framer-AFQTi .framer-1ylgxis, .framer-AFQTi .framer-pc6ea9, .framer-AFQTi .framer-1r67jef, .framer-AFQTi .framer-1xy5xhl, .framer-AFQTi .framer-4t92r3, .framer-AFQTi .framer-lpklfl, .framer-AFQTi .framer-17x0z1w, .framer-AFQTi .framer-8b1wnx, .framer-AFQTi .framer-ipyf3y, .framer-AFQTi .framer-dtjb80, .framer-AFQTi .framer-hsvs55, .framer-AFQTi .framer-1ido8r7, .framer-AFQTi .framer-aewbbg, .framer-AFQTi .framer-hpplxx, .framer-AFQTi .framer-yv9t50, .framer-AFQTi .framer-h18kf9, .framer-AFQTi .framer-i15l40, .framer-AFQTi .framer-18jan41, .framer-AFQTi .framer-iyxz2w, .framer-AFQTi .framer-4asxs9, .framer-AFQTi .framer-1ml78vy, .framer-AFQTi .framer-h5d7l7, .framer-AFQTi .framer-ncungd, .framer-AFQTi .framer-1oqnwu8, .framer-AFQTi .framer-1s2jl5g, .framer-AFQTi .framer-1170rc2, .framer-AFQTi .framer-e56a9s, .framer-AFQTi .framer-1mzeohc, .framer-AFQTi .framer-1m51tat, .framer-AFQTi .framer-1xc21j5, .framer-AFQTi .framer-1lzat3e, .framer-AFQTi .framer-w9ayao { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AFQTi .framer-14h2q2g, .framer-AFQTi .framer-9jhm8v, .framer-AFQTi .framer-1ilk7o6, .framer-AFQTi .framer-1qfn20b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 29px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-AFQTi .framer-vaf8gj, .framer-AFQTi .framer-11hf55f, .framer-AFQTi .framer-1df3tx7, .framer-AFQTi .framer-8hxm1y, .framer-AFQTi .framer-12ifcyu, .framer-AFQTi .framer-i0a69d, .framer-AFQTi .framer-1hi65ol, .framer-AFQTi .framer-164zj2i, .framer-AFQTi .framer-jir9ej, .framer-AFQTi .framer-l4oi9z, .framer-AFQTi .framer-uumiyy { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 25px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 24px; }\",\".framer-AFQTi .framer-15a2vmn, .framer-AFQTi .framer-z61sav, .framer-AFQTi .framer-15f0l6s, .framer-AFQTi .framer-vg68ix, .framer-AFQTi .framer-1h3a4dh, .framer-AFQTi .framer-f9lgm4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); position: relative; width: 100%; }\",\".framer-AFQTi .framer-o8m0k8, .framer-AFQTi .framer-m16u7p, .framer-AFQTi .framer-w5uhzz, .framer-AFQTi .framer-1hiops4, .framer-AFQTi .framer-fswakc, .framer-AFQTi .framer-r83oag, .framer-AFQTi .framer-1v4k46u, .framer-AFQTi .framer-7g9b69, .framer-AFQTi .framer-j829w, .framer-AFQTi .framer-169l3db, .framer-AFQTi .framer-16s64h9, .framer-AFQTi .framer-1rssz4z, .framer-AFQTi .framer-pw4cab, .framer-AFQTi .framer-i71gnq, .framer-AFQTi .framer-g9r410, .framer-AFQTi .framer-5zz8ki, .framer-AFQTi .framer-1x485ec, .framer-AFQTi .framer-rvr6ly, .framer-AFQTi .framer-29qhep, .framer-AFQTi .framer-k3tvaa, .framer-AFQTi .framer-1f1pltm, .framer-AFQTi .framer-23r8hs, .framer-AFQTi .framer-eouum8, .framer-AFQTi .framer-b715qs, .framer-AFQTi .framer-15fuabk, .framer-AFQTi .framer-16mwv0z, .framer-AFQTi .framer-11cbdsl, .framer-AFQTi .framer-p4nsrm, .framer-AFQTi .framer-1v1pqml, .framer-AFQTi .framer-133bpsj, .framer-AFQTi .framer-hj9j5s, .framer-AFQTi .framer-w8ex4, .framer-AFQTi .framer-1forho8, .framer-AFQTi .framer-190bwmd, .framer-AFQTi .framer-flxpx4, .framer-AFQTi .framer-1yx9com { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AFQTi .framer-1leb7r4, .framer-AFQTi .framer-1i740m7, .framer-AFQTi .framer-1oscz6g, .framer-AFQTi .framer-11ozki8, .framer-AFQTi .framer-gf3vax, .framer-AFQTi .framer-3nkqws, .framer-AFQTi .framer-vlwijs, .framer-AFQTi .framer-19f1s2c, .framer-AFQTi .framer-1u1q0qf, .framer-AFQTi .framer-1fqfh9h, .framer-AFQTi .framer-e9n62x, .framer-AFQTi .framer-1vg5z49, .framer-AFQTi .framer-p22fv4, .framer-AFQTi .framer-1m05pp4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-AFQTi .framer-m3zdrn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 80%; }\",\".framer-AFQTi .framer-1b2avkn, .framer-AFQTi .framer-uipfmg, .framer-AFQTi .framer-1cprij4, .framer-AFQTi .framer-vx9q66, .framer-AFQTi .framer-19xcyw7, .framer-AFQTi .framer-597xya { 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: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AFQTi .framer-acrzoa, .framer-AFQTi .framer-125quyy, .framer-AFQTi .framer-14tvnwj, .framer-AFQTi .framer-vanemq, .framer-AFQTi .framer-1tvvgcd, .framer-AFQTi .framer-1dvf3rb, .framer-AFQTi .framer-us9quq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 380px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AFQTi .framer-1g8shg0-container { flex: none; height: 381px; position: relative; width: 100%; }\",\".framer-AFQTi .framer-vvl51s, .framer-AFQTi .framer-rv1up1, .framer-AFQTi .framer-121hjox { 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-AFQTi .framer-1e4ufgj, .framer-AFQTi .framer-11x1gp8, .framer-AFQTi .framer-1ygkj1k, .framer-AFQTi .framer-mhxe2o, .framer-AFQTi .framer-wkpfpn, .framer-AFQTi .framer-as1ti1, .framer-AFQTi .framer-oni08c, .framer-AFQTi .framer-1xk7ci, .framer-AFQTi .framer-1y6xfxm, .framer-AFQTi .framer-1c73375, .framer-AFQTi .framer-nfycj5, .framer-AFQTi .framer-buomx7, .framer-AFQTi .framer-1p19isi, .framer-AFQTi .framer-gs7mav, .framer-AFQTi .framer-1yhfmiz, .framer-AFQTi .framer-tmioeo, .framer-AFQTi .framer-1dqbx71, .framer-AFQTi .framer-2em48j, .framer-AFQTi .framer-1q4zh97, .framer-AFQTi .framer-1h64b96, .framer-AFQTi .framer-1stp22t, .framer-AFQTi .framer-1rbfuk1, .framer-AFQTi .framer-8zpg5q, .framer-AFQTi .framer-1k878r4, .framer-AFQTi .framer-1vjfpon, .framer-AFQTi .framer-lz48o5, .framer-AFQTi .framer-zq2k6q { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AFQTi .framer-j2oyng, .framer-AFQTi .framer-2uybva, .framer-AFQTi .framer-1e7drjb, .framer-AFQTi .framer-jec05q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-AFQTi .framer-1k0psx2, .framer-AFQTi .framer-1u462c4, .framer-AFQTi .framer-wzug70, .framer-AFQTi .framer-6yh37i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 420px; }\",\".framer-AFQTi .framer-11fjnoh, .framer-AFQTi .framer-1mvl1mg, .framer-AFQTi .framer-1xnx03u, .framer-AFQTi .framer-qmrfvi, .framer-AFQTi .framer-1lkxbrj, .framer-AFQTi .framer-jy5xj6, .framer-AFQTi .framer-k97br2, .framer-AFQTi .framer-15gxqon, .framer-AFQTi .framer-1514oaf, .framer-AFQTi .framer-199p7rx, .framer-AFQTi .framer-1kelhu9, .framer-AFQTi .framer-tp4upb { 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: 20px 20px 20px 40px; position: relative; width: 420px; }\",\".framer-AFQTi .framer-19vlyym, .framer-AFQTi .framer-kahv97, .framer-AFQTi .framer-amrur5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 25px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 24px; }\",\".framer-AFQTi .framer-1aosxoy { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 100%; }\",\".framer-AFQTi .framer-96qhlp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-evenly; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-AFQTi .framer-nyrx9s { 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: flex-start; overflow: hidden; padding: 0px; position: relative; width: 720px; }\",\".framer-AFQTi .framer-6gebza-container, .framer-AFQTi .framer-33xrdc-container, .framer-AFQTi .framer-66lsyk-container, .framer-AFQTi .framer-1dwk6sx-container, .framer-AFQTi .framer-10sdp90-container { flex: none; height: 381px; position: relative; width: 713px; }\",\".framer-AFQTi .framer-qulsfq { 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: 720px; }\",\".framer-AFQTi .framer-k4rkj8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 720px; word-break: break-word; word-wrap: break-word; }\",\".framer-AFQTi .framer-mt3hvu, .framer-AFQTi .framer-k05pz9, .framer-AFQTi .framer-qxjifz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 25%; }\",\".framer-AFQTi .framer-1d0prtw, .framer-AFQTi .framer-7jivln { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-evenly; overflow: hidden; padding: 40px; position: relative; width: 80%; }\",\".framer-AFQTi .framer-1bk5o83, .framer-AFQTi .framer-1ej57x0, .framer-AFQTi .framer-1nmpl6m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 8px 40px 8px 40px; position: relative; width: 100%; }\",\".framer-AFQTi .framer-18r76ym, .framer-AFQTi .framer-1pjnzoy, .framer-AFQTi .framer-ipwmtn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AFQTi .framer-1q8edyp, .framer-AFQTi .framer-1ghanh6, .framer-AFQTi .framer-mqp8d8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-AFQTi .framer-bgds55 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-AFQTi .framer-817yi4-container { aspect-ratio: 1.8713910761154855 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 176px); position: relative; width: 329px; }\",\".framer-AFQTi .framer-1ch43wm, .framer-AFQTi .framer-1ivd9qt, .framer-AFQTi .framer-1v3dkhi { 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: 300px; }\",\".framer-AFQTi .framer-14rek2b, .framer-AFQTi .framer-1hxfzh7, .framer-AFQTi .framer-1plcaum { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 300px; word-break: break-word; word-wrap: break-word; }\",\".framer-AFQTi .framer-17svpyp, .framer-AFQTi .framer-417xpp, .framer-AFQTi .framer-1jqxc6p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AFQTi .framer-1taen0, .framer-AFQTi .framer-mrglrj, .framer-AFQTi .framer-4je5cl, .framer-AFQTi .framer-12vu399, .framer-AFQTi .framer-1nzpir6, .framer-AFQTi .framer-1mo0zue, .framer-AFQTi .framer-iq2r8a, .framer-AFQTi .framer-57q68i, .framer-AFQTi .framer-6wamt1 { 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: 20px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-AFQTi .framer-y03ad5, .framer-AFQTi .framer-17oci8e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-evenly; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AFQTi.framer-1mq3ds, .framer-AFQTi .framer-1ei3s6q, .framer-AFQTi .framer-14h2q2g, .framer-AFQTi .framer-vaf8gj, .framer-AFQTi .framer-11hf55f, .framer-AFQTi .framer-m3zdrn, .framer-AFQTi .framer-1b2avkn, .framer-AFQTi .framer-acrzoa, .framer-AFQTi .framer-vvl51s, .framer-AFQTi .framer-j2oyng, .framer-AFQTi .framer-1k0psx2, .framer-AFQTi .framer-11fjnoh, .framer-AFQTi .framer-1mvl1mg, .framer-AFQTi .framer-1xnx03u, .framer-AFQTi .framer-1sqsuij, .framer-AFQTi .framer-9jhm8v, .framer-AFQTi .framer-19vlyym, .framer-AFQTi .framer-1df3tx7, .framer-AFQTi .framer-nyrx9s, .framer-AFQTi .framer-125quyy, .framer-AFQTi .framer-qulsfq, .framer-AFQTi .framer-mt3hvu, .framer-AFQTi .framer-1u462c4, .framer-AFQTi .framer-qmrfvi, .framer-AFQTi .framer-1lkxbrj, .framer-AFQTi .framer-jy5xj6, .framer-AFQTi .framer-6bqayy, .framer-AFQTi .framer-1ilk7o6, .framer-AFQTi .framer-8hxm1y, .framer-AFQTi .framer-12ifcyu, .framer-AFQTi .framer-uipfmg, .framer-AFQTi .framer-14tvnwj, .framer-AFQTi .framer-rv1up1, .framer-AFQTi .framer-2uybva, .framer-AFQTi .framer-wzug70, .framer-AFQTi .framer-k97br2, .framer-AFQTi .framer-15gxqon, .framer-AFQTi .framer-1514oaf, .framer-AFQTi .framer-yapbnc, .framer-AFQTi .framer-1qfn20b, .framer-AFQTi .framer-i0a69d, .framer-AFQTi .framer-kahv97, .framer-AFQTi .framer-1cprij4, .framer-AFQTi .framer-vanemq, .framer-AFQTi .framer-121hjox, .framer-AFQTi .framer-k05pz9, .framer-AFQTi .framer-6yh37i, .framer-AFQTi .framer-199p7rx, .framer-AFQTi .framer-1kelhu9, .framer-AFQTi .framer-tp4upb, .framer-AFQTi .framer-18r76ym, .framer-AFQTi .framer-1q8edyp, .framer-AFQTi .framer-1hi65ol, .framer-AFQTi .framer-164zj2i, .framer-AFQTi .framer-bgds55, .framer-AFQTi .framer-vx9q66, .framer-AFQTi .framer-1tvvgcd, .framer-AFQTi .framer-1ch43wm, .framer-AFQTi .framer-1e7drjb, .framer-AFQTi .framer-17svpyp, .framer-AFQTi .framer-1taen0, .framer-AFQTi .framer-mrglrj, .framer-AFQTi .framer-4je5cl, .framer-AFQTi .framer-1pjnzoy, .framer-AFQTi .framer-1ghanh6, .framer-AFQTi .framer-jir9ej, .framer-AFQTi .framer-l4oi9z, .framer-AFQTi .framer-19xcyw7, .framer-AFQTi .framer-1dvf3rb, .framer-AFQTi .framer-1ivd9qt, .framer-AFQTi .framer-jec05q, .framer-AFQTi .framer-417xpp, .framer-AFQTi .framer-12vu399, .framer-AFQTi .framer-1nzpir6, .framer-AFQTi .framer-1mo0zue, .framer-AFQTi .framer-ipwmtn, .framer-AFQTi .framer-mqp8d8, .framer-AFQTi .framer-uumiyy, .framer-AFQTi .framer-amrur5, .framer-AFQTi .framer-597xya, .framer-AFQTi .framer-us9quq, .framer-AFQTi .framer-1v3dkhi, .framer-AFQTi .framer-qxjifz, .framer-AFQTi .framer-1jqxc6p, .framer-AFQTi .framer-iq2r8a, .framer-AFQTi .framer-57q68i, .framer-AFQTi .framer-6wamt1 { gap: 0px; } .framer-AFQTi.framer-1mq3ds > *, .framer-AFQTi .framer-m3zdrn > *, .framer-AFQTi .framer-1k0psx2 > *, .framer-AFQTi .framer-1u462c4 > *, .framer-AFQTi .framer-wzug70 > *, .framer-AFQTi .framer-6yh37i > *, .framer-AFQTi .framer-bgds55 > *, .framer-AFQTi .framer-17svpyp > *, .framer-AFQTi .framer-417xpp > *, .framer-AFQTi .framer-1jqxc6p > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AFQTi.framer-1mq3ds > :first-child, .framer-AFQTi .framer-vaf8gj > :first-child, .framer-AFQTi .framer-11hf55f > :first-child, .framer-AFQTi .framer-m3zdrn > :first-child, .framer-AFQTi .framer-1b2avkn > :first-child, .framer-AFQTi .framer-vvl51s > :first-child, .framer-AFQTi .framer-1k0psx2 > :first-child, .framer-AFQTi .framer-11fjnoh > :first-child, .framer-AFQTi .framer-1mvl1mg > :first-child, .framer-AFQTi .framer-1xnx03u > :first-child, .framer-AFQTi .framer-19vlyym > :first-child, .framer-AFQTi .framer-1df3tx7 > :first-child, .framer-AFQTi .framer-nyrx9s > :first-child, .framer-AFQTi .framer-qulsfq > :first-child, .framer-AFQTi .framer-1u462c4 > :first-child, .framer-AFQTi .framer-qmrfvi > :first-child, .framer-AFQTi .framer-1lkxbrj > :first-child, .framer-AFQTi .framer-jy5xj6 > :first-child, .framer-AFQTi .framer-8hxm1y > :first-child, .framer-AFQTi .framer-12ifcyu > :first-child, .framer-AFQTi .framer-uipfmg > :first-child, .framer-AFQTi .framer-rv1up1 > :first-child, .framer-AFQTi .framer-wzug70 > :first-child, .framer-AFQTi .framer-k97br2 > :first-child, .framer-AFQTi .framer-15gxqon > :first-child, .framer-AFQTi .framer-1514oaf > :first-child, .framer-AFQTi .framer-i0a69d > :first-child, .framer-AFQTi .framer-kahv97 > :first-child, .framer-AFQTi .framer-1cprij4 > :first-child, .framer-AFQTi .framer-121hjox > :first-child, .framer-AFQTi .framer-6yh37i > :first-child, .framer-AFQTi .framer-199p7rx > :first-child, .framer-AFQTi .framer-1kelhu9 > :first-child, .framer-AFQTi .framer-tp4upb > :first-child, .framer-AFQTi .framer-1hi65ol > :first-child, .framer-AFQTi .framer-164zj2i > :first-child, .framer-AFQTi .framer-bgds55 > :first-child, .framer-AFQTi .framer-vx9q66 > :first-child, .framer-AFQTi .framer-1ch43wm > :first-child, .framer-AFQTi .framer-17svpyp > :first-child, .framer-AFQTi .framer-1taen0 > :first-child, .framer-AFQTi .framer-mrglrj > :first-child, .framer-AFQTi .framer-4je5cl > :first-child, .framer-AFQTi .framer-jir9ej > :first-child, .framer-AFQTi .framer-l4oi9z > :first-child, .framer-AFQTi .framer-19xcyw7 > :first-child, .framer-AFQTi .framer-1ivd9qt > :first-child, .framer-AFQTi .framer-417xpp > :first-child, .framer-AFQTi .framer-12vu399 > :first-child, .framer-AFQTi .framer-1nzpir6 > :first-child, .framer-AFQTi .framer-1mo0zue > :first-child, .framer-AFQTi .framer-uumiyy > :first-child, .framer-AFQTi .framer-amrur5 > :first-child, .framer-AFQTi .framer-597xya > :first-child, .framer-AFQTi .framer-1v3dkhi > :first-child, .framer-AFQTi .framer-1jqxc6p > :first-child, .framer-AFQTi .framer-iq2r8a > :first-child, .framer-AFQTi .framer-57q68i > :first-child, .framer-AFQTi .framer-6wamt1 > :first-child { margin-top: 0px; } .framer-AFQTi.framer-1mq3ds > :last-child, .framer-AFQTi .framer-vaf8gj > :last-child, .framer-AFQTi .framer-11hf55f > :last-child, .framer-AFQTi .framer-m3zdrn > :last-child, .framer-AFQTi .framer-1b2avkn > :last-child, .framer-AFQTi .framer-vvl51s > :last-child, .framer-AFQTi .framer-1k0psx2 > :last-child, .framer-AFQTi .framer-11fjnoh > :last-child, .framer-AFQTi .framer-1mvl1mg > :last-child, .framer-AFQTi .framer-1xnx03u > :last-child, .framer-AFQTi .framer-19vlyym > :last-child, .framer-AFQTi .framer-1df3tx7 > :last-child, .framer-AFQTi .framer-nyrx9s > :last-child, .framer-AFQTi .framer-qulsfq > :last-child, .framer-AFQTi .framer-1u462c4 > :last-child, .framer-AFQTi .framer-qmrfvi > :last-child, .framer-AFQTi .framer-1lkxbrj > :last-child, .framer-AFQTi .framer-jy5xj6 > :last-child, .framer-AFQTi .framer-8hxm1y > :last-child, .framer-AFQTi .framer-12ifcyu > :last-child, .framer-AFQTi .framer-uipfmg > :last-child, .framer-AFQTi .framer-rv1up1 > :last-child, .framer-AFQTi .framer-wzug70 > :last-child, .framer-AFQTi .framer-k97br2 > :last-child, .framer-AFQTi .framer-15gxqon > :last-child, .framer-AFQTi .framer-1514oaf > :last-child, .framer-AFQTi .framer-i0a69d > :last-child, .framer-AFQTi .framer-kahv97 > :last-child, .framer-AFQTi .framer-1cprij4 > :last-child, .framer-AFQTi .framer-121hjox > :last-child, .framer-AFQTi .framer-6yh37i > :last-child, .framer-AFQTi .framer-199p7rx > :last-child, .framer-AFQTi .framer-1kelhu9 > :last-child, .framer-AFQTi .framer-tp4upb > :last-child, .framer-AFQTi .framer-1hi65ol > :last-child, .framer-AFQTi .framer-164zj2i > :last-child, .framer-AFQTi .framer-bgds55 > :last-child, .framer-AFQTi .framer-vx9q66 > :last-child, .framer-AFQTi .framer-1ch43wm > :last-child, .framer-AFQTi .framer-17svpyp > :last-child, .framer-AFQTi .framer-1taen0 > :last-child, .framer-AFQTi .framer-mrglrj > :last-child, .framer-AFQTi .framer-4je5cl > :last-child, .framer-AFQTi .framer-jir9ej > :last-child, .framer-AFQTi .framer-l4oi9z > :last-child, .framer-AFQTi .framer-19xcyw7 > :last-child, .framer-AFQTi .framer-1ivd9qt > :last-child, .framer-AFQTi .framer-417xpp > :last-child, .framer-AFQTi .framer-12vu399 > :last-child, .framer-AFQTi .framer-1nzpir6 > :last-child, .framer-AFQTi .framer-1mo0zue > :last-child, .framer-AFQTi .framer-uumiyy > :last-child, .framer-AFQTi .framer-amrur5 > :last-child, .framer-AFQTi .framer-597xya > :last-child, .framer-AFQTi .framer-1v3dkhi > :last-child, .framer-AFQTi .framer-1jqxc6p > :last-child, .framer-AFQTi .framer-iq2r8a > :last-child, .framer-AFQTi .framer-57q68i > :last-child, .framer-AFQTi .framer-6wamt1 > :last-child { margin-bottom: 0px; } .framer-AFQTi .framer-1ei3s6q > *, .framer-AFQTi .framer-acrzoa > *, .framer-AFQTi .framer-j2oyng > *, .framer-AFQTi .framer-1sqsuij > *, .framer-AFQTi .framer-125quyy > *, .framer-AFQTi .framer-mt3hvu > *, .framer-AFQTi .framer-6bqayy > *, .framer-AFQTi .framer-14tvnwj > *, .framer-AFQTi .framer-2uybva > *, .framer-AFQTi .framer-yapbnc > *, .framer-AFQTi .framer-vanemq > *, .framer-AFQTi .framer-k05pz9 > *, .framer-AFQTi .framer-18r76ym > *, .framer-AFQTi .framer-1tvvgcd > *, .framer-AFQTi .framer-1e7drjb > *, .framer-AFQTi .framer-1pjnzoy > *, .framer-AFQTi .framer-1dvf3rb > *, .framer-AFQTi .framer-jec05q > *, .framer-AFQTi .framer-ipwmtn > *, .framer-AFQTi .framer-us9quq > *, .framer-AFQTi .framer-qxjifz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-AFQTi .framer-1ei3s6q > :first-child, .framer-AFQTi .framer-14h2q2g > :first-child, .framer-AFQTi .framer-acrzoa > :first-child, .framer-AFQTi .framer-j2oyng > :first-child, .framer-AFQTi .framer-1sqsuij > :first-child, .framer-AFQTi .framer-9jhm8v > :first-child, .framer-AFQTi .framer-125quyy > :first-child, .framer-AFQTi .framer-mt3hvu > :first-child, .framer-AFQTi .framer-6bqayy > :first-child, .framer-AFQTi .framer-1ilk7o6 > :first-child, .framer-AFQTi .framer-14tvnwj > :first-child, .framer-AFQTi .framer-2uybva > :first-child, .framer-AFQTi .framer-yapbnc > :first-child, .framer-AFQTi .framer-1qfn20b > :first-child, .framer-AFQTi .framer-vanemq > :first-child, .framer-AFQTi .framer-k05pz9 > :first-child, .framer-AFQTi .framer-18r76ym > :first-child, .framer-AFQTi .framer-1q8edyp > :first-child, .framer-AFQTi .framer-1tvvgcd > :first-child, .framer-AFQTi .framer-1e7drjb > :first-child, .framer-AFQTi .framer-1pjnzoy > :first-child, .framer-AFQTi .framer-1ghanh6 > :first-child, .framer-AFQTi .framer-1dvf3rb > :first-child, .framer-AFQTi .framer-jec05q > :first-child, .framer-AFQTi .framer-ipwmtn > :first-child, .framer-AFQTi .framer-mqp8d8 > :first-child, .framer-AFQTi .framer-us9quq > :first-child, .framer-AFQTi .framer-qxjifz > :first-child { margin-left: 0px; } .framer-AFQTi .framer-1ei3s6q > :last-child, .framer-AFQTi .framer-14h2q2g > :last-child, .framer-AFQTi .framer-acrzoa > :last-child, .framer-AFQTi .framer-j2oyng > :last-child, .framer-AFQTi .framer-1sqsuij > :last-child, .framer-AFQTi .framer-9jhm8v > :last-child, .framer-AFQTi .framer-125quyy > :last-child, .framer-AFQTi .framer-mt3hvu > :last-child, .framer-AFQTi .framer-6bqayy > :last-child, .framer-AFQTi .framer-1ilk7o6 > :last-child, .framer-AFQTi .framer-14tvnwj > :last-child, .framer-AFQTi .framer-2uybva > :last-child, .framer-AFQTi .framer-yapbnc > :last-child, .framer-AFQTi .framer-1qfn20b > :last-child, .framer-AFQTi .framer-vanemq > :last-child, .framer-AFQTi .framer-k05pz9 > :last-child, .framer-AFQTi .framer-18r76ym > :last-child, .framer-AFQTi .framer-1q8edyp > :last-child, .framer-AFQTi .framer-1tvvgcd > :last-child, .framer-AFQTi .framer-1e7drjb > :last-child, .framer-AFQTi .framer-1pjnzoy > :last-child, .framer-AFQTi .framer-1ghanh6 > :last-child, .framer-AFQTi .framer-1dvf3rb > :last-child, .framer-AFQTi .framer-jec05q > :last-child, .framer-AFQTi .framer-ipwmtn > :last-child, .framer-AFQTi .framer-mqp8d8 > :last-child, .framer-AFQTi .framer-us9quq > :last-child, .framer-AFQTi .framer-qxjifz > :last-child { margin-right: 0px; } .framer-AFQTi .framer-14h2q2g > *, .framer-AFQTi .framer-9jhm8v > *, .framer-AFQTi .framer-1ilk7o6 > *, .framer-AFQTi .framer-1qfn20b > *, .framer-AFQTi .framer-1q8edyp > *, .framer-AFQTi .framer-1ghanh6 > *, .framer-AFQTi .framer-mqp8d8 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-AFQTi .framer-vaf8gj > *, .framer-AFQTi .framer-11hf55f > *, .framer-AFQTi .framer-19vlyym > *, .framer-AFQTi .framer-1df3tx7 > *, .framer-AFQTi .framer-8hxm1y > *, .framer-AFQTi .framer-12ifcyu > *, .framer-AFQTi .framer-i0a69d > *, .framer-AFQTi .framer-kahv97 > *, .framer-AFQTi .framer-1hi65ol > *, .framer-AFQTi .framer-164zj2i > *, .framer-AFQTi .framer-jir9ej > *, .framer-AFQTi .framer-l4oi9z > *, .framer-AFQTi .framer-uumiyy > *, .framer-AFQTi .framer-amrur5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-AFQTi .framer-1b2avkn > *, .framer-AFQTi .framer-nyrx9s > *, .framer-AFQTi .framer-uipfmg > *, .framer-AFQTi .framer-1cprij4 > *, .framer-AFQTi .framer-vx9q66 > *, .framer-AFQTi .framer-19xcyw7 > *, .framer-AFQTi .framer-597xya > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-AFQTi .framer-vvl51s > *, .framer-AFQTi .framer-11fjnoh > *, .framer-AFQTi .framer-1mvl1mg > *, .framer-AFQTi .framer-1xnx03u > *, .framer-AFQTi .framer-qulsfq > *, .framer-AFQTi .framer-qmrfvi > *, .framer-AFQTi .framer-1lkxbrj > *, .framer-AFQTi .framer-jy5xj6 > *, .framer-AFQTi .framer-rv1up1 > *, .framer-AFQTi .framer-k97br2 > *, .framer-AFQTi .framer-15gxqon > *, .framer-AFQTi .framer-1514oaf > *, .framer-AFQTi .framer-121hjox > *, .framer-AFQTi .framer-199p7rx > *, .framer-AFQTi .framer-1kelhu9 > *, .framer-AFQTi .framer-tp4upb > *, .framer-AFQTi .framer-1ch43wm > *, .framer-AFQTi .framer-1taen0 > *, .framer-AFQTi .framer-mrglrj > *, .framer-AFQTi .framer-4je5cl > *, .framer-AFQTi .framer-1ivd9qt > *, .framer-AFQTi .framer-12vu399 > *, .framer-AFQTi .framer-1nzpir6 > *, .framer-AFQTi .framer-1mo0zue > *, .framer-AFQTi .framer-1v3dkhi > *, .framer-AFQTi .framer-iq2r8a > *, .framer-AFQTi .framer-57q68i > *, .framer-AFQTi .framer-6wamt1 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-AFQTi.framer-v-1k3v11p.framer-1mq3ds, .framer-AFQTi.framer-v-x6nu9a.framer-1mq3ds, .framer-AFQTi.framer-v-1co6o99.framer-1mq3ds, .framer-AFQTi.framer-v-1w4vazf.framer-1mq3ds, .framer-AFQTi.framer-v-17h9arz.framer-1mq3ds { width: 810px; }\",\".framer-AFQTi.framer-v-1k3v11p .framer-19vlyym { gap: 12px; }\",\".framer-AFQTi.framer-v-1k3v11p .framer-9ffrm4, .framer-AFQTi.framer-v-1fdwlbi .framer-9ffrm4, .framer-AFQTi.framer-v-1te9c0v .framer-19vlyym, .framer-AFQTi.framer-v-1te9c0v .framer-9ffrm4, .framer-AFQTi.framer-v-10lp2dy .framer-19vlyym, .framer-AFQTi.framer-v-10lp2dy .framer-9ffrm4, .framer-AFQTi.framer-v-111xxut .framer-19vlyym, .framer-AFQTi.framer-v-111xxut .framer-9ffrm4, .framer-AFQTi.framer-v-1w4vazf .framer-kahv97, .framer-AFQTi.framer-v-ik4adl .framer-amrur5, .framer-AFQTi.framer-v-1qcy3ne .framer-19vlyym, .framer-AFQTi.framer-v-1qcy3ne .framer-9ffrm4 { cursor: pointer; }\",\".framer-AFQTi.framer-v-1k3v11p .framer-96qhlp, .framer-AFQTi.framer-v-1fdwlbi .framer-96qhlp { flex-direction: column; }\",\".framer-AFQTi.framer-v-1k3v11p .framer-nyrx9s, .framer-AFQTi.framer-v-1k3v11p .framer-1u462c4 { width: 80%; }\",\".framer-AFQTi.framer-v-1k3v11p .framer-125quyy, .framer-AFQTi.framer-v-x6nu9a .framer-acrzoa, .framer-AFQTi.framer-v-1co6o99 .framer-1d0prtw, .framer-AFQTi.framer-v-1co6o99 .framer-14tvnwj, .framer-AFQTi.framer-v-1w4vazf .framer-vanemq, .framer-AFQTi.framer-v-ahpmqs .framer-1tvvgcd, .framer-AFQTi.framer-v-kt3197 .framer-1dvf3rb, .framer-AFQTi.framer-v-ik4adl .framer-us9quq, .framer-AFQTi.framer-v-17h9arz .framer-vanemq, .framer-AFQTi.framer-v-1u3xkup .framer-us9quq { order: 1; }\",\".framer-AFQTi.framer-v-1k3v11p .framer-qulsfq { order: 0; width: 100%; }\",\".framer-AFQTi.framer-v-1k3v11p .framer-k4rkj8, .framer-AFQTi.framer-v-1k3v11p .framer-qmrfvi, .framer-AFQTi.framer-v-1k3v11p .framer-1lkxbrj, .framer-AFQTi.framer-v-1k3v11p .framer-jy5xj6 { width: 600px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AFQTi.framer-v-1k3v11p .framer-19vlyym, .framer-AFQTi.framer-v-1k3v11p .framer-96qhlp { gap: 0px; } .framer-AFQTi.framer-v-1k3v11p .framer-19vlyym > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-AFQTi.framer-v-1k3v11p .framer-19vlyym > :first-child { margin-top: 0px; } .framer-AFQTi.framer-v-1k3v11p .framer-19vlyym > :last-child { margin-bottom: 0px; } .framer-AFQTi.framer-v-1k3v11p .framer-96qhlp > *, .framer-AFQTi.framer-v-1k3v11p .framer-96qhlp > :first-child, .framer-AFQTi.framer-v-1k3v11p .framer-96qhlp > :last-child { margin: 0px; } }\",\".framer-AFQTi.framer-v-1fdwlbi.framer-1mq3ds, .framer-AFQTi.framer-v-ahpmqs.framer-1mq3ds, .framer-AFQTi.framer-v-kt3197.framer-1mq3ds, .framer-AFQTi.framer-v-ik4adl.framer-1mq3ds, .framer-AFQTi.framer-v-1u3xkup.framer-1mq3ds { width: 390px; }\",\".framer-AFQTi.framer-v-1fdwlbi .framer-104vfex { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-AFQTi.framer-v-1fdwlbi .framer-1sqsuij { flex: none; width: 100%; }\",\".framer-AFQTi.framer-v-1fdwlbi .framer-9jhm8v { height: min-content; padding: 24px 0px 0px 0px; }\",\".framer-AFQTi.framer-v-1fdwlbi .framer-nyrx9s, .framer-AFQTi.framer-v-1fdwlbi .framer-1u462c4, .framer-AFQTi.framer-v-1fdwlbi .framer-qmrfvi, .framer-AFQTi.framer-v-1fdwlbi .framer-1lkxbrj, .framer-AFQTi.framer-v-1fdwlbi .framer-jy5xj6 { width: 100%; }\",\".framer-AFQTi.framer-v-1fdwlbi .framer-125quyy { height: 200px; min-height: 200px; order: 1; }\",\".framer-AFQTi.framer-v-1fdwlbi .framer-qulsfq { order: 0; width: 300px; }\",\".framer-AFQTi.framer-v-1fdwlbi .framer-k4rkj8 { width: 300px; }\",\".framer-AFQTi.framer-v-1fdwlbi .framer-14nc58r { white-space: pre-wrap; width: 300px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AFQTi.framer-v-1fdwlbi .framer-104vfex, .framer-AFQTi.framer-v-1fdwlbi .framer-96qhlp { gap: 0px; } .framer-AFQTi.framer-v-1fdwlbi .framer-104vfex > *, .framer-AFQTi.framer-v-1fdwlbi .framer-104vfex > :first-child, .framer-AFQTi.framer-v-1fdwlbi .framer-104vfex > :last-child, .framer-AFQTi.framer-v-1fdwlbi .framer-96qhlp > *, .framer-AFQTi.framer-v-1fdwlbi .framer-96qhlp > :first-child, .framer-AFQTi.framer-v-1fdwlbi .framer-96qhlp > :last-child { margin: 0px; } }\",\".framer-AFQTi.framer-v-1te9c0v .framer-6gebza-container, .framer-AFQTi.framer-v-111xxut .framer-6gebza-container, .framer-AFQTi.framer-v-x6nu9a .framer-vvl51s, .framer-AFQTi.framer-v-1co6o99 .framer-1lotffh, .framer-AFQTi.framer-v-1co6o99 .framer-rv1up1, .framer-AFQTi.framer-v-1w4vazf .framer-121hjox, .framer-AFQTi.framer-v-ahpmqs .framer-1ch43wm, .framer-AFQTi.framer-v-kt3197 .framer-1ivd9qt, .framer-AFQTi.framer-v-ik4adl .framer-1v3dkhi, .framer-AFQTi.framer-v-17h9arz .framer-121hjox, .framer-AFQTi.framer-v-1u3xkup .framer-1v3dkhi { order: 0; }\",\".framer-AFQTi.framer-v-1te9c0v .framer-mt3hvu, .framer-AFQTi.framer-v-10lp2dy .framer-mt3hvu, .framer-AFQTi.framer-v-1u3xkup .framer-qxjifz { width: min-content; }\",\".framer-AFQTi.framer-v-x6nu9a .framer-15a2vmn, .framer-AFQTi.framer-v-1co6o99 .framer-z61sav, .framer-AFQTi.framer-v-1w4vazf .framer-15f0l6s, .framer-AFQTi.framer-v-ahpmqs .framer-vg68ix, .framer-AFQTi.framer-v-kt3197 .framer-1h3a4dh, .framer-AFQTi.framer-v-ik4adl .framer-f9lgm4, .framer-AFQTi.framer-v-17h9arz .framer-15f0l6s, .framer-AFQTi.framer-v-1u3xkup .framer-f9lgm4 { height: var(--framer-aspect-ratio-supported, 24px); }\",\".framer-AFQTi.framer-v-1w4vazf .framer-fif4i4, .framer-AFQTi.framer-v-17h9arz .framer-fif4i4 { order: 6; }\",\".framer-AFQTi.framer-v-1w4vazf .framer-7jivln, .framer-AFQTi.framer-v-17h9arz .framer-7jivln { order: 7; }\",'.framer-AFQTi[data-border=\"true\"]::after, .framer-AFQTi [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1145\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"r7hTTEF0j\":{\"layout\":[\"fixed\",\"auto\"]},\"ZMPuebAGi\":{\"layout\":[\"fixed\",\"auto\"]},\"aECAmBkcG\":{\"layout\":[\"fixed\",\"auto\"]},\"SBi6xNQDV\":{\"layout\":[\"fixed\",\"auto\"]},\"tgyy4aWUV\":{\"layout\":[\"fixed\",\"auto\"]},\"KCLr9_EQI\":{\"layout\":[\"fixed\",\"auto\"]},\"xxZf9hYyV\":{\"layout\":[\"fixed\",\"auto\"]},\"kmfiPctYv\":{\"layout\":[\"fixed\",\"auto\"]},\"bE9sioy47\":{\"layout\":[\"fixed\",\"auto\"]},\"KwSJdVK8Q\":{\"layout\":[\"fixed\",\"auto\"]},\"xhvTcDXRP\":{\"layout\":[\"fixed\",\"auto\"]},\"bIFUtxI7r\":{\"layout\":[\"fixed\",\"auto\"]},\"UmjK4WGsR\":{\"layout\":[\"fixed\",\"auto\"]},\"NFaweCgeE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNGz1_8wlR=withCSS(Component,css,\"framer-AFQTi\");export default FramerNGz1_8wlR;FramerNGz1_8wlR.displayName=\"UXDESIGNSECTION\";FramerNGz1_8wlR.defaultProps={height:1145,width:1200};addPropertyControls(FramerNGz1_8wlR,{variant:{options:[\"Lx9ylULtG\",\"r7hTTEF0j\",\"ZMPuebAGi\",\"aECAmBkcG\",\"SBi6xNQDV\",\"tgyy4aWUV\",\"KCLr9_EQI\",\"xxZf9hYyV\",\"kmfiPctYv\",\"bE9sioy47\",\"KwSJdVK8Q\",\"xhvTcDXRP\",\"bIFUtxI7r\",\"UmjK4WGsR\",\"NFaweCgeE\"],optionTitles:[\"1Morph\",\"Tablet\",\"Phone\",\"2Candlemonk\",\"3Gmm\",\"4Red\",\"2Candlemonk-Tablet\",\"3Gmm-Tablet\",\"4-RedTablet\",\"2-Mobile\",\"3-Mobile\",\"4-Mobile\",\"uxredesign\",\"5-redesignTablet\",\"5-Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerNGz1_8wlR,[{explicitInter:true,fonts:[{family:\"Playfair Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/playfairdisplay/v37/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebukDVZNLo_U2r.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Playfair Display\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/playfairdisplay/v37/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_pqTbtPK-F2rA0s.woff2\",weight:\"500\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\",weight:\"400\"},{family:\"Instrument Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENuu-2kywN2u7YUwU.woff2\",weight:\"400\"},{family:\"Playfair Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/playfairdisplay/v37/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDVZNLo_U2r.woff2\",weight:\"700\"}]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNGz1_8wlR\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1145\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r7hTTEF0j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZMPuebAGi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aECAmBkcG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SBi6xNQDV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tgyy4aWUV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KCLr9_EQI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xxZf9hYyV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kmfiPctYv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bE9sioy47\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KwSJdVK8Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xhvTcDXRP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bIFUtxI7r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UmjK4WGsR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NFaweCgeE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NGz1_8wlR.map"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1wjdqww", "args", "onTap1dtdujm", "onTap103s6t", "onTapm16wx2", "onTap1wvfviy", "onTapqn7va9", "onTapaqy7jh", "onTapatm5g9", "onTap1lmh6yq", "onTappg2mk0", "onTap16eijn3", "onTap1g62yvo", "onTapmz77n0", "onTapz85ad0", "onTap1bq4r3z", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "SVG", "ComponentViewportProvider", "Link", "Image2", "getLoadingLazyAtYPosition", "css", "FramerNGz1_8wlR", "withCSS", "NGz1_8wlR_default", "addPropertyControls", "ControlType", "addFonts"]
}
