{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/XRl9ZAalBXSHXLxI2u3E/10kQQR96htd9CtlzeOVG/tbyLvmsPn.js", "ssg:https://framerusercontent.com/modules/1DjBovIbMji9GP80eeZC/JrWObeVeewbjEwUHnLv1/h7VS1tIkg.js", "ssg:https://framerusercontent.com/modules/jUtCycv0mKRoVUXWF5Us/lDPm5vJHXkafWd5fJeym/dhJ4PSsVK.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://framer.com/m/framer/default-utils.js@^0.45.0\";import{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 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 isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.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();},[]);return{play,pause,setProgress};}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;}/**\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 */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=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);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=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]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=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=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)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\",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\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",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:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];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\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},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\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...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\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (0060787)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/4vwr8LS0boIkb8jZiFjJ/yPv2XJJksvkU9mEOiq5i/N74N_0q9y.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/39U3LkboyhW8Uk3hCMn0/cyLuGZkW0E0ehbfrPD6R/vqCJJjluc.js\";const cycleOrder=[\"UGMSzZeG5\"];const serializationHash=\"framer-TcIUP\";const variantClassNames={UGMSzZeG5:\"framer-v-1pzdw56\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({bio,height,id,image,name1,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3;return{...props,l0Fi0sJ4j:(_ref=bio!==null&&bio!==void 0?bio:props.l0Fi0sJ4j)!==null&&_ref!==void 0?_ref:\"Early Dogecoin investor \u2219 Animal-assisted therapy dog volunteer \u2219 Chonk\",lf_3BCLec:(_ref1=image!==null&&image!==void 0?image:props.lf_3BCLec)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/jyWXVLuryHVSHzpEW6gBifhak3E.png\"},Lq2MI72jB:(_ref2=title!==null&&title!==void 0?title:props.Lq2MI72jB)!==null&&_ref2!==void 0?_ref2:\"Chief Happiness Officer\",v0E1m9ctD:(_ref3=name1!==null&&name1!==void 0?name1:props.v0E1m9ctD)!==null&&_ref3!==void 0?_ref3:\"Duplo\"};};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,lf_3BCLec,v0E1m9ctD,Lq2MI72jB,l0Fi0sJ4j,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UGMSzZeG5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1pzdw56\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"UGMSzZeG5\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:500,pixelWidth:500,sizes:\"120px\",...toResponsiveImage(lf_3BCLec)},className:\"framer-15d0bfk\",\"data-framer-name\":\"Photo\",layoutDependency:layoutDependency,layoutId:\"TbcjoQ4Gc\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ffwbf2\",layoutDependency:layoutDependency,layoutId:\"Haj9QXgCw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gefego\",layoutDependency:layoutDependency,layoutId:\"n10l0Qpeq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-po9ocu\",\"data-styles-preset\":\"N74N_0q9y\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cfb3a28-a190-4230-b1db-5025cd040ee9, rgb(26, 28, 30)))\"},children:\"Duplo\"})}),className:\"framer-13hxtc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TjSU4use_\",style:{\"--extracted-r6o4lv\":\"var(--token-4cfb3a28-a190-4230-b1db-5025cd040ee9, rgb(26, 28, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:v0E1m9ctD,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l7lhsi\",\"data-styles-preset\":\"vqCJJjluc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4ed96c69-b73a-4721-be25-59addcb9c5d7, rgb(90, 97, 110)))\"},children:\"Chief Happiness Officer\"})}),className:\"framer-1e7zkbz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wX9AW8Ocl\",style:{\"--extracted-r6o4lv\":\"var(--token-4ed96c69-b73a-4721-be25-59addcb9c5d7, rgb(90, 97, 110))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Lq2MI72jB,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l7lhsi\",\"data-styles-preset\":\"vqCJJjluc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cfb3a28-a190-4230-b1db-5025cd040ee9, rgb(26, 28, 30)))\"},children:\"Early Dogecoin investor \u2219 Therapy dog volunteer \u2219 Chonk\"})}),className:\"framer-ozeaxy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KJnYg5ZPG\",style:{\"--extracted-r6o4lv\":\"var(--token-4cfb3a28-a190-4230-b1db-5025cd040ee9, rgb(26, 28, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:l0Fi0sJ4j,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TcIUP.framer-1morxcn, .framer-TcIUP .framer-1morxcn { display: block; }\",\".framer-TcIUP.framer-1pzdw56 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 360px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-TcIUP .framer-15d0bfk { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 120px); overflow: hidden; position: relative; width: 120px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TcIUP .framer-ffwbf2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-TcIUP .framer-gefego { 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: 0px; position: relative; width: 320px; }\",\".framer-TcIUP .framer-13hxtc, .framer-TcIUP .framer-1e7zkbz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TcIUP .framer-ozeaxy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 320px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TcIUP.framer-1pzdw56, .framer-TcIUP .framer-ffwbf2, .framer-TcIUP .framer-gefego { gap: 0px; } .framer-TcIUP.framer-1pzdw56 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-TcIUP.framer-1pzdw56 > :first-child, .framer-TcIUP .framer-ffwbf2 > :first-child, .framer-TcIUP .framer-gefego > :first-child { margin-top: 0px; } .framer-TcIUP.framer-1pzdw56 > :last-child, .framer-TcIUP .framer-ffwbf2 > :last-child, .framer-TcIUP .framer-gefego > :last-child { margin-bottom: 0px; } .framer-TcIUP .framer-ffwbf2 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-TcIUP .framer-gefego > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 230\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"360px\",null,null]}}}\n * @framerVariables {\"lf_3BCLec\":\"image\",\"v0E1m9ctD\":\"name1\",\"Lq2MI72jB\":\"title\",\"l0Fi0sJ4j\":\"bio\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertbyLvmsPn=withCSS(Component,css,\"framer-TcIUP\");export default FramertbyLvmsPn;FramertbyLvmsPn.displayName=\"Team Member\";FramertbyLvmsPn.defaultProps={height:230,width:320};addPropertyControls(FramertbyLvmsPn,{lf_3BCLec:{__defaultAssetReference:\"data:framer/asset-reference,jyWXVLuryHVSHzpEW6gBifhak3E.png?originalFilename=dupes.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},v0E1m9ctD:{defaultValue:\"Duplo\",displayTextArea:false,title:\"Name\",type:ControlType.String},Lq2MI72jB:{defaultValue:\"Chief Happiness Officer\",displayTextArea:false,title:\"Title\",type:ControlType.String},l0Fi0sJ4j:{defaultValue:\"Early Dogecoin investor \u2219 Animal-assisted therapy dog volunteer \u2219 Chonk\",displayTextArea:false,placeholder:\"\",title:\"Bio\",type:ControlType.String}});addFonts(FramertbyLvmsPn,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertbyLvmsPn\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"lf_3BCLec\\\":\\\"image\\\",\\\"v0E1m9ctD\\\":\\\"name1\\\",\\\"Lq2MI72jB\\\":\\\"title\\\",\\\"l0Fi0sJ4j\\\":\\\"bio\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"320\",\"framerIntrinsicHeight\":\"230\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"360px\\\",null,null]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tbyLvmsPn.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=['.framer-SOy1d .framer-styles-preset-dseeqi:not(.rich-text-wrapper), .framer-SOy1d .framer-styles-preset-dseeqi.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-4e9ee025-4d41-457f-b60b-4d48970c270e, #80858f) /* {\"name\":\"dark/300\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-4cfb3a28-a190-4230-b1db-5025cd040ee9, #1a1c1e); --framer-link-text-decoration: none; }'];export const className=\"framer-SOy1d\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Pattern from\"https://framerusercontent.com/modules/2rGdY3xNPdGAC1LGc2Ew/gQcpGdBaDKqalAQX5HN3/Pattern.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import Tag from\"#framer/local/canvasComponent/Fi9LUfRJg/Fi9LUfRJg.js\";import ButtonPrimary from\"#framer/local/canvasComponent/PSJh510mh/PSJh510mh.js\";import TeamMember from\"#framer/local/canvasComponent/tbyLvmsPn/tbyLvmsPn.js\";import CallToAction from\"#framer/local/canvasComponent/YLyhgdMXA/YLyhgdMXA.js\";import*as sharedStyle4 from\"#framer/local/css/h7VS1tIkg/h7VS1tIkg.js\";import*as sharedStyle1 from\"#framer/local/css/JftXXIuwg/JftXXIuwg.js\";import*as sharedStyle from\"#framer/local/css/kEeWTFB5n/kEeWTFB5n.js\";import*as sharedStyle3 from\"#framer/local/css/N4cH5VlsQ/N4cH5VlsQ.js\";import*as sharedStyle2 from\"#framer/local/css/V5nk717xE/V5nk717xE.js\";import metadataProvider from\"#framer/local/webPageMetadata/dhJ4PSsVK/dhJ4PSsVK.js\";const PatternFonts=getFonts(Pattern);const TagFonts=getFonts(Tag);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const VideoFonts=getFonts(Video);const TeamMemberFonts=getFonts(TeamMember);const FeatherFonts=getFonts(Feather);const CallToActionFonts=getFonts(CallToAction);const breakpoints={MDhaioRIf:\"(min-width: 1400px)\",WZHZ2GIkc:\"(max-width: 809px)\",Xi6aaCKb0:\"(min-width: 810px) and (max-width: 1399px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-GFqAs\";const variantClassNames={MDhaioRIf:\"framer-v-vk2d1v\",WZHZ2GIkc:\"framer-v-2znpdj\",Xi6aaCKb0:\"framer-v-j79l70\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"MDhaioRIf\",Phone:\"WZHZ2GIkc\",Tablet:\"Xi6aaCKb0\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"MDhaioRIf\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const elementId=useRouteElementId(\"koStxhBMW\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"MDhaioRIf\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-2546f2ec-502d-4b32-8634-ef8a4d8c3ed0, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-vk2d1v\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zz11m-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"av144Z5Uw\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(Pattern,{back:\"rgba(34, 221, 221, 0)\",diagonal:true,direction:\"left\",duration:5,front:\"rgba(49, 25, 77, 0.05)\",height:\"100%\",id:\"av144Z5Uw\",layoutId:\"av144Z5Uw\",patternType:\"paper\",radius:0,scale:45,shouldAnimate:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-gacnqd\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18q6290\",\"data-framer-name\":\"Content Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gm46bx\",\"data-framer-name\":\"Heading Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13s2vpb-container\",nodeId:\"rJ2TK6XUo\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"rJ2TK6XUo\",layoutId:\"rJ2TK6XUo\",variant:\"UmhQlqh_8\",W91HCivrf:\"Careers at Mem\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-hr5s57\",\"data-styles-preset\":\"kEeWTFB5n\",style:{\"--framer-text-color\":\"var(--token-4cfb3a28-a190-4230-b1db-5025cd040ee9, rgb(26, 28, 30))\"},children:\"We're on a mission to augment human intelligence\"})}),className:\"framer-1ksahjy\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-m2k7pp\",\"data-styles-preset\":\"JftXXIuwg\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Important ideas often vanish in the chaos of daily life. We lose valuable time tracking down information that should be at our fingertips. Knowledge lies in siloes, preventing the holistic thinking that leads to breakthroughs.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"We're redefining the way people think and work, leveraging cutting-edge artificial intelligence to empower people with the right knowledge at the right time. Join us.\"]})}),className:\"framer-37znjh\",\"data-framer-name\":\"Subtext\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":koStxhBMW\",webPageId:\"dhJ4PSsVK\"},implicitPathVariables:undefined},{href:{hash:\":koStxhBMW\",webPageId:\"dhJ4PSsVK\"},implicitPathVariables:undefined},{href:{hash:\":koStxhBMW\",webPageId:\"dhJ4PSsVK\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mx2kc5-container\",nodeId:\"UglbEd6ww\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WZHZ2GIkc:{owOcZuT5h:resolvedLinks[2]},Xi6aaCKb0:{owOcZuT5h:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{ddsatVqGO:true,height:\"100%\",id:\"UglbEd6ww\",layoutId:\"UglbEd6ww\",owOcZuT5h:resolvedLinks[0],QjDVC6Qun:false,style:{height:\"100%\"},SWTAQxjCj:\"See open roles\",variant:\"JAcdoFl0S\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c3c7oi\",\"data-framer-name\":\"Team\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-664eyh\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18al90q-container\",isModuleExternal:true,nodeId:\"ypjR2KAtj\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WZHZ2GIkc:{borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,topLeftRadius:24,topRightRadius:24}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:32,bottomLeftRadius:32,bottomRightRadius:32,controls:false,height:\"100%\",id:\"ypjR2KAtj\",isMixedBorderRadius:false,layoutId:\"ypjR2KAtj\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/9eYt0sMjvHNjaktHFUy1TXeGFK0.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:32,topRightRadius:32,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e871lk\",\"data-framer-name\":\"photos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WZHZ2GIkc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1446,intrinsicWidth:2377,pixelHeight:1446,pixelWidth:2377,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,src:\"https://framerusercontent.com/images/I5DgcN8EZclSsyXWXxV4BbeaL0.png\",srcSet:\"https://framerusercontent.com/images/I5DgcN8EZclSsyXWXxV4BbeaL0.png?scale-down-to=512 512w,https://framerusercontent.com/images/I5DgcN8EZclSsyXWXxV4BbeaL0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/I5DgcN8EZclSsyXWXxV4BbeaL0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/I5DgcN8EZclSsyXWXxV4BbeaL0.png 2377w\"}},Xi6aaCKb0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1446,intrinsicWidth:2377,pixelHeight:1446,pixelWidth:2377,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 58px) / 2, 1px)`,src:\"https://framerusercontent.com/images/I5DgcN8EZclSsyXWXxV4BbeaL0.png\",srcSet:\"https://framerusercontent.com/images/I5DgcN8EZclSsyXWXxV4BbeaL0.png?scale-down-to=512 512w,https://framerusercontent.com/images/I5DgcN8EZclSsyXWXxV4BbeaL0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/I5DgcN8EZclSsyXWXxV4BbeaL0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/I5DgcN8EZclSsyXWXxV4BbeaL0.png 2377w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1446,intrinsicWidth:2377,pixelHeight:1446,pixelWidth:2377,sizes:\"571px\",src:\"https://framerusercontent.com/images/I5DgcN8EZclSsyXWXxV4BbeaL0.png\",srcSet:\"https://framerusercontent.com/images/I5DgcN8EZclSsyXWXxV4BbeaL0.png?scale-down-to=512 512w,https://framerusercontent.com/images/I5DgcN8EZclSsyXWXxV4BbeaL0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/I5DgcN8EZclSsyXWXxV4BbeaL0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/I5DgcN8EZclSsyXWXxV4BbeaL0.png 2377w\"},className:\"framer-anuu53\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WZHZ2GIkc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1516,intrinsicWidth:2356,pixelHeight:1516,pixelWidth:2356,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,src:\"https://framerusercontent.com/images/rfxu6kBOwwO2RIyR8qXU941twQ.png\",srcSet:\"https://framerusercontent.com/images/rfxu6kBOwwO2RIyR8qXU941twQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/rfxu6kBOwwO2RIyR8qXU941twQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rfxu6kBOwwO2RIyR8qXU941twQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rfxu6kBOwwO2RIyR8qXU941twQ.png 2356w\"}},Xi6aaCKb0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1516,intrinsicWidth:2356,pixelHeight:1516,pixelWidth:2356,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 58px) / 2, 1px)`,src:\"https://framerusercontent.com/images/rfxu6kBOwwO2RIyR8qXU941twQ.png\",srcSet:\"https://framerusercontent.com/images/rfxu6kBOwwO2RIyR8qXU941twQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/rfxu6kBOwwO2RIyR8qXU941twQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rfxu6kBOwwO2RIyR8qXU941twQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rfxu6kBOwwO2RIyR8qXU941twQ.png 2356w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1516,intrinsicWidth:2356,pixelHeight:1516,pixelWidth:2356,sizes:\"571px\",src:\"https://framerusercontent.com/images/rfxu6kBOwwO2RIyR8qXU941twQ.png\",srcSet:\"https://framerusercontent.com/images/rfxu6kBOwwO2RIyR8qXU941twQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/rfxu6kBOwwO2RIyR8qXU941twQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rfxu6kBOwwO2RIyR8qXU941twQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rfxu6kBOwwO2RIyR8qXU941twQ.png 2356w\"},className:\"framer-1q0tlca\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17zvnnt\",\"data-framer-name\":\"photos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WZHZ2GIkc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:723,intrinsicWidth:1086,pixelHeight:723,pixelWidth:1086,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,src:\"https://framerusercontent.com/images/i43LfvJDHvmYV2caiY7IrUyhdaY.jpeg\",srcSet:\"https://framerusercontent.com/images/i43LfvJDHvmYV2caiY7IrUyhdaY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/i43LfvJDHvmYV2caiY7IrUyhdaY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/i43LfvJDHvmYV2caiY7IrUyhdaY.jpeg 1086w\"}},Xi6aaCKb0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:723,intrinsicWidth:1086,pixelHeight:723,pixelWidth:1086,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 58px) / 2, 1px)`,src:\"https://framerusercontent.com/images/i43LfvJDHvmYV2caiY7IrUyhdaY.jpeg\",srcSet:\"https://framerusercontent.com/images/i43LfvJDHvmYV2caiY7IrUyhdaY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/i43LfvJDHvmYV2caiY7IrUyhdaY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/i43LfvJDHvmYV2caiY7IrUyhdaY.jpeg 1086w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:723,intrinsicWidth:1086,pixelHeight:723,pixelWidth:1086,sizes:\"571px\",src:\"https://framerusercontent.com/images/i43LfvJDHvmYV2caiY7IrUyhdaY.jpeg\",srcSet:\"https://framerusercontent.com/images/i43LfvJDHvmYV2caiY7IrUyhdaY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/i43LfvJDHvmYV2caiY7IrUyhdaY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/i43LfvJDHvmYV2caiY7IrUyhdaY.jpeg 1086w\"},className:\"framer-1rjae3m\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WZHZ2GIkc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2133,intrinsicWidth:3200,pixelHeight:2133,pixelWidth:3200,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,src:\"https://framerusercontent.com/images/woD1E6mnUU9nzrbiWQdGSiPy2wk.jpeg\",srcSet:\"https://framerusercontent.com/images/woD1E6mnUU9nzrbiWQdGSiPy2wk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/woD1E6mnUU9nzrbiWQdGSiPy2wk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/woD1E6mnUU9nzrbiWQdGSiPy2wk.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/woD1E6mnUU9nzrbiWQdGSiPy2wk.jpeg 3200w\"}},Xi6aaCKb0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2133,intrinsicWidth:3200,pixelHeight:2133,pixelWidth:3200,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 58px) / 2, 1px)`,src:\"https://framerusercontent.com/images/woD1E6mnUU9nzrbiWQdGSiPy2wk.jpeg\",srcSet:\"https://framerusercontent.com/images/woD1E6mnUU9nzrbiWQdGSiPy2wk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/woD1E6mnUU9nzrbiWQdGSiPy2wk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/woD1E6mnUU9nzrbiWQdGSiPy2wk.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/woD1E6mnUU9nzrbiWQdGSiPy2wk.jpeg 3200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2133,intrinsicWidth:3200,pixelHeight:2133,pixelWidth:3200,sizes:\"571px\",src:\"https://framerusercontent.com/images/woD1E6mnUU9nzrbiWQdGSiPy2wk.jpeg\",srcSet:\"https://framerusercontent.com/images/woD1E6mnUU9nzrbiWQdGSiPy2wk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/woD1E6mnUU9nzrbiWQdGSiPy2wk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/woD1E6mnUU9nzrbiWQdGSiPy2wk.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/woD1E6mnUU9nzrbiWQdGSiPy2wk.jpeg 3200w\"},className:\"framer-nxwwrh\"})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-114mk4i\",\"data-framer-name\":\"Team\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4gotot\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pz4uok\",\"data-styles-preset\":\"V5nk717xE\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4cfb3a28-a190-4230-b1db-5025cd040ee9, rgb(26, 28, 30))\"},children:\"Meet the team\"})}),className:\"framer-1t2eudg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m2k7pp\",\"data-styles-preset\":\"JftXXIuwg\",children:\"We're a tight-knit team committed to solving problems at the cutting edge of AI\"})}),className:\"framer-1asozac\",\"data-framer-name\":\"Subtext\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vdeoqj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:230,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oemrk5-container\",nodeId:\"FWJhGZez5\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(TeamMember,{height:\"100%\",id:\"FWJhGZez5\",l0Fi0sJ4j:\"Ex-DI lacrosse player \u2219 Avid journaler \u2219 Charcuterie connoisseur\",layoutId:\"FWJhGZez5\",lf_3BCLec:addImageAlt({src:\"https://framerusercontent.com/images/F4PHXRBJYrUOm9EsAZJ0e837ZU.png\"},\"\"),Lq2MI72jB:\"Chief of Staff\",v0E1m9ctD:\"Alex Tsai\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:230,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ocwmd-container\",nodeId:\"UtluC7Yhl\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(TeamMember,{height:\"100%\",id:\"UtluC7Yhl\",l0Fi0sJ4j:\"Aspiring at-home pizzaiolo \u2219 Amateur bodysurfer \u2219 Babylon 5 fan\",layoutId:\"UtluC7Yhl\",lf_3BCLec:addImageAlt({src:\"https://framerusercontent.com/images/vxiiB0mwMc3Px0JvAQXRt4nSQA.png\"},\"\"),Lq2MI72jB:\"Software Engineer\",v0E1m9ctD:\"Carlos Lenz\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:230,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13tkz2r-container\",nodeId:\"cCTaEuR2K\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(TeamMember,{height:\"100%\",id:\"cCTaEuR2K\",l0Fi0sJ4j:\"Early Dogecoin investor \u2219 Animal-assisted therapy dog volunteer \u2219 Chonk\",layoutId:\"cCTaEuR2K\",Lq2MI72jB:\"Chief Happiness Officer\",v0E1m9ctD:\"Duplo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:230,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nqba3f-container\",nodeId:\"ZYtHFICjG\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(TeamMember,{height:\"100%\",id:\"ZYtHFICjG\",l0Fi0sJ4j:\"Urban farmer \u2219 Indie game tinkerer \u2219 Board game strategist\",layoutId:\"ZYtHFICjG\",lf_3BCLec:addImageAlt({src:\"https://framerusercontent.com/images/e2FLwXzfjUwSpheEHuSH5IPgNg.png\"},\"\"),Lq2MI72jB:\"Software Engineer\",v0E1m9ctD:\"Greg Solo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:230,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u3qng0-container\",nodeId:\"erjoswK2I\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(TeamMember,{height:\"100%\",id:\"erjoswK2I\",l0Fi0sJ4j:\"Pilot \u2219 Aspiring special effects artist \u2219 Melted cheese enthusiast\",layoutId:\"erjoswK2I\",lf_3BCLec:addImageAlt({src:\"https://framerusercontent.com/images/kylpuC9J5tkT9XbLqGgPUUKae4U.png\"},\"\"),Lq2MI72jB:\"Co-founder and CEO\",v0E1m9ctD:\"Kevin Moody\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:230,children:/*#__PURE__*/_jsx(Container,{className:\"framer-118lkp7-container\",nodeId:\"c_0JKQ4m9\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(TeamMember,{height:\"100%\",id:\"c_0JKQ4m9\",l0Fi0sJ4j:\"Writer \u2219 Cookie monster \u2219 Book hoarder \u2219 Mom-a-Lot \u2219 Camping nut\",layoutId:\"c_0JKQ4m9\",lf_3BCLec:addImageAlt({src:\"https://framerusercontent.com/images/EeXos6jONYDdukPgZ82G00NrNrQ.png\"},\"\"),Lq2MI72jB:\"Customer Success\",v0E1m9ctD:\"Maile Pedersen\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:230,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bo45bl-container\",nodeId:\"WKXoDKZEe\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(TeamMember,{height:\"100%\",id:\"WKXoDKZEe\",l0Fi0sJ4j:\"Ex-basketball player \u2219 Dad \u2219 Self-proclaimed pasta chef\",layoutId:\"WKXoDKZEe\",lf_3BCLec:addImageAlt({src:\"https://framerusercontent.com/images/oib6R5QOcJTBecm4MqVihuIsg.png\"},\"\"),Lq2MI72jB:\"Software Engineer\",v0E1m9ctD:\"Predrag Samard\u017Ei\u0107\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:230,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ebur3s-container\",nodeId:\"z9fPXZmtk\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(TeamMember,{height:\"100%\",id:\"z9fPXZmtk\",l0Fi0sJ4j:\"Corgi mom \u2219 Cyclist \u2219 Reigning team skribbl.io champ\",layoutId:\"z9fPXZmtk\",lf_3BCLec:addImageAlt({src:\"https://framerusercontent.com/images/lvWuDfA3pe2nj2d6jyM5wT3slA.png\"},\"\"),Lq2MI72jB:\"Lead Designer\",v0E1m9ctD:\"Priscilla Mok\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:230,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bupbn6-container\",nodeId:\"QburMhxBJ\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(TeamMember,{height:\"100%\",id:\"QburMhxBJ\",l0Fi0sJ4j:\"PNW hiker \u2219 Proud dog dad \u2219 Card collector \u2219 Factorio fan\",layoutId:\"QburMhxBJ\",lf_3BCLec:addImageAlt({src:\"https://framerusercontent.com/images/0w2Q51iFuX2dtR77npx2QKotHs.png\"},\"\"),Lq2MI72jB:\"Engeering Team Lead\",v0E1m9ctD:\"Scott Mackie\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:254,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2tryqh-container\",nodeId:\"yNaorrNoj\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(TeamMember,{height:\"100%\",id:\"yNaorrNoj\",l0Fi0sJ4j:\"Ex-wannabe guitarist \u2219 Switched from jazz to iOS gigs \u2219 Vinyl collector obviously\",layoutId:\"yNaorrNoj\",lf_3BCLec:addImageAlt({src:\"https://framerusercontent.com/images/HsPyqJLjyVjBfUwgBbO6XY9vI.png\"},\"\"),Lq2MI72jB:\"Software Engineer\",v0E1m9ctD:\"Strahinja Mihajlovic\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WZHZ2GIkc:{height:230}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:254,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tczewj-container\",nodeId:\"IUMiBsGl3\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(TeamMember,{height:\"100%\",id:\"IUMiBsGl3\",l0Fi0sJ4j:\"Plant dad \u2219 Bedroom DJ \u2219 BBQ fanatic \",layoutId:\"IUMiBsGl3\",lf_3BCLec:addImageAlt({src:\"https://framerusercontent.com/images/O9DagkDxD13milvdoX6ivrwUxjA.png\"},\"\"),Lq2MI72jB:\"Software Engineer\",v0E1m9ctD:\"Tarek Al-Mouhtasseb\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:230,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u0szj2-container\",nodeId:\"nMaPxg_qv\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(TeamMember,{height:\"100%\",id:\"nMaPxg_qv\",l0Fi0sJ4j:\"Recovering Japanophile \u2219 Wannabe designer \u2219 Physical-turned digital book hoarder\",layoutId:\"nMaPxg_qv\",lf_3BCLec:addImageAlt({src:\"https://framerusercontent.com/images/OS2tV4QISgTvcRvnUiVSzaMHdIA.png\"},\"\"),Lq2MI72jB:\"Software Engineer\",v0E1m9ctD:\"Wilson Lau\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17j57wv\",\"data-framer-name\":\"Roles\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fjibw8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bqpudw\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pz4uok\",\"data-styles-preset\":\"V5nk717xE\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4cfb3a28-a190-4230-b1db-5025cd040ee9, rgb(26, 28, 30))\"},children:\"Open roles\"})}),className:\"framer-1qoa1j3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-m2k7pp\",\"data-styles-preset\":\"JftXXIuwg\",children:[\"Shape the future with us at Mem. In addition to interesting and challenging work at the frontier of AI that enables people to do more with their thoughts, we offer competitive salary and meaningful equity, comprehensive health benefits, 21 days paid vacation, family planning support and leave, and \",/*#__PURE__*/_jsx(Link,{href:\"https://mem-labs-inc.breezy.hr/\",motionChild:true,nodeId:\"VtXkXhpJp\",openInNewTab:true,scopeId:\"dhJ4PSsVK\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sbcrqm\",\"data-styles-preset\":\"N4cH5VlsQ\",children:\"more\"})}),\".\"]})}),className:\"framer-1b8r177\",\"data-framer-name\":\"Subtext\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2p5qy9\",\"data-framer-name\":\"Role\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a40gsq\",\"data-framer-name\":\"icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oiz2go-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XgkX46lIc\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-dfac4a67-4238-4aab-bc86-20fbdeb40318, rgb(242, 46, 97))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"XgkX46lIc\",layoutId:\"XgkX46lIc\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m2k7pp\",\"data-styles-preset\":\"JftXXIuwg\",style:{\"--framer-text-color\":\"var(--token-4cfb3a28-a190-4230-b1db-5025cd040ee9, rgb(26, 28, 30))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://mem-labs-inc.breezy.hr/p/333a8dbee3f5-senior-backend-software-engineer\",motionChild:true,nodeId:\"Dst93LcPK\",openInNewTab:true,scopeId:\"dhJ4PSsVK\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-dseeqi\",\"data-styles-preset\":\"h7VS1tIkg\",children:\"Senior Backend Software Engineer\"})})})}),className:\"framer-1hlbxy8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10s4q5u\",\"data-framer-name\":\"Role\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17hr24p\",\"data-framer-name\":\"icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1weywac-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RkirU1buA\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-dfac4a67-4238-4aab-bc86-20fbdeb40318, rgb(242, 46, 97))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"RkirU1buA\",layoutId:\"RkirU1buA\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m2k7pp\",\"data-styles-preset\":\"JftXXIuwg\",style:{\"--framer-text-color\":\"var(--token-4cfb3a28-a190-4230-b1db-5025cd040ee9, rgb(26, 28, 30))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://mem-labs-inc.breezy.hr/p/33d58c2eb973-staff-backend-software-engineer\",motionChild:true,nodeId:\"CoNxZ34Kc\",openInNewTab:true,scopeId:\"dhJ4PSsVK\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-dseeqi\",\"data-styles-preset\":\"h7VS1tIkg\",children:\"Staff Backend Software Engineer\"})})})}),className:\"framer-1gkd2vd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:671,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-15jiu1d-container\",nodeId:\"cmNIFT9hT\",scopeId:\"dhJ4PSsVK\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WZHZ2GIkc:{variant:\"xGHGFZY_G\"}},children:/*#__PURE__*/_jsx(CallToAction,{height:\"100%\",id:\"cmNIFT9hT\",layoutId:\"cmNIFT9hT\",LONpKwnq6:\"Trade in your notes app for an AI thought partner\",style:{width:\"100%\"},variant:\"TvUq5MrxS\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GFqAs.framer-13d1gpj, .framer-GFqAs .framer-13d1gpj { display: block; }\",\".framer-GFqAs.framer-vk2d1v { align-content: center; align-items: center; background-color: var(--token-2546f2ec-502d-4b32-8634-ef8a4d8c3ed0, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1400px; }\",\".framer-GFqAs .framer-zz11m-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); opacity: 0.32; position: absolute; top: calc(34.53893776474424% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-GFqAs .framer-gacnqd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GFqAs .framer-18q6290 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 48px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-GFqAs .framer-gm46bx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 600px; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-GFqAs .framer-13s2vpb-container, .framer-GFqAs .framer-oemrk5-container, .framer-GFqAs .framer-1ocwmd-container, .framer-GFqAs .framer-13tkz2r-container, .framer-GFqAs .framer-1nqba3f-container, .framer-GFqAs .framer-1u3qng0-container, .framer-GFqAs .framer-118lkp7-container, .framer-GFqAs .framer-bo45bl-container, .framer-GFqAs .framer-ebur3s-container, .framer-GFqAs .framer-bupbn6-container, .framer-GFqAs .framer-1u0szj2-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-GFqAs .framer-1ksahjy, .framer-GFqAs .framer-1t2eudg, .framer-GFqAs .framer-1asozac, .framer-GFqAs .framer-1qoa1j3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GFqAs .framer-37znjh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-GFqAs .framer-mx2kc5-container { flex: none; height: 48px; position: relative; width: auto; }\",\".framer-GFqAs .framer-c3c7oi, .framer-GFqAs .framer-114mk4i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 40px 24px 40px 24px; position: relative; width: 1200px; }\",\".framer-GFqAs .framer-664eyh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GFqAs .framer-18al90q-container, .framer-GFqAs .framer-15jiu1d-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-GFqAs .framer-e871lk, .framer-GFqAs .framer-17zvnnt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GFqAs .framer-anuu53, .framer-GFqAs .framer-1q0tlca, .framer-GFqAs .framer-1rjae3m, .framer-GFqAs .framer-nxwwrh { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: 1 0 0px; height: 400px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GFqAs .framer-4gotot { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 32px 0px; position: relative; width: 1152px; }\",\".framer-GFqAs .framer-vdeoqj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 56px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GFqAs .framer-2tryqh-container, .framer-GFqAs .framer-1tczewj-container { flex: none; height: auto; min-height: 254px; position: relative; width: auto; }\",\".framer-GFqAs .framer-17j57wv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 80px 24px 80px 24px; position: relative; scroll-margin-top: 100px; width: 1200px; }\",\".framer-GFqAs .framer-1fjibw8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1152px; }\",\".framer-GFqAs .framer-bqpudw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-GFqAs .framer-1b8r177 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-GFqAs .framer-2p5qy9, .framer-GFqAs .framer-10s4q5u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GFqAs .framer-1a40gsq, .framer-GFqAs .framer-17hr24p { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 25px); justify-content: center; overflow: visible; padding: 5px 0px 0px 0px; position: relative; width: 20px; }\",\".framer-GFqAs .framer-1oiz2go-container, .framer-GFqAs .framer-1weywac-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-GFqAs .framer-1hlbxy8, .framer-GFqAs .framer-1gkd2vd { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-GFqAs.framer-vk2d1v, .framer-GFqAs .framer-gacnqd, .framer-GFqAs .framer-18q6290, .framer-GFqAs .framer-gm46bx, .framer-GFqAs .framer-c3c7oi, .framer-GFqAs .framer-664eyh, .framer-GFqAs .framer-e871lk, .framer-GFqAs .framer-17zvnnt, .framer-GFqAs .framer-114mk4i, .framer-GFqAs .framer-4gotot, .framer-GFqAs .framer-vdeoqj, .framer-GFqAs .framer-17j57wv, .framer-GFqAs .framer-1fjibw8, .framer-GFqAs .framer-bqpudw, .framer-GFqAs .framer-2p5qy9, .framer-GFqAs .framer-1a40gsq, .framer-GFqAs .framer-10s4q5u, .framer-GFqAs .framer-17hr24p { gap: 0px; } .framer-GFqAs.framer-vk2d1v > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-GFqAs.framer-vk2d1v > :first-child, .framer-GFqAs .framer-gacnqd > :first-child, .framer-GFqAs .framer-18q6290 > :first-child, .framer-GFqAs .framer-gm46bx > :first-child, .framer-GFqAs .framer-c3c7oi > :first-child, .framer-GFqAs .framer-664eyh > :first-child, .framer-GFqAs .framer-114mk4i > :first-child, .framer-GFqAs .framer-4gotot > :first-child, .framer-GFqAs .framer-17j57wv > :first-child, .framer-GFqAs .framer-1fjibw8 > :first-child, .framer-GFqAs .framer-bqpudw > :first-child { margin-top: 0px; } .framer-GFqAs.framer-vk2d1v > :last-child, .framer-GFqAs .framer-gacnqd > :last-child, .framer-GFqAs .framer-18q6290 > :last-child, .framer-GFqAs .framer-gm46bx > :last-child, .framer-GFqAs .framer-c3c7oi > :last-child, .framer-GFqAs .framer-664eyh > :last-child, .framer-GFqAs .framer-114mk4i > :last-child, .framer-GFqAs .framer-4gotot > :last-child, .framer-GFqAs .framer-17j57wv > :last-child, .framer-GFqAs .framer-1fjibw8 > :last-child, .framer-GFqAs .framer-bqpudw > :last-child { margin-bottom: 0px; } .framer-GFqAs .framer-gacnqd > *, .framer-GFqAs .framer-c3c7oi > *, .framer-GFqAs .framer-664eyh > *, .framer-GFqAs .framer-114mk4i > *, .framer-GFqAs .framer-4gotot > *, .framer-GFqAs .framer-17j57wv > *, .framer-GFqAs .framer-1fjibw8 > *, .framer-GFqAs .framer-bqpudw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GFqAs .framer-18q6290 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-GFqAs .framer-gm46bx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-GFqAs .framer-e871lk > *, .framer-GFqAs .framer-17zvnnt > *, .framer-GFqAs .framer-1a40gsq > *, .framer-GFqAs .framer-17hr24p > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GFqAs .framer-e871lk > :first-child, .framer-GFqAs .framer-17zvnnt > :first-child, .framer-GFqAs .framer-vdeoqj > :first-child, .framer-GFqAs .framer-2p5qy9 > :first-child, .framer-GFqAs .framer-1a40gsq > :first-child, .framer-GFqAs .framer-10s4q5u > :first-child, .framer-GFqAs .framer-17hr24p > :first-child { margin-left: 0px; } .framer-GFqAs .framer-e871lk > :last-child, .framer-GFqAs .framer-17zvnnt > :last-child, .framer-GFqAs .framer-vdeoqj > :last-child, .framer-GFqAs .framer-2p5qy9 > :last-child, .framer-GFqAs .framer-1a40gsq > :last-child, .framer-GFqAs .framer-10s4q5u > :last-child, .framer-GFqAs .framer-17hr24p > :last-child { margin-right: 0px; } .framer-GFqAs .framer-vdeoqj > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-GFqAs .framer-2p5qy9 > *, .framer-GFqAs .framer-10s4q5u > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 810px) and (max-width: 1399px) { .framer-GFqAs.framer-vk2d1v { width: 810px; } .framer-GFqAs .framer-18q6290 { padding: 24px 24px 0px 24px; } .framer-GFqAs .framer-c3c7oi, .framer-GFqAs .framer-114mk4i, .framer-GFqAs .framer-4gotot, .framer-GFqAs .framer-17j57wv, .framer-GFqAs .framer-1fjibw8 { width: 100%; } .framer-GFqAs .framer-anuu53, .framer-GFqAs .framer-1q0tlca, .framer-GFqAs .framer-1rjae3m, .framer-GFqAs .framer-nxwwrh { height: 300px; } .framer-GFqAs .framer-vdeoqj { align-content: flex-start; align-items: flex-start; justify-content: center; }}\",\"@media (max-width: 809px) { .framer-GFqAs.framer-vk2d1v { width: 390px; } .framer-GFqAs .framer-18q6290 { padding: 16px 24px 0px 24px; } .framer-GFqAs .framer-13s2vpb-container { order: 0; } .framer-GFqAs .framer-1ksahjy { order: 1; } .framer-GFqAs .framer-37znjh { order: 2; width: 100%; } .framer-GFqAs .framer-mx2kc5-container { order: 3; } .framer-GFqAs .framer-c3c7oi, .framer-GFqAs .framer-114mk4i, .framer-GFqAs .framer-4gotot, .framer-GFqAs .framer-17j57wv, .framer-GFqAs .framer-1fjibw8, .framer-GFqAs .framer-1b8r177 { width: 100%; } .framer-GFqAs .framer-e871lk, .framer-GFqAs .framer-17zvnnt { flex-direction: column; } .framer-GFqAs .framer-anuu53, .framer-GFqAs .framer-1q0tlca, .framer-GFqAs .framer-1rjae3m, .framer-GFqAs .framer-nxwwrh { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 300px; width: 100%; } .framer-GFqAs .framer-vdeoqj { justify-content: center; } .framer-GFqAs .framer-1tczewj-container { min-height: 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-GFqAs .framer-e871lk, .framer-GFqAs .framer-17zvnnt { gap: 0px; } .framer-GFqAs .framer-e871lk > *, .framer-GFqAs .framer-17zvnnt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GFqAs .framer-e871lk > :first-child, .framer-GFqAs .framer-17zvnnt > :first-child { margin-top: 0px; } .framer-GFqAs .framer-e871lk > :last-child, .framer-GFqAs .framer-17zvnnt > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5134\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Xi6aaCKb0\":{\"layout\":[\"fixed\",\"auto\"]},\"WZHZ2GIkc\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"koStxhBMW\":{\"pattern\":\":koStxhBMW\",\"name\":\"roles\"}}\n * @framerResponsiveScreen\n */const FramerdhJ4PSsVK=withCSS(Component,css,\"framer-GFqAs\");export default FramerdhJ4PSsVK;FramerdhJ4PSsVK.displayName=\"Pricing\";FramerdhJ4PSsVK.defaultProps={height:5134,width:1400};addFonts(FramerdhJ4PSsVK,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PatternFonts,...TagFonts,...ButtonPrimaryFonts,...VideoFonts,...TeamMemberFonts,...FeatherFonts,...CallToActionFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdhJ4PSsVK\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Xi6aaCKb0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WZHZ2GIkc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1400\",\"framerIntrinsicHeight\":\"5134\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"koStxhBMW\\\":{\\\"pattern\\\":\\\":koStxhBMW\\\",\\\"name\\\":\\\"roles\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "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", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "bio", "height", "id", "image", "name1", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "lf_3BCLec", "v0E1m9ctD", "Lq2MI72jB", "l0Fi0sJ4j", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "RichText2", "css", "FramertbyLvmsPn", "withCSS", "tbyLvmsPn_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "PatternFonts", "getFonts", "Pattern", "TagFonts", "Fi9LUfRJg_default", "ButtonPrimaryFonts", "PSJh510mh_default", "VideoFonts", "Video", "TeamMemberFonts", "tbyLvmsPn_default", "FeatherFonts", "Icon", "CallToActionFonts", "YLyhgdMXA_default", "breakpoints", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "Pattern", "Fi9LUfRJg_default", "RichText2", "x", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "PSJh510mh_default", "Video", "Image2", "tbyLvmsPn_default", "Link", "Icon", "YLyhgdMXA_default", "css", "FramerdhJ4PSsVK", "withCSS", "dhJ4PSsVK_default", "addFonts", "PatternFonts", "TagFonts", "ButtonPrimaryFonts", "VideoFonts", "TeamMemberFonts", "FeatherFonts", "CallToActionFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
