{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jcU3ZxjtR7k7aXRM1azZ/Video.js", "ssg:https://framerusercontent.com/modules/P0HBbKIGwPLl9Gw6uM9K/xu2zNzKZXfdIiXfXBmzb/PmhrnlWRk.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useMotionValueEvent}from\"framer-motion\";import{useRef,useEffect,useMemo,useCallback,memo}from\"react\";import{ControlType,addPropertyControls,useIsInCurrentNavigationTarget}from\"framer\";import{useOnEnter,useOnExit,defaultEvents,useIsOnCanvas,useIsBrowserSafari,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useAutoMotionValue}from\"https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0\";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});}/**\n * For the useEffect hook to change progress of the video on state change.\n * It was causing the video to restart on hydration\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing,canvasPlay,muted,playsinline,controls,progress,objectFit,backgroundColor,radius,topLeft,topRight,bottomRight,bottomLeft,isMixed,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,restartOnEnter,posterEnabled,startTime:startTimeProp,volume,loop}=props;const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const videoRef=useRef();const isSafari=useIsBrowserSafari();const requestingPlay=useRef(false);const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const shouldPlay=!isOnCanvas||canvasPlay;const autoPlay=useMemo(()=>playing,[]);const isMuted=useMemo(()=>isOnCanvas?true:muted,[isOnCanvas,muted]);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();},[]);// Pause/play via props\nuseEffect(()=>{if(playing&&shouldPlay)play();else pause();},[playing,canvasPlay]);// Change progress via prop\nuseEffect(()=>{if(isMountedAndReadyForProgressChanges)setProgress(startTime*.01);else isMountedAndReadyForProgressChanges=true;},[startTimeProp,srcFile,srcUrl]);const videoProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:newValue=>{setProgress(newValue);}});// Allow scrubbing with MotionValue\nuseMotionValueEvent(videoProgress,\"change\",latest=>{if(!isOnCanvas)setProgress(latest);});// (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(()=>{if(srcType===SrcType.Url)return srcUrl;if(srcType===SrcType.Video)return srcFile;},[srcType,srcFile,srcUrl]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoPlay){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=volume/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(videoRef.current&&videoRef.current.currentTime<.3)setProgress(startTime*.01);if(shouldPlay&&videoRef.current&&autoPlay)play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoPlay&&shouldPlay,poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isMuted,playsInline:playsinline,style:{width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,autoPlay:true,canvasPlay:false,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For Youtube, use the Youtube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===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:[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,]},canvasPlay:{type:ControlType.Boolean,title:\"On Canvas\",enabledTitle:\"Play\",disabledTitle:\"Pause\",hidden(props){return props.autoPlay===false;}},// 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\":{\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (a2fb474)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jcU3ZxjtR7k7aXRM1azZ/Video.js\";import HeaderSyncly from\"#framer/local/canvasComponent/E_RyWp14h/E_RyWp14h.js\";import FooterSyncly from\"#framer/local/canvasComponent/iEcYeTXrf/iEcYeTXrf.js\";import GetStartedWithSynclyToday from\"#framer/local/canvasComponent/wIEsan38H/wIEsan38H.js\";import*as sharedStyle1 from\"#framer/local/css/CJAh4iw5o/CJAh4iw5o.js\";import*as sharedStyle from\"#framer/local/css/pCbcG4KNZ/pCbcG4KNZ.js\";import metadataProvider from\"#framer/local/webPageMetadata/PmhrnlWRk/PmhrnlWRk.js\";const HeaderSynclyFonts=getFonts(HeaderSyncly);const VideoFonts=getFonts(Video);const GetStartedWithSynclyTodayFonts=getFonts(GetStartedWithSynclyToday);const FooterSynclyFonts=getFonts(FooterSyncly);const breakpoints={DNCOtaEbR:\"(min-width: 810px) and (max-width: 1199px)\",qZDqXFpTB:\"(min-width: 1200px)\",yeh07Or2e:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-xDM7t\";const variantClassNames={DNCOtaEbR:\"framer-v-v87nxp\",qZDqXFpTB:\"framer-v-1ilcgfl\",yeh07Or2e:\"framer-v-vshknc\"};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"qZDqXFpTB\",Phone:\"yeh07Or2e\",Tablet:\"DNCOtaEbR\"};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:\"qZDqXFpTB\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-xDM7t`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-xDM7t`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"yeh07Or2e\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"DNCOtaEbR\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"DNCOtaEbR\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"yeh07Or2e\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"qZDqXFpTB\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ilcgfl\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNCOtaEbR:{width:\"810px\"},yeh07Or2e:{height:44,width:\"390px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"1200px\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hien6f-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNCOtaEbR:{variant:\"igRDjXVIy\"},yeh07Or2e:{variant:\"WeE3hA69Q\"}},children:/*#__PURE__*/_jsx(HeaderSyncly,{height:\"100%\",id:\"Ezz6not5h\",layoutId:\"Ezz6not5h\",sKOxjaOGR:\"AI-powered Insights\",style:{height:\"100%\",width:\"100%\"},variant:\"hb0wbZW5u\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pemic4 hidden-vshknc\",\"data-framer-name\":\"Hero Video\",name:\"Hero Video\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k7y7lj\",\"data-framer-name\":\"who we are\",name:\"who we are\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15gpanc\",\"data-framer-name\":\"Frame 1707\",name:\"Frame 1707\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-n979fr\",\"data-styles-preset\":\"pCbcG4KNZ\",children:[\"Meet the team \",/*#__PURE__*/_jsx(\"br\",{}),\"building Syncly\"]})}),className:\"framer-t577p1\",\"data-framer-name\":\"Who we are\",fonts:[\"Inter\"],name:\"Who we are\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNCOtaEbR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18w8p69\",\"data-styles-preset\":\"CJAh4iw5o\",children:[\"We are a San Francisco-based AI SaaS company founded by a serial entrepreneur \",/*#__PURE__*/_jsx(\"br\",{}),\"who successfully exited their last AI company in 2019.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18w8p69\",\"data-styles-preset\":\"CJAh4iw5o\",style:{\"--framer-text-alignment\":\"left\"},children:\"We are a San Francisco-based AI SaaS company founded by a serial entrepreneur who successfully exited their last AI company in 2019.\"})}),className:\"framer-10h3bnc\",\"data-framer-name\":\"Script\",fonts:[\"Inter\"],name:\"Script\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RxGf3eiJV\"},nodeId:\"jesVysJ_b\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-axv0ut framer-16fuexc\",\"data-border\":true,\"data-framer-name\":\"CTA\",name:\"CTA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(91, 64, 222)\"},children:\"Meet Syncly founders\"})}),className:\"framer-1mslwz0\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c9a2hp\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1408n1x-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,canvasPlay:true,controls:false,height:\"100%\",id:\"PC8mmkCd_\",isMixedBorderRadius:false,layoutId:\"PC8mmkCd_\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/l7fowoPg2sZXir4bWFYUHKZo.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:21.2,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-8t73s1 hidden-v87nxp\",\"data-framer-name\":\"customer\",name:\"customer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5uoipn\",\"data-framer-name\":\"Group 47\",name:\"Group 47\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Backed by\"})}),className:\"framer-13r6xke\",\"data-framer-name\":\"Backed by\",fonts:[\"CUSTOM;Pretendard Light\"],name:\"Backed by\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15yl2h8\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Combinator logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(615),sizes:\"184px\",src:\"https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png\",srcSet:\"https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png 1155w\"},className:\"framer-1hhhicw\",\"data-framer-name\":\"image 10\",name:\"image 10\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Softbank logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(622),sizes:\"174px\",src:\"https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png\",srcSet:\"https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png 4096w\"},className:\"framer-hnp0pd\",\"data-framer-name\":\"image 11\",name:\"image 11\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"500 logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(611),sizes:\"96px\",src:\"https://framerusercontent.com/images/0dOVTgodpUZupUaiMeBOzUj5nfQ.png\",srcSet:\"https://framerusercontent.com/images/0dOVTgodpUZupUaiMeBOzUj5nfQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/0dOVTgodpUZupUaiMeBOzUj5nfQ.png 872w\"},className:\"framer-1hvnobh\",\"data-framer-name\":\"image 12\",name:\"image 12\"})]})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-kx7zgx hidden-1ilcgfl\",\"data-framer-name\":\"customer\",name:\"customer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v03q2d\",\"data-framer-name\":\"Group 47\",name:\"Group 47\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Backed by\"})}),className:\"framer-145rxz\",\"data-framer-name\":\"Backed by\",fonts:[\"CUSTOM;Pretendard Light\"],name:\"Backed by\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lecb77\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNCOtaEbR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(657.2),sizes:\"184px\",src:\"https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png\",srcSet:\"https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png 1155w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"184px\",src:\"https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png\",srcSet:\"https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png 1155w\"},className:\"framer-bk3bml\",\"data-framer-name\":\"image 10\",name:\"image 10\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNCOtaEbR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(664.2),sizes:\"174px\",src:\"https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png\",srcSet:\"https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"174px\",src:\"https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png\",srcSet:\"https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png 4096w\"},className:\"framer-x7on84\",\"data-framer-name\":\"image 11\",name:\"image 11\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNCOtaEbR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(653.2),sizes:\"96px\",src:\"https://framerusercontent.com/images/0dOVTgodpUZupUaiMeBOzUj5nfQ.png\",srcSet:\"https://framerusercontent.com/images/0dOVTgodpUZupUaiMeBOzUj5nfQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/0dOVTgodpUZupUaiMeBOzUj5nfQ.png 872w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"96px\",src:\"https://framerusercontent.com/images/0dOVTgodpUZupUaiMeBOzUj5nfQ.png\",srcSet:\"https://framerusercontent.com/images/0dOVTgodpUZupUaiMeBOzUj5nfQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/0dOVTgodpUZupUaiMeBOzUj5nfQ.png 872w\"},className:\"framer-1lcnh2h\",\"data-framer-name\":\"image 12\",name:\"image 12\"})})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nu7g00\",\"data-framer-name\":\"who we are\",name:\"who we are\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tywy1z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18w8p69\",\"data-styles-preset\":\"CJAh4iw5o\",children:\"With know-how and technical experience from the previous start-up, we focus on helping all customer-facing teams understand urgent issues by analyzing customer interactions \u2014emails, chats, and others. Syncly pulls all your customer communication data across various channels into our platform. Then our AI automatically categorizes data, and surfaces trending topics and sentiments to give you full customer visibility.\"})}),className:\"framer-uwo3gp\",\"data-framer-name\":\"We are a Boston based, AI B2B SaaS company founded by a serial entrepreneur and early members who have successfully exited its AI powered automated manufacturing QA solution in 2019 via M&A. With know-how and technical experience from previous start-up, we focus on helping product team build better product more efficiently. Syncly helps you collect, organize, and analyze user feedbacks from various channels. So your product is always in sync with users, hence PLG-ready.\",fonts:[\"Inter\"],name:\"We are a Boston based, AI B2B SaaS company founded by a serial entrepreneur and early members who have successfully exited its AI powered automated manufacturing QA solution in 2019 via M&A. With know-how and technical experience from previous start-up, we focus on helping product team build better product more efficiently. Syncly helps you collect, organize, and analyze user feedbacks from various channels. So your product is always in sync with users, hence PLG-ready.\",verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ahd1tg hidden-vshknc\"})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNCOtaEbR:{y:951.2},yeh07Or2e:{y:905.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:385,width:\"100vw\",y:889,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ka840y-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNCOtaEbR:{variant:\"lVFwnl03h\"},yeh07Or2e:{variant:\"XrAsSK8C8\"}},children:/*#__PURE__*/_jsx(GetStartedWithSynclyToday,{height:\"100%\",id:\"okhjexXv6\",layoutId:\"okhjexXv6\",style:{width:\"100%\"},variant:\"vPC51D5bH\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNCOtaEbR:{y:1336.2},yeh07Or2e:{y:1290.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:\"100vw\",y:1274,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4b3wp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DNCOtaEbR:{variant:\"cKomBK9cj\"},yeh07Or2e:{variant:\"dGEsYAqGy\"}},children:/*#__PURE__*/_jsx(FooterSyncly,{height:\"100%\",id:\"n1rRoaVgl\",layoutId:\"n1rRoaVgl\",style:{width:\"100%\"},variant:\"Rch2meUeA\",width:\"100%\"})})})})}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ygpzui hidden-1ilcgfl hidden-v87nxp\",\"data-framer-name\":\"who we are\",name:\"who we are\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2wvvt0\",\"data-framer-name\":\"Frame 1707\",name:\"Frame 1707\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-n979fr\",\"data-styles-preset\":\"pCbcG4KNZ\",children:[\"Meet the team\",/*#__PURE__*/_jsx(\"br\",{}),\"building Syncly\"]})}),className:\"framer-1lba6tz\",\"data-framer-name\":\"Who we are\",fonts:[\"Inter\"],name:\"Who we are\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nvy06b\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rtp3rv-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,canvasPlay:true,controls:false,height:\"100%\",id:\"kz1c9eGaD\",isMixedBorderRadius:false,layoutId:\"kz1c9eGaD\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/l7fowoPg2sZXir4bWFYUHKZo.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:21.2,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-wayej7 hidden-1ilcgfl\",\"data-framer-name\":\"customer\",name:\"customer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r702ut\",\"data-framer-name\":\"Group 47\",name:\"Group 47\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Backed by\"})}),className:\"framer-k0e1p\",\"data-framer-name\":\"Backed by\",fonts:[\"CUSTOM;Pretendard Light\"],name:\"Backed by\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tynp66\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yeh07Or2e:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(661.4000000000001),sizes:\"max((100vw - 116px) / 3, 1px)\",src:\"https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png\",srcSet:\"https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png 1155w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png\",srcSet:\"https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YRphoW7BeKPh7PPvXiqrr9FvpvQ.png 1155w\"},className:\"framer-13mq05w\",\"data-framer-name\":\"image 10\",name:\"image 10\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yeh07Or2e:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(668.4000000000001),sizes:\"max((100vw - 116px) / 3, 1px)\",src:\"https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png\",srcSet:\"https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png\",srcSet:\"https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZgRo4sRFwbMWfLqTMmDbYiTQ9c.png 4096w\"},className:\"framer-9k4pwt\",\"data-framer-name\":\"image 11\",name:\"image 11\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yeh07Or2e:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(657.4000000000001),sizes:\"max((100vw - 116px) / 3, 1px)\",src:\"https://framerusercontent.com/images/0dOVTgodpUZupUaiMeBOzUj5nfQ.png\",srcSet:\"https://framerusercontent.com/images/0dOVTgodpUZupUaiMeBOzUj5nfQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/0dOVTgodpUZupUaiMeBOzUj5nfQ.png 872w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/0dOVTgodpUZupUaiMeBOzUj5nfQ.png\",srcSet:\"https://framerusercontent.com/images/0dOVTgodpUZupUaiMeBOzUj5nfQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/0dOVTgodpUZupUaiMeBOzUj5nfQ.png 872w\"},className:\"framer-xhscks\",\"data-framer-name\":\"image 12\",name:\"image 12\"})})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9p13bv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18w8p69\",\"data-styles-preset\":\"CJAh4iw5o\",children:[\"We are a San Francisco-based \",/*#__PURE__*/_jsx(\"br\",{}),\"AI SaaS company founded by a serial entrepreneur who successfully exited their last AI company in 2019.\"]})}),className:\"framer-1w0znu\",\"data-framer-name\":\"Script\",fonts:[\"Inter\"],name:\"Script\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RxGf3eiJV\"},nodeId:\"AIx9d9OQa\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-11up46g framer-16fuexc\",\"data-border\":true,\"data-framer-name\":\"CTA\",name:\"CTA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(91, 64, 222)\"},children:\"Meet Syncly founders\"})}),className:\"framer-1nmfdwh\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-xDM7t { background: rgb(255, 255, 255); }`,\".framer-xDM7t.framer-16fuexc, .framer-xDM7t .framer-16fuexc { display: block; }\",\".framer-xDM7t.framer-1ilcgfl { align-content: center; align-items: center; background-color: #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: 1200px; }\",\".framer-xDM7t .framer-hien6f-container { flex: none; height: 64px; left: calc(50.00000000000002% - 1200px / 2); position: fixed; top: 0px; width: 1200px; z-index: 5; }\",\".framer-xDM7t .framer-pemic4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 48px 50px 48px; position: relative; width: 100%; }\",\".framer-xDM7t .framer-1k7y7lj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 48px 0px 48px; position: relative; width: 1200px; }\",\".framer-xDM7t .framer-15gpanc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-xDM7t .framer-t577p1 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-xDM7t .framer-10h3bnc { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 430px; word-break: break-word; word-wrap: break-word; }\",\".framer-xDM7t .framer-axv0ut { --border-bottom-width: 3px; --border-color: #5b40de; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 67px; height: 40px; justify-content: center; overflow: visible; padding: 10px 20px 10px 20px; position: relative; text-decoration: none; width: min-content; z-index: 1; }\",\".framer-xDM7t .framer-1mslwz0, .framer-xDM7t .framer-13r6xke, .framer-xDM7t .framer-145rxz, .framer-xDM7t .framer-k0e1p, .framer-xDM7t .framer-1nmfdwh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-xDM7t .framer-1c9a2hp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 447px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 619px; }\",\".framer-xDM7t .framer-1408n1x-container, .framer-xDM7t .framer-1ka840y-container, .framer-xDM7t .framer-4b3wp-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-xDM7t .framer-8t73s1, .framer-xDM7t .framer-kx7zgx { align-content: center; align-items: center; background-color: var(--token-bb98abb4-e69a-4288-b971-e9326f8ae1df, #4732c9); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 48px 0px 48px; position: relative; width: 1200px; }\",\".framer-xDM7t .framer-5uoipn, .framer-xDM7t .framer-v03q2d { 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: 24px 0px 24px 0px; position: relative; width: 610px; }\",\".framer-xDM7t .framer-15yl2h8, .framer-xDM7t .framer-1lecb77 { 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: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-xDM7t .framer-1hhhicw, .framer-xDM7t .framer-bk3bml { align-content: center; align-items: center; aspect-ratio: 4.422534872925176 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 42px); justify-content: center; padding: 0px; position: relative; width: 184px; }\",\".framer-xDM7t .framer-hnp0pd, .framer-xDM7t .framer-x7on84 { align-content: center; align-items: center; aspect-ratio: 6.260869708445712 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 28px); justify-content: center; padding: 0px; position: relative; width: 174px; }\",\".framer-xDM7t .framer-1hvnobh, .framer-xDM7t .framer-1lcnh2h { align-content: center; align-items: center; aspect-ratio: 1.9206350732732824 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 50px); justify-content: center; padding: 0px; position: relative; width: 96px; }\",\".framer-xDM7t .framer-nu7g00 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1104px; }\",\".framer-xDM7t .framer-1tywy1z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 980px; }\",\".framer-xDM7t .framer-uwo3gp { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xDM7t .framer-ahd1tg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 4px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xDM7t .framer-1ygpzui { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 144px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-xDM7t .framer-2wvvt0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xDM7t .framer-1lba6tz { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 298px; word-break: break-word; word-wrap: break-word; }\",\".framer-xDM7t .framer-nvy06b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xDM7t .framer-1rtp3rv-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-xDM7t .framer-wayej7 { align-content: center; align-items: center; background-color: var(--token-bb98abb4-e69a-4288-b971-e9326f8ae1df, #4732c9); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 48px 0px 48px; position: relative; width: 1px; }\",\".framer-xDM7t .framer-1r702ut { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-xDM7t .framer-1tynp66 { 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-xDM7t .framer-13mq05w { aspect-ratio: 4.422534872925176 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 45px); position: relative; width: 1px; }\",\".framer-xDM7t .framer-9k4pwt { aspect-ratio: 6.260869708445712 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 1px; }\",\".framer-xDM7t .framer-xhscks { aspect-ratio: 1.9206350732732824 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 104px); position: relative; width: 1px; }\",\".framer-xDM7t .framer-9p13bv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 101px; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-xDM7t .framer-1w0znu { flex: 1 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-xDM7t .framer-11up46g { --border-bottom-width: 3px; --border-color: #5b40de; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 10px 20px 10px 20px; position: relative; text-decoration: none; width: min-content; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xDM7t.framer-1ilcgfl, .framer-xDM7t .framer-pemic4, .framer-xDM7t .framer-15gpanc, .framer-xDM7t .framer-axv0ut, .framer-xDM7t .framer-1c9a2hp, .framer-xDM7t .framer-8t73s1, .framer-xDM7t .framer-5uoipn, .framer-xDM7t .framer-15yl2h8, .framer-xDM7t .framer-1hhhicw, .framer-xDM7t .framer-hnp0pd, .framer-xDM7t .framer-1hvnobh, .framer-xDM7t .framer-kx7zgx, .framer-xDM7t .framer-v03q2d, .framer-xDM7t .framer-1lecb77, .framer-xDM7t .framer-bk3bml, .framer-xDM7t .framer-x7on84, .framer-xDM7t .framer-1lcnh2h, .framer-xDM7t .framer-nu7g00, .framer-xDM7t .framer-1tywy1z, .framer-xDM7t .framer-ahd1tg, .framer-xDM7t .framer-1ygpzui, .framer-xDM7t .framer-2wvvt0, .framer-xDM7t .framer-nvy06b, .framer-xDM7t .framer-wayej7, .framer-xDM7t .framer-1r702ut, .framer-xDM7t .framer-1tynp66, .framer-xDM7t .framer-9p13bv, .framer-xDM7t .framer-11up46g { gap: 0px; } .framer-xDM7t.framer-1ilcgfl > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xDM7t.framer-1ilcgfl > :first-child, .framer-xDM7t .framer-pemic4 > :first-child, .framer-xDM7t .framer-15gpanc > :first-child, .framer-xDM7t .framer-1c9a2hp > :first-child, .framer-xDM7t .framer-8t73s1 > :first-child, .framer-xDM7t .framer-kx7zgx > :first-child, .framer-xDM7t .framer-nu7g00 > :first-child, .framer-xDM7t .framer-1tywy1z > :first-child, .framer-xDM7t .framer-1ygpzui > :first-child, .framer-xDM7t .framer-2wvvt0 > :first-child, .framer-xDM7t .framer-wayej7 > :first-child, .framer-xDM7t .framer-1r702ut > :first-child { margin-top: 0px; } .framer-xDM7t.framer-1ilcgfl > :last-child, .framer-xDM7t .framer-pemic4 > :last-child, .framer-xDM7t .framer-15gpanc > :last-child, .framer-xDM7t .framer-1c9a2hp > :last-child, .framer-xDM7t .framer-8t73s1 > :last-child, .framer-xDM7t .framer-kx7zgx > :last-child, .framer-xDM7t .framer-nu7g00 > :last-child, .framer-xDM7t .framer-1tywy1z > :last-child, .framer-xDM7t .framer-1ygpzui > :last-child, .framer-xDM7t .framer-2wvvt0 > :last-child, .framer-xDM7t .framer-wayej7 > :last-child, .framer-xDM7t .framer-1r702ut > :last-child { margin-bottom: 0px; } .framer-xDM7t .framer-pemic4 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-xDM7t .framer-15gpanc > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-xDM7t .framer-axv0ut > * { margin: 0px; margin-left: calc(67px / 2); margin-right: calc(67px / 2); } .framer-xDM7t .framer-axv0ut > :first-child, .framer-xDM7t .framer-5uoipn > :first-child, .framer-xDM7t .framer-15yl2h8 > :first-child, .framer-xDM7t .framer-1hhhicw > :first-child, .framer-xDM7t .framer-hnp0pd > :first-child, .framer-xDM7t .framer-1hvnobh > :first-child, .framer-xDM7t .framer-v03q2d > :first-child, .framer-xDM7t .framer-1lecb77 > :first-child, .framer-xDM7t .framer-bk3bml > :first-child, .framer-xDM7t .framer-x7on84 > :first-child, .framer-xDM7t .framer-1lcnh2h > :first-child, .framer-xDM7t .framer-ahd1tg > :first-child, .framer-xDM7t .framer-nvy06b > :first-child, .framer-xDM7t .framer-1tynp66 > :first-child, .framer-xDM7t .framer-9p13bv > :first-child, .framer-xDM7t .framer-11up46g > :first-child { margin-left: 0px; } .framer-xDM7t .framer-axv0ut > :last-child, .framer-xDM7t .framer-5uoipn > :last-child, .framer-xDM7t .framer-15yl2h8 > :last-child, .framer-xDM7t .framer-1hhhicw > :last-child, .framer-xDM7t .framer-hnp0pd > :last-child, .framer-xDM7t .framer-1hvnobh > :last-child, .framer-xDM7t .framer-v03q2d > :last-child, .framer-xDM7t .framer-1lecb77 > :last-child, .framer-xDM7t .framer-bk3bml > :last-child, .framer-xDM7t .framer-x7on84 > :last-child, .framer-xDM7t .framer-1lcnh2h > :last-child, .framer-xDM7t .framer-ahd1tg > :last-child, .framer-xDM7t .framer-nvy06b > :last-child, .framer-xDM7t .framer-1tynp66 > :last-child, .framer-xDM7t .framer-9p13bv > :last-child, .framer-xDM7t .framer-11up46g > :last-child { margin-right: 0px; } .framer-xDM7t .framer-1c9a2hp > *, .framer-xDM7t .framer-1r702ut > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xDM7t .framer-8t73s1 > *, .framer-xDM7t .framer-kx7zgx > *, .framer-xDM7t .framer-wayej7 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-xDM7t .framer-5uoipn > *, .framer-xDM7t .framer-15yl2h8 > *, .framer-xDM7t .framer-1hhhicw > *, .framer-xDM7t .framer-hnp0pd > *, .framer-xDM7t .framer-1hvnobh > *, .framer-xDM7t .framer-v03q2d > *, .framer-xDM7t .framer-1lecb77 > *, .framer-xDM7t .framer-bk3bml > *, .framer-xDM7t .framer-x7on84 > *, .framer-xDM7t .framer-1lcnh2h > *, .framer-xDM7t .framer-ahd1tg > *, .framer-xDM7t .framer-1tynp66 > *, .framer-xDM7t .framer-9p13bv > *, .framer-xDM7t .framer-11up46g > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xDM7t .framer-nu7g00 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-xDM7t .framer-1tywy1z > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-xDM7t .framer-1ygpzui > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-xDM7t .framer-2wvvt0 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-xDM7t .framer-nvy06b > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-xDM7t[data-border=\"true\"]::after, .framer-xDM7t [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-xDM7t { background: rgb(255, 255, 255); } .framer-xDM7t.framer-1ilcgfl { width: 810px; } .framer-xDM7t .framer-hien6f-container { left: calc(50.00000000000002% - 810px / 2); width: 810px; } .framer-xDM7t .framer-pemic4 { padding: 120px 0px 70px 0px; } .framer-xDM7t .framer-1k7y7lj { flex-direction: column; width: 810px; } .framer-xDM7t .framer-15gpanc { align-content: center; align-items: center; order: 0; width: 524px; } .framer-xDM7t .framer-10h3bnc, .framer-xDM7t .framer-kx7zgx { width: 100%; } .framer-xDM7t .framer-1c9a2hp { flex-direction: row; gap: 20px; height: min-content; order: 1; padding: 80px 0px 0px 0px; width: 100%; } .framer-xDM7t .framer-nu7g00 { width: 714px; } .framer-xDM7t .framer-1tywy1z { order: 0; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xDM7t .framer-1k7y7lj, .framer-xDM7t .framer-1c9a2hp { gap: 0px; } .framer-xDM7t .framer-1k7y7lj > *, .framer-xDM7t .framer-1k7y7lj > :first-child, .framer-xDM7t .framer-1k7y7lj > :last-child { margin: 0px; } .framer-xDM7t .framer-1c9a2hp > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-xDM7t .framer-1c9a2hp > :first-child { margin-left: 0px; } .framer-xDM7t .framer-1c9a2hp > :last-child { margin-right: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-xDM7t { background: rgb(255, 255, 255); } .framer-xDM7t.framer-1ilcgfl { width: 390px; } .framer-xDM7t .framer-hien6f-container { height: 44px; left: calc(50.00000000000002% - 390px / 2); order: 0; width: 390px; } .framer-xDM7t .framer-nu7g00 { order: 2; width: 390px; } .framer-xDM7t .framer-1tywy1z { padding: 0px 30px 0px 30px; width: 390px; } .framer-xDM7t .framer-1ka840y-container { order: 3; } .framer-xDM7t .framer-4b3wp-container { order: 5; } .framer-xDM7t .framer-1ygpzui, .framer-xDM7t .framer-9p13bv { order: 1; } .framer-xDM7t .framer-2wvvt0 { order: 0; } .framer-xDM7t .framer-nvy06b { flex-direction: column; order: 3; } .framer-xDM7t .framer-1rtp3rv-container, .framer-xDM7t .framer-wayej7 { flex: none; width: 100%; } .framer-xDM7t .framer-11up46g { order: 2; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xDM7t .framer-nvy06b { gap: 0px; } .framer-xDM7t .framer-nvy06b > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-xDM7t .framer-nvy06b > :first-child { margin-top: 0px; } .framer-xDM7t .framer-nvy06b > :last-child { margin-bottom: 0px; } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1641\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DNCOtaEbR\":{\"layout\":[\"fixed\",\"auto\"]},\"yeh07Or2e\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerPmhrnlWRk=withCSS(Component,css,\"framer-xDM7t\");export default FramerPmhrnlWRk;FramerPmhrnlWRk.displayName=\"About\";FramerPmhrnlWRk.defaultProps={height:1641,width:1200};addFonts(FramerPmhrnlWRk,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Pretendard Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/sFrbmsiXddfyJzMhbf6nA2SFM.otf\"},{family:\"Pretendard Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/blN7j0PpWHkMTyvVsxQmLVdeUZU.otf\"}]},...HeaderSynclyFonts,...VideoFonts,...GetStartedWithSynclyTodayFonts,...FooterSynclyFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPmhrnlWRk\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1641\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DNCOtaEbR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yeh07Or2e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__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", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "muted", "playsinline", "controls", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "loop", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "videoRef", "pe", "isSafari", "useIsBrowserSafari", "requestingPlay", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "startTime", "shouldPlay", "autoPlay", "se", "isMuted", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useMotionValueEvent", "latest", "useOnEnter", "useOnExit", "src", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "HeaderSynclyFonts", "getFonts", "E_RyWp14h_default", "VideoFonts", "Video", "GetStartedWithSynclyTodayFonts", "wIEsan38H_default", "FooterSynclyFonts", "iEcYeTXrf_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "RichText2", "x", "Link", "Image2", "getLoadingLazyAtYPosition", "css", "FramerPmhrnlWRk", "withCSS", "PmhrnlWRk_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
