{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/useConstant.js@^1.0.0", "ssg:https://framer.com/m/framer/randomID.js@^2.0.0", "ssg:https://framerusercontent.com/modules/KtVGDQXNUVZ5aqCs47VS/OMqTyVIbB7GZvcPewNwz/F8KjCKf_G.js", "ssg:https://framerusercontent.com/modules/lEfZpkrGRp98tyaJ17ZE/dobg25D3EmglR4Qo4SI3/NavTopCta.js", "ssg:https://framerusercontent.com/modules/jpQTLU7ZMbccHILqhUaD/TeipHSdc9l0E1ULRfBfq/MtzK4LoXK.js", "ssg:https://framerusercontent.com/modules/J9g6LR9bdEmJ54az9Bsk/VxSm80zAMpBcxfAYVjoA/E9lEEyYNE.js"],
  "sourcesContent": ["import { useRef } from \"react\";\n/**\n * Creates a constant value over the lifecycle of a component.\n *\n * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer\n * a guarantee that it won't re-run for performance reasons later on.\n * By using `useConstant` you can ensure that initialisers don't execute twice or more.\n */ export function useConstant(init) {\n    const ref = useRef(null);\n    if (ref.current === null) {\n        ref.current = init();\n    }\n    return ref.current;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useConstant\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useConstant.map", "import { useConstant } from \"https://framer.com/m/framer/useConstant.js@^1.0.0\";\nconst BASE62 = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\n/**\n * Generates a random string of BASE62 characters.\n */ export function randomID(length = 5) {\n    return Array(length).fill(0).map(()=>BASE62[Math.floor(Math.random() * BASE62.length)]\n    ).join(\"\");\n}\nexport function useRandomID(length = 5) {\n    return useConstant(()=>randomID(length)\n    );\n}\nconst defaultStorageKey = \"$$FramerRandomID\";\n/**\n * `randomID` but cached in localStorage.\n */ export function useCachedRandomID(storageKey = defaultStorageKey) {\n    return useConstant(()=>{\n        const storage = getLocalStorage();\n        if (!storage) return randomID(8);\n        const cachedValue = storage.getItem(storageKey);\n        if (cachedValue) return cachedValue;\n        const newID = randomID(8);\n        storage.setItem(storageKey, newID);\n        return newID;\n    });\n}\nfunction getLocalStorage() {\n    if (typeof window === undefined) return undefined;\n    try {\n        return window.localStorage;\n    } catch (err) {\n        return undefined;\n    }\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCachedRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./randomID.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";// Generated by Framer (24f3304)\nimport*as React from\"react\";import{motion,LayoutGroup}from\"framer-motion\";import{useActiveVariantCallback,addFonts,withCSS,addPropertyControls,ControlType,cx,useAddVariantProps,useVariantState}from\"framer\";import{useRandomID}from\"https://framer.com/m/framer/randomID.js@^2.0.0\";const cycleOrder=[\"uL1KSNbAO\",\"wuYLgLVQz\"];const variantClassNames={\"uL1KSNbAO\":\"framer-v-sct6xz\",\"wuYLgLVQz\":\"framer-v-7ln769\"};const humanReadableVariantMap={\"Burger\":\"uL1KSNbAO\",\"X\":\"wuYLgLVQz\"};const transitions={\"default\":{\"type\":\"spring\",\"ease\":[0.44,0,0.56,1],\"duration\":5,\"delay\":0,\"stiffness\":400,\"damping\":30,\"mass\":1}};const Component=/*#__PURE__*/ React.forwardRef(function({style:externalStyle={},className,width,height,layoutId,variant:outerVariant=\"uL1KSNbAO\",tap:TBgHLr7MW,color:iWF8EWIN1=\"rgb(136, 136, 136)\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{variants,baseVariant,gestureVariant,classNames,transition,setVariant,setGestureState}=useVariantState({defaultVariant:\"uL1KSNbAO\",variant,transitions,variantClassNames,cycleOrder});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapsct6xz=activeVariantCallback(async(...args)=>{if(TBgHLr7MW){const res=await TBgHLr7MW(...args);if(res===false)return false;}setVariant(\"wuYLgLVQz\");});const onTap7ln769=activeVariantCallback(async(...args)=>{if(TBgHLr7MW){const res=await TBgHLr7MW(...args);if(res===false)return false;}setVariant(\"uL1KSNbAO\");});const variantProps=React.useMemo(()=>({\"wuYLgLVQz\":{\"uL1KSNbAO\":{\"onTap\":onTap7ln769,\"data-framer-name\":\"X\",\"data-highlight\":true}}}),[onTap7ln769]);const addVariantProps=useAddVariantProps(baseVariant,gestureVariant,variantProps);const defaultLayoutId=useRandomID();const{pointerEvents,...style}=externalStyle;return(/*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{\"data-framer-generated\":true,initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-OAsFD\",classNames),style:{\"display\":\"contents\",\"pointerEvents\":pointerEvents!==null&&pointerEvents!==void 0?pointerEvents:undefined},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,layoutId:\"uL1KSNbAO\",className:cx(\"framer-sct6xz\",className),style:{...style},background:null,\"data-highlight\":true,\"data-framer-name\":\"Burger\",onTap:onTapsct6xz,transition:transition,layoutDependency:layoutDependency,ref:ref,...addVariantProps(\"uL1KSNbAO\"),children:/*#__PURE__*/ _jsxs(motion.div,{layoutId:\"grVqu8zO5\",className:\"framer-kqrzyc\",style:{},background:null,transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"grVqu8zO5\"),children:[/*#__PURE__*/ _jsx(motion.div,{layoutId:\"x0ZufA4We\",className:\"framer-mzz784\",style:{\"backgroundColor\":iWF8EWIN1,\"rotate\":0},\"data-framer-name\":\"Bottom\",variants:{\"wuYLgLVQz\":{\"rotate\":-45}},transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"x0ZufA4We\")}),/*#__PURE__*/ _jsx(motion.div,{layoutId:\"uR628goMu\",className:\"framer-1a74gli\",style:{\"backgroundColor\":iWF8EWIN1,\"rotate\":0,\"opacity\":1},\"data-framer-name\":\"Mid\",variants:{\"wuYLgLVQz\":{\"rotate\":0,\"opacity\":0}},transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"uR628goMu\")}),/*#__PURE__*/ _jsx(motion.div,{layoutId:\"CpjUXrkWa\",className:\"framer-48wlq1\",style:{\"backgroundColor\":iWF8EWIN1,\"rotate\":0},\"data-framer-name\":\"Top\",variants:{\"wuYLgLVQz\":{\"rotate\":45}},transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"CpjUXrkWa\")})]})})})}));});const css=[\".framer-OAsFD [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;}\",\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OAsFD * { box-sizing: border-box; }\",\".framer-OAsFD .framer-sct6xz { position: relative; cursor: pointer; overflow: hidden; width: 32px; height: 32px; }\",\".framer-OAsFD .framer-kqrzyc { position: absolute; overflow: visible; width: 24px; height: 18px; left: calc(50.00000000000002% - 24px/2); top: calc(50.00000000000002% - 18px/2); flex: none; }\",\".framer-OAsFD .framer-mzz784 { position: absolute; overflow: hidden; height: 2px; right: 0px; bottom: 0px; left: 0px; flex: none; }\",\".framer-OAsFD .framer-1a74gli { position: absolute; overflow: hidden; height: 2px; right: 0px; left: 0px; top: calc(50.00000000000002% - 2px/2); flex: none; }\",\".framer-OAsFD .framer-48wlq1 { position: absolute; overflow: hidden; height: 2px; right: 0px; left: 0px; top: 0px; flex: none; }\",\".framer-OAsFD.framer-v-7ln769 .framer-sct6xz { cursor: pointer; }\",\".framer-OAsFD.framer-v-7ln769 .framer-mzz784 { width: auto; height: 2px; right: 0px; bottom: auto; left: 0px; top: calc(50.00000000000002% - 2px/2); flex: none; aspect-ratio: unset; }\",\".framer-OAsFD.framer-v-7ln769 .framer-1a74gli { width: 2px; height: 2px; right: 0px; bottom: auto; left: auto; top: calc(50.00000000000002% - 2px/2); flex: none; aspect-ratio: unset; }\",\".framer-OAsFD.framer-v-7ln769 .framer-48wlq1 { width: 26px; height: 2px; right: -1px; bottom: auto; left: auto; top: calc(50.00000000000002% - 2px/2); flex: none; aspect-ratio: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\": \"variant\", \"data\": {\"default\": {\"layout\": [\"fixed\", \"fixed\"]}, \"wuYLgLVQz\": {\"layout\": [\"fixed\", \"fixed\"]}}}\n * @framerVariables {\"TBgHLr7MW\": \"tap\", \"iWF8EWIN1\": \"color\"}\n */ const FramerF8KjCKf_G=withCSS(Component,css);export default FramerF8KjCKf_G;FramerF8KjCKf_G.displayName=\"Elements/Menu Icon\";FramerF8KjCKf_G.defaultProps={\"width\":32,\"height\":32};addPropertyControls(FramerF8KjCKf_G,{\"variant\":{\"type\":ControlType.Enum,\"title\":\"Variant\",\"options\":[\"uL1KSNbAO\",\"wuYLgLVQz\"],\"optionTitles\":[\"Burger\",\"X\"]},\"TBgHLr7MW\":{\"type\":ControlType.EventHandler,\"title\":\"Tap\"},\"iWF8EWIN1\":{\"type\":ControlType.Color,\"title\":\"Color\",\"defaultValue\":\"rgb(136, 136, 136)\"}});addFonts(FramerF8KjCKf_G,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerF8KjCKf_G\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"32\",\"framerIntrinsicWidth\":\"32\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\": \\\"variant\\\", \\\"data\\\": {\\\"default\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"wuYLgLVQz\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"TBgHLr7MW\\\": \\\"tap\\\", \\\"iWF8EWIN1\\\": \\\"color\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./F8KjCKf_G.map", "function _define_property(obj,key,value){if(key in obj){Object.defineProperty(obj,key,{value:value,enumerable:true,configurable:true,writable:true});}else{obj[key]=value;}return obj;}import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{Component,useEffect,useRef,useState}from\"react\";import{trackEvent}from\"https://framerusercontent.com/modules/Pvcpr1VDSMb9QS75Mh3P/pcuZSJrasc07yNX45UaF/tracking.js\";const isHomePage=()=>location?.pathname===\"/\"||location?.pathname===\"/en_us\"||location?.pathname===\"/en_us/\"||location?.pathname===\"/en_sg\"||location?.pathname===\"/en_sg/\"||location?.pathname===\"/zh_cn\"||location?.pathname===\"/zh_cn/\"||location?.pathname===\"/ja_jp\"||location?.pathname===\"/ja_jp/\";const isEnUsIndexPage=()=>location?.pathname===\"/\"||location?.pathname===\"/en_us\"||location?.pathname===\"/en_us/\";const isZhCNIndexPage=()=>location?.pathname===\"/zh_cn\"||location?.pathname===\"/zh_cn/\";const isJaJpIndexPage=()=>location?.pathname===\"/ja_jp\"||location?.pathname===\"/ja_jp/\";const isBrowser=()=>typeof document===\"object\";const toPPLocale=locale=>{const[lang,region]=locale.split(\"_\");return`${lang}-${region.toUpperCase()}`;};import md5 from\"crypto-js/md5\";import sha1 from\"crypto-js/sha1\";import{useFirstRender}from\"https://framerusercontent.com/modules/GfF1B4NQKl0JrI5VLKhF/0qalLhMdKtwjLdf8et8A/Hooks.js\";import GoogleOneTap from\"https://framerusercontent.com/modules/OLmsaklB8FsrB72jfyUK/zpFOnKSvH6AhNP31QKre/GoogleOneTap.js\";import{localStorageAPI}from\"https://framerusercontent.com/modules/XqnvSnbMs4INB9oxVpjf/QHegICLAITmK8nyBHmeA/localStorage.js\";const trackMainPageClick=data=>{window?.collectEvent?.(\"lark_website_mainpage_click\",{click_position:\"top_header\",...data});};const containerStyle={height:\"100%\",display:\"flex\",// justifyContent: \"end\",\nalignItems:\"center\"};const RightContainerStyle={width:\"85%\",alignItems:\"center\"};const RightContainerStyleCol={width:\"100%\",alignItems:\"center\"};const colContainer={display:\"flex\",flexDirection:\"column\",alignItems:\"start\",width:\"100%\"};const marinLeftRemoveStyle={marginLeft:\"0px\",marginTop:\"32px\",width:\"calc(100vw - 60px)\",display:\"flex\",justifyContent:\"center\"};const navLocale={signIn:{ja_jp:\"\u30ED\u30B0\u30A4\u30F3\",en_us:\"Log in\",zh_cn:\"\u767B\u5F55\"},tryForFree:{ja_jp:\"\u7121\u6599\u3067\u4F7F\u3063\u3066\u307F\u308B\",en_us:\"Try for free\",zh_cn:\"\u514D\u8D39\u6CE8\u518C\"},download:{ja_jp:\"\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9\",en_us:\"Download\",zh_cn:\"\u4E0B\u8F7D\"},contactSales:{ja_jp:\"\u304A\u554F\u3044\u5408\u308F\u305B\",en_us:\"Contact sales\",zh_cn:\"\u8054\u7CFB\u6211\u4EEC\"},enterWebApp:{ja_jp:\"Lark\u30A6\u30A7\u30C3\u30D6\",en_us:\"Lark Web\",zh_cn:\"Lark\u7F51\u9875\u7248\"}};const navFont={en_us:\"Lark Circular Medium, sans-serif\",ja_jp:\"Noto Sans JP Medium, sans-serif\",zh_cn:\"Noto Sans SC, sans-serif\"};// const downloadLinks = {\n//     en_us: \"https://www.larksuite.com/download\",\n//     ja_jp: \"https://www.larksuite.com/ja_jp/download\",\n// }\n// const templates = {\n//     ja_jp: \"7231050333147906054\",\n//     en_us: \"7231045451082956805\",\n//     zh_cn: \"7231110761873948677\",\n// }\nconst navLink={signInForHome:{ja_jp:`https://login.larksuite.com/accounts/page/login?app_id=1001&redirect_uri=https://www.larksuite.com/messenger&from=navbar`,en_us:`https://login.larksuite.com/accounts/page/login?app_id=1001&redirect_uri=https://www.larksuite.com/messenger&from=navbar`,zh_cn:`https://login.larksuite.com/accounts/page/login?app_id=1001&redirect_uri=https://www.larksuite.com/messenger&from=navbar`},signIn:{ja_jp:`https://login.larksuite.com/accounts/page/login?app_id=1001&redirect_uri=https://www.larksuite.com/ja_jp/download&from=navbar`,en_us:`https://www.larksuite.com/accounts/page/login?force_login=1&redirect_uri=https://www.larksuite.com/download?disable_cross_redirect=true&app_id=1001&from=navbar`,zh_cn:`https://login.larksuite.com/accounts/page/login?app_id=1001&redirect_uri=https://www.larksuite.com/zh_cn/download&from=navbar`},tryForFree:{ja_jp:`https://www.larksuite.com/accounts/page/global_register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=navbar`,en_us:`https://www.larksuite.com/accounts/page/global_register?redirect_uri=https://www.larksuite.com/getstarted?disable_cross_redirect=true&registration_process=global_register&app_id=1001&from=navbar`,zh_cn:`https://www.larksuite.com/accounts/page/global_register?redirect_uri=https://www.larksuite.com/zh_cn/getstarted&registration_process=global_register&app_id=1001&from=navbar`},download:{ja_jp:\"https://www.larksuite.com/ja_jp/download?from=navbar\",en_us:\"https://www.larksuite.com/en_us/download?from=navbar\",zh_cn:\"https://www.larksuite.com/zh_cn/download?from=navbar\"},contactSales:{ja_jp:\"https://www.larksuite.com/ja_jp/salessupport?from=navbar\",en_us:`https://www.larksuite.com/en_us/salessupport?from=navbar`,zh_cn:\"https://www.larksuite.com/zh_cn/salessupport?from=navbar\"},enterWebApp:\"https://www.larksuite.com/messenger/\"};const navWeight={en_us:500,ja_jp:500,zh_cn:\"Medium\"};const navButtonRadius={zh_cn:\"100px\"};const textBtnColor={default:\"#1F2329\",hover:\"#336DF4\",darkmodeDefault:\"white\",darkmodeHover:\"\"};const primaryBtnBgColor={default:\"#1456F0\",hover:\"#336DF4\"};// new download\nclass EnUsTextDownload extends Component{render(){const{lang}=this.props;let color=textBtnColor.default;if(this.props.darkmode){color=textBtnColor.darkmodeDefault;}if(this.state.signInHover){if(this.props.darkMode){color=textBtnColor.darkmodeHover;}else{color=textBtnColor.hover;}}return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",alignItems:\"center\"},children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"1px\",height:\"12px\",background:\"#D0D3D6\",marginRight:\"12px\",marginLeft:\"12px\",fontSize:\"14px\",lineHeight:\"22px\"}}),/*#__PURE__*/_jsx(\"button\",{onClick:this.handleClick,style:{fontFamily:navFont[lang],background:\"rgba(206, 223, 255, 0)\",fontSize:\"14px\",borderTopStyle:\"none\",borderBottomStyle:\"none\",borderLeftStyle:\"none\",borderRightStyle:\"none\",cursor:\"pointer\",paddingTop:\"2px\",paddingBottom:\"2px\",paddingLeft:\"4px\",paddingRight:\"4px\",marginRight:\"14px\",color},onMouseEnter:()=>this.trackClick(\"hover\"),onMouseOver:this.handleSignInMouseEnter,onMouseOut:this.handleSignInMouseLeave,children:this.getCtaContent()})]});}constructor(...args){super(...args);_define_property(this,\"state\",{signInHover:false});_define_property(this,\"getCtaContent\",()=>{return navLocale.download[this.props.lang];});_define_property(this,\"getCtaLink\",()=>{return navLink.download[this.props.lang];});_define_property(this,\"trackClick\",act_type=>{const downloadLink=this.getCtaLink();const downloadContent=this.getCtaContent();trackMainPageClick({click:downloadContent,act_type,target:downloadLink});});_define_property(this,\"handleSignInMouseEnter\",()=>{this.setState({signInHover:true});});_define_property(this,\"handleSignInMouseLeave\",()=>{this.setState({signInHover:false});});_define_property(this,\"handleClick\",()=>{trackEvent(\"event\",`contact-sales-at-navbar`,{event_category:\"Download\",event_label:`download-at-navbar`});this.trackClick(\"click\");const downloadLink=this.getCtaLink();window?.open(downloadLink,\"_self\");});}}class SignInBtn extends Component{render(){let color=textBtnColor.default;if(this.props.darkmode){color=textBtnColor.darkmodeDefault;}if(this.state.signInHover){if(this.props.darkMode){color=textBtnColor.darkmodeHover;}else{color=textBtnColor.hover;}}return /*#__PURE__*/_jsx(\"div\",{children:/*#__PURE__*/_jsx(\"button\",{style:{...this.props.darkmode?this.signInStyleDarkMode:this.signInStyle,backgroundColor:this.props.darkmode?this.state.signInHover?\"rgba(255, 255, 255, 0)\":\"rgba(255, 255, 255, 0)\":\"transparent\",cursor:this.state.signInHover?\"pointer\":\"initial\",color:color},id:\"SignInBtn\",onClick:this.handleSignInClick,onMouseEnter:()=>this.trackClick(\"hover\"),onMouseOver:this.handleSignInMouseEnter,onMouseOut:this.handleSignInMouseLeave,children:navLocale.signIn[this.props.lang]})});}constructor(...args){super(...args);_define_property(this,\"state\",{signInHover:false});_define_property(this,\"getSignInLink\",()=>{return isHomePage()?navLink.signInForHome[this.props.lang]:navLink.signIn[this.props.lang];});_define_property(this,\"trackClick\",actType=>{const clickContent=navLocale.signIn[this.props.lang];const signInLink=this.getSignInLink();trackMainPageClick({click:clickContent,act_type:actType,target:signInLink});});_define_property(this,\"handleSignInClick\",()=>{trackEvent(\"event\",`Signin`,{event_category:\"Signin\",event_label:`Signin`});this.trackClick(\"click\");const signInLink=this.getSignInLink();window?.open(signInLink,\"_self\");});_define_property(this,\"handleSignInMouseEnter\",()=>{this.setState({signInHover:true});});_define_property(this,\"handleSignInMouseLeave\",()=>{this.setState({signInHover:false});});_define_property(this,\"signInStyle\",{fontFamily:navFont[this.props.lang],fontSize:\"14px\",lineHeight:\"22px\",fontWeight:navWeight[this.props.lang],whiteSpace:\"nowrap\",color:textBtnColor.default,backgroundColor:\"rgba(255, 255, 255, 0)\",borderColor:\"rgba(255, 255, 255, 0)\",textDecoration:\"none\",paddingTop:2,paddingBottom:2,paddingLeft:4,paddingRight:4,borderRadius:navButtonRadius[this.props.lang]??\"100px\"});_define_property(this,\"signInStyleForHome\",{//-------Outlined button - for Homepage only\nmarginLeft:\"4px\",padding:\"8px 16px\",borderRadius:navButtonRadius[this.props.lang]??\"100px\",backgroundColor:\"#1456F0\",fontFamily:navFont[this.props.lang],fontSize:\"14px\",lineHeight:\"22px\",fontWeight:navWeight[this.props.lang],whiteSpace:\"nowrap\",border:\"1px solid\",borderColor:\"rgba(41, 85, 231, 0)\",color:\"1F2329\",textDecoration:\"none\"});_define_property(this,\"signInStyleDarkMode\",{fontFamily:navFont[this.props.lang],fontSize:\"14px\",lineHeight:\"24px\",fontWeight:navWeight[this.props.lang],whiteSpace:\"nowrap\",color:\"white\",border:\"none\",textDecoration:\"none\",padding:\"8px 16px\",borderRadius:navButtonRadius[this.props.lang]??\"100px\"});}}class TryForFreeBtn extends Component{render(){return /*#__PURE__*/_jsx(\"div\",{children:/*#__PURE__*/_jsxs(\"button\",{style:{...this.tryStyle,backgroundColor:this.state.hover?primaryBtnBgColor.hover:primaryBtnBgColor.default,cursor:this.state.hover?\"pointer\":\"initial\"},className:\"try-free-btn\",onClick:this.handleClick,onMouseEnter:()=>this.trackClick(\"hover\"),onMouseOver:this.handleMouseEnter,onMouseOut:this.handleMouseLeave,children:[\" \",navLocale.tryForFree[this.props.lang],\" \"]})});}constructor(...args){super(...args);_define_property(this,\"state\",{hover:false});_define_property(this,\"getCtaContent\",()=>{return navLocale.tryForFree[this.props.lang];});_define_property(this,\"getCtaLink\",()=>{return navLink.tryForFree[this.props.lang];});_define_property(this,\"trackClick\",act_type=>{const downloadLink=this.getCtaLink();const downloadContent=this.getCtaContent();trackMainPageClick({click:downloadContent,act_type,target:downloadLink});});_define_property(this,\"handleClick\",()=>{trackEvent(\"event\",`try-for-free-at-navbar`,{event_category:\"TryForFree\",event_label:`try-for-free-at-navbar`});this.trackClick(\"click\");window?.open(navLink.tryForFree[this.props.lang],\"_self\");});_define_property(this,\"handleMouseEnter\",()=>{this.trackClick(\"hover\");this.setState({hover:true});});_define_property(this,\"handleMouseLeave\",()=>{this.setState({hover:false});});_define_property(this,\"tryStyle\",{marginLeft:\"10px\",padding:\"8px 16px\",borderRadius:navButtonRadius[this.props.lang]??\"100px\",backgroundColor:\"#1456F0\",fontFamily:navFont[this.props.lang],fontSize:\"16px\",lineHeight:\"24px\",fontWeight:navWeight[this.props.lang],whiteSpace:\"nowrap\",border:0,color:\"white\",textDecoration:\"none\"});}}class DownloadBtn extends Component{render(){const style=this.props.secondary?{...this.primaryBtnStyle(),...this.secondaryStyle()}:this.primaryBtnStyle();return /*#__PURE__*/_jsx(\"div\",{children:/*#__PURE__*/_jsx(\"button\",{style:style,className:\"download-btn\",onClick:this.handleClick,onMouseEnter:()=>this.trackClick(\"hover\"),onMouseOver:this.handleMouseEnter,onMouseOut:this.handleMouseLeave,children:navLocale.download[this.props.lang]})});}constructor(...args){super(...args);_define_property(this,\"state\",{hover:false});_define_property(this,\"getCtaContent\",()=>{return navLocale.download[this.props.lang];});_define_property(this,\"getCtaLink\",()=>{return navLink.download[this.props.lang];});_define_property(this,\"trackClick\",act_type=>{const downloadLink=this.getCtaLink();const downloadContent=this.getCtaContent();trackMainPageClick({click:downloadContent,act_type,target:downloadLink});});_define_property(this,\"handleClick\",()=>{trackEvent(\"event\",`contact-sales-at-navbar`,{event_category:\"Download\",event_label:`download-at-navbar`});this.trackClick(\"click\");window?.open(navLink.download[this.props.lang],\"_self\");});_define_property(this,\"handleMouseEnter\",()=>{this.trackClick(\"hover\");this.setState({hover:true});});_define_property(this,\"handleMouseLeave\",()=>{this.setState({hover:false});});_define_property(this,\"primaryBtnStyle\",()=>({marginLeft:\"10px\",padding:\"8px 16px\",borderRadius:navButtonRadius[this.props.lang]??\"100px\",borderColor:\"#1456F0\",fontFamily:navFont[this.props.lang],fontSize:\"16px\",lineHeight:\"24px\",fontWeight:navWeight[this.props.lang],whiteSpace:\"nowrap\",cursor:\"pointer\",textDecoration:\"none\",border:\"none\",color:\"white\",backgroundColor:this.state.hover?primaryBtnBgColor.hover:primaryBtnBgColor.default}));_define_property(this,\"secondaryStyle\",()=>({border:\"1px solid #1456F0\",color:\"#1456F0\",backgroundColor:this.state.hover?\"rgba(206, 223, 255, 0.5)\":\"rgba(206, 223, 255, 0)\"}));}}class ContactSalesBtnPrimary extends Component{render(){return /*#__PURE__*/_jsx(\"div\",{children:/*#__PURE__*/_jsxs(\"button\",{style:{...this.contactSalesStyle,backgroundColor:this.state.hover?primaryBtnBgColor.hover:primaryBtnBgColor.default,cursor:this.state.hover?\"pointer\":\"initial\"},className:\"contact-sale-btn-primary\",onClick:this.handleClick,onMouseEnter:()=>this.trackClick(\"hover\"),onMouseOver:this.handleMouseEnter,onMouseOut:this.handleMouseLeave,children:[\" \",navLocale.contactSales[this.props.lang],\" \"]})});}constructor(...args){super(...args);_define_property(this,\"state\",{hover:false});_define_property(this,\"getCtaContent\",()=>{return navLocale.contactSales[this.props.lang];});_define_property(this,\"getCtaLink\",()=>{return navLink.contactSales[this.props.lang];});_define_property(this,\"trackClick\",act_type=>{const downloadLink=this.getCtaLink();const downloadContent=this.getCtaContent();trackMainPageClick({click:downloadContent,act_type,target:downloadLink});});_define_property(this,\"handleClick\",()=>{trackEvent(\"event\",`contact-sales-at-navbar`,{event_category:\"ContactSales\",event_label:`contact-sales-at-navbar`});this.trackClick(\"click\");window?.open(navLink.contactSales[this.props.lang],\"_self\");});_define_property(this,\"handleMouseEnter\",()=>{this.trackClick(\"hover\");this.setState({hover:true});});_define_property(this,\"handleMouseLeave\",()=>{this.setState({hover:false});});_define_property(this,\"contactSalesStyle\",{marginLeft:\"4px\",padding:\"8px 16px\",borderRadius:navButtonRadius[this.props.lang]??\"100px\",backgroundColor:\"#1456F0\",fontFamily:navFont[this.props.lang],fontSize:\"16px\",lineHeight:\"24px\",fontWeight:navWeight[this.props.lang],whiteSpace:\"nowrap\",border:0,color:\"white\",textDecoration:\"none\"});}}class EnterWebAppBtn extends Component{render(){return /*#__PURE__*/_jsx(\"div\",{children:/*#__PURE__*/_jsxs(\"button\",{style:{...this.props.darkmode?this.darkModeStyle:this.secondaryStyle,backgroundColor:this.props.darkmode?this.state.hover?\"rgba(255, 255, 255, 0.2)\":\"rgba(255, 255, 255, 0)\":this.state.hover?\"rgba(206, 223, 255, 0.5)\":\"rgba(206, 223, 255, 0)\",cursor:this.state.hover?\"pointer\":\"initial\"},className:\"enter-web-app-btn\",onClick:this.handleClick,onMouseEnter:()=>this.trackClick(\"hover\"),onMouseOver:this.handleMouseEnter,onMouseOut:this.handleMouseLeave,children:[\" \",navLocale.enterWebApp[this.props.lang],\" \"]})});}constructor(...args){super(...args);_define_property(this,\"state\",{hover:false});_define_property(this,\"getCtaContent\",()=>{return navLocale.enterWebApp[this.props.lang];});_define_property(this,\"getCtaLink\",()=>{return navLink.enterWebApp;});_define_property(this,\"trackClick\",act_type=>{const downloadLink=this.getCtaLink();const downloadContent=this.getCtaContent();trackMainPageClick({click:downloadContent,act_type,target:downloadLink});});_define_property(this,\"handleClick\",()=>{this.trackClick(\"click\");window?.open(navLink.enterWebApp,\"_self\");});_define_property(this,\"handleMouseEnter\",()=>{this.trackClick(\"hover\");this.setState({hover:true});});_define_property(this,\"handleMouseLeave\",()=>{this.setState({hover:false});});_define_property(this,\"secondaryStyle\",{marginLeft:\"10px\",padding:\"7px 15px\",borderRadius:navButtonRadius[this.props.lang]??\"100px\",borderColor:\"#1456F0\",fontFamily:navFont[this.props.lang],fontSize:\"16px\",lineHeight:\"24px\",fontWeight:navWeight[this.props.lang],whiteSpace:\"nowrap\",border:\"1px solid #1456F0\",color:\"#1456F0\",textDecoration:\"none\",boxSizing:\"border-box\"});_define_property(this,\"darkModeStyle\",{marginLeft:\"10px\",padding:\"8px 16px\",borderRadius:navButtonRadius[this.props.lang]??\"100px\",fontFamily:navFont[this.props.lang],fontSize:\"16px\",lineHeight:\"24px\",fontWeight:navWeight[this.props.lang],whiteSpace:\"nowrap\",border:\"1px solid white\",color:\"white\",textDecoration:\"none\"});}}class ContactSalesBtn extends Component{render(){return /*#__PURE__*/_jsx(\"div\",{children:/*#__PURE__*/_jsxs(\"button\",{style:{...this.props.darkmode?this.contactSalesStyleDarkMode:this.contactSalesStyle,backgroundColor:this.props.darkmode?this.state.hover?\"rgba(255, 255, 255, 0.2)\":\"rgba(255, 255, 255, 0)\":this.state.hover?\"rgba(206, 223, 255, 0.5)\":\"rgba(206, 223, 255, 0)\",cursor:this.state.hover?\"pointer\":\"initial\"},className:\"contact-sale-btn\",onClick:this.handleClick,onMouseEnter:()=>this.trackClick(\"hover\"),onMouseOver:this.handleMouseEnter,onMouseOut:this.handleMouseLeave,children:[navLocale.contactSales[this.props.lang],\" \"]})});}constructor(...args){super(...args);_define_property(this,\"state\",{hover:false});_define_property(this,\"getCtaContent\",()=>{return navLocale.contactSales[this.props.lang];});_define_property(this,\"getCtaLink\",()=>{return navLink.contactSales[this.props.lang];});_define_property(this,\"trackClick\",act_type=>{const downloadLink=this.getCtaLink();const downloadContent=this.getCtaContent();trackMainPageClick({click:downloadContent,act_type,target:downloadLink});});_define_property(this,\"handleClick\",()=>{trackEvent(\"event\",`contact-sales-at-navbar`,{event_category:\"ContactSales\",event_label:`contact-sales-at-navbar`});this.trackClick(\"click\");window?.open(navLink.contactSales[this.props.lang],\"_self\");});_define_property(this,\"handleMouseEnter\",()=>{this.trackClick(\"hover\");this.setState({hover:true});});_define_property(this,\"handleMouseLeave\",()=>{this.setState({hover:false});});_define_property(this,\"contactSalesStyle\",{marginLeft:\"10px\",padding:\"7px 15px\",borderRadius:navButtonRadius[this.props.lang]??\"100px\",fontFamily:navFont[this.props.lang],fontSize:\"16px\",lineHeight:\"24px\",fontWeight:navWeight[this.props.lang],whiteSpace:\"nowrap\",border:\"1px solid #1456F0\",color:\"#1456F0\",textDecoration:\"none\",boxSizing:\"border-box\"});_define_property(this,\"contactSalesStyleDarkMode\",{marginLeft:\"10px\",padding:\"8px 16px\",borderRadius:navButtonRadius[this.props.lang]??\"100px\",fontFamily:navFont[this.props.lang],fontSize:\"16px\",lineHeight:\"24px\",fontWeight:navWeight[this.props.lang],whiteSpace:\"nowrap\",border:\"1px solid white\",color:\"white\",textDecoration:\"none\"});}}const homePagePathNameList=[\"/zh_cn\"];const SignInContainer=({col,lang,darkmode})=>{console.log(\"lang1\",lang);const showDownload=homePagePathNameList.includes(window.location.pathname);return /*#__PURE__*/_jsx(\"div\",{className:\"nav-signin\",style:containerStyle,children:/*#__PURE__*/_jsxs(\"div\",{className:\"nav-right-ctn\",style:{...containerStyle,...col?colContainer:{}},children:[/*#__PURE__*/_jsx(SignInBtn,{lang:lang,darkmode:darkmode}),lang==\"en_us\"&&/*#__PURE__*/_jsx(EnUsTextDownload,{lang:lang,darkmode:darkmode}),/*#__PURE__*/_jsx(ContactSalesBtn,{lang:lang,darkmode:darkmode}),showDownload&&/*#__PURE__*/_jsx(DownloadBtn,{secondary:true,lang:lang}),/*#__PURE__*/_jsx(TryForFreeBtn,{lang:lang})]})});};const ENCODE_SUFFIX=\"42b91e\";const ENCODE_PREFIX=\"08a441\";const isOfficial=()=>location?location?.hostname===\"www.larksuite.com\"||location?.hostname===\"www.larksuite-pre.com\"||location?.hostname===\"www.larksuite-boe.com\":false;const encodeId=id=>{const tmp=md5(id+ENCODE_SUFFIX).toString();const res=sha1(ENCODE_PREFIX+tmp).toString();return res;};export const useLoginStatus=()=>{const[userIsLoggedIn,setUserIsLoggedIn]=useState(false);const[initialized,setInitialized]=useState(false);const[userId,setUserId]=useState(\"\");useEffect(()=>{if(!window||!isOfficial()){return;}console.log(\"debug: listener added\");const loadLogin=()=>{console.log(\"debug: sdk is loaded\");window.tenantWidgetSDK?.getCurrentUser().then(res=>{if(!res){localStorageAPI.write(\"__lark_website_login_status\",false);return;}console.log(\"resresresres,\",res);localStorageAPI.write(\"__lark_website_login_status\",true);const userId=res.id;const tenantId=res.tenant?.tenantId;if(userId){console.log(\"debug: user logged in\");setUserIsLoggedIn(true);setInitialized(true);setUserId(userId);const popupEvent=new Event(\"logged_in\");window.dispatchEvent(popupEvent);}window.__globalVars__=window.__globalVars__||{};window.__globalVars__.userDigest=window.__globalVars__.userDigest||encodeId(userId);window.__globalVars__.tenantDigest=window.__globalVars__.tenantDigest||encodeId(tenantId);if(window.FS){window.FS.setUserVars({login_status:Boolean(window.__globalVars__.userDigest)});}window.collectEvent&&window.collectEvent(\"config\",{is_login:true,lark_user_id:userId,tenant_id:tenantId});}).catch(err=>{localStorageAPI.write(\"__lark_website_login_status\",false);setInitialized(true);if(window.FS){window.FS.setUserVars({login_status:false});}console.log(\"[auth] unauth\");});};if(window.sdk_loaded){console.log(\"debug: loaded before\");loadLogin();}else{window.addEventListener(\"sdk.loaded\",()=>{console.log(\"debug: listened loaded\");loadLogin();});}return()=>{window.removeEventListener(\"sdk.loaded\",()=>{console.log(\"debug: listened loaded\");loadLogin();});};},[]);return[userIsLoggedIn,initialized,userId];};export default function NavTopCTA(props){const{variant,lang=\"zh_cn\",display=true,darkmode}=props;const firstRender=useFirstRender();const userPanelRef=useRef();const productListRef=useRef();const isOnboardingPage=()=>{return typeof document!==\"undefined\"?location.pathname.includes(\"getstarted\"):false;};const onTenantVisibilityChange=show=>{if(show){document.body.classList.add(\"--disable-scroll\");}else{document.body.classList.remove(\"--disable-scroll\");}};// const isBoe = () =>\n//     typeof document !== \"undefined\"\n//         ? document?.location?.hostname?.includes(\"boe\")\n//         : false\nconst productListProps={config:{// origin: isBoe()\n//     ? \"https://larksuite-boe.com\"\n//     : \"https://larksuite.com\",\nappId:1001,isOversea:true,geo:\"sg\",locale:toPPLocale(lang)||\"en-US\",isDark:props.darkmode},style:{width:\"28px\",height:\"28px\"},dropdownProps:{onVisibleChange:onTenantVisibilityChange}};console.log(\"config\",productListProps);// if (isOnboardingPage()) {\n//     productListProps.config.path =\n//         \"https://www.larksuite.com/accounts/page/login?force_login=1&redirect_uri=https://www.larksuite.com/getstarted?disable_cross_redirect=true&app_id=1001\"\n// }\nconst[isUserLoggedIn,userInitialized,userId]=useLoginStatus();// useEffect(() => {\n//     setFirstRender(false)\n// }, [])\nconst onClickTenant=()=>{if(window){window?.collectEvent?.(\"lark_website_mainpage_click\",{click:\"switch_account\",target:userId});}};const onClickAddTeam=()=>{if(window){window?.collectEvent?.(\"lark_website_mainpage_click\",{click:\"switch_account\",target:\"add_account\"});}};const onLogout=()=>{console.log(\"on-logout\");localStorageAPI.write(\"__lark_website_login_status\",false);if(window){window?.collectEvent?.(\"lark_website_mainpage_click\",{click:\"log_out\"});}};const isBoe=()=>typeof document!==\"undefined\"?document?.location?.hostname?.includes(\"larksuite-boe\"):false;const isPre=()=>typeof document!==\"undefined\"?document?.location?.hostname?.includes(\"larksuite-pre\"):false;useEffect(()=>{if(!window||!isOfficial()){return;}const renderNav=()=>{console.log(\"debug:\",isUserLoggedIn,productListRef.current,display);// if (isOnboardingPage()) {\n//     userPanelConfig.config.path =\n//         \"https://www.larksuite.com/accounts/page/login?force_login=1&redirect_uri=https://www.larksuite.com/getstarted?disable_cross_redirect=true&app_id=1001\"\n// }\nuserPanelRef.current&&display&&window?.tenantWidgetSDK?.renderUserPanel(userPanelConfig,userPanelRef.current);if(isUserLoggedIn&&productListRef.current&&display)window?.tenantWidgetSDK?.renderProductList(productListProps,productListRef.current);};if(window.sdk_loaded){renderNav();}else{window.addEventListener(\"sdk.loaded\",renderNav);}return()=>{window.removeEventListener(\"sdk.loaded\",renderNav);};},[isUserLoggedIn,userId,firstRender]);let panelItems;if(window&&window.tenantWidgetSDK?.TenantMenu){panelItems=[new window.tenantWidgetSDK.TenantMenu({onClickTenant:onClickTenant,onClickAddTeam:onClickAddTeam,onLogout:onLogout})];}else{panelItems=[];}if(window&&window?.tenantWidgetSDK&&lang===\"en_us\"){if(window.tenantWidgetSDK?.CustomMenu){panelItems.unshift(new window.tenantWidgetSDK.CustomMenu({title:\"Get started\",className:\"lark-global-onboarding-item\",handleClick:e=>{window.open(\"/en_us/getstarted\");},showArrow:false}));}}const userPanelConfig={config:{origin:isBoe()?\"https://www.larksuite-boe.com\":isPre()?\"https://www.larksuite-pre.com\":\"https://www.larksuite.com\",appId:1001,isOversea:true,geo:\"sg\",locale:toPPLocale(lang)||\"en-US\",isDark:darkmode,path:window?.location?.href},preHeader:/*#__PURE__*/_jsx(_Fragment,{}),headerTheme:\"light\",showUserName:true,panelItems,dropdownProps:{onVisibleChange:onTenantVisibilityChange}};useEffect(()=>{if(!window||!isOfficial()){return;}console.log(\"detect dark mode change new\",display,userPanelRef.current);const userPanelConfig={config:{origin:isBoe()?\"https://www.larksuite-boe.com\":isPre()?\"https://www.larksuite-pre.com\":\"https://www.larksuite.com\",appId:1001,geo:\"sg\",isOversea:true,locale:toPPLocale(lang)||\"en-US\",isDark:darkmode,path:window?.location?.href},preHeader:/*#__PURE__*/_jsx(_Fragment,{}),headerTheme:\"light\",showUserName:true,panelItems,dropdownProps:{onVisibleChange:onTenantVisibilityChange}};// if (isOnboardingPage()) {\n//     userPanelConfig.config.path =\n//         \"https://www.larksuite.com/accounts/page/login?force_login=1&redirect_uri=https://www.larksuite.com/getstarted?disable_cross_redirect=true&app_id=1001\"\n// }\nuserPanelRef.current&&display&&window?.tenantWidgetSDK?.renderUserPanel(userPanelConfig,userPanelRef.current);},[darkmode]);if(!display){return null;}console.log(\"first render is:\",firstRender);if(firstRender){return /*#__PURE__*/_jsx(\"div\",{});}if(!isOfficial()||!isBrowser()){return /*#__PURE__*/_jsx(SignInContainer,{col:variant===\"btns-col\",lang:lang,darkmode:props.darkmode});}console.log(\"here\",{isUserLoggedIn,userInitialized,isEnUsIndexPage:isEnUsIndexPage()});return /*#__PURE__*/_jsxs(\"div\",{style:containerStyle,children:[!isUserLoggedIn&&userInitialized&&isHomePage()&&/*#__PURE__*/_jsx(GoogleOneTap,{enabled:props.enableGoogleOneTap}),variant!==\"btns\"&&variant!==\"btns-col\"&&isUserLoggedIn&&!isHomePage()&&/*#__PURE__*/_jsx(\"div\",{ref:productListRef,id:\"productList\",style:{alignItems:\"center\",marginRight:\"4px\",color:props.darkmode?\"white\":\"#2b2f36\"}}),variant!==\"profile\"&&/*#__PURE__*/_jsx(\"div\",{ref:userPanelRef,id:\"root\",style:{visibility:isUserLoggedIn?undefined:\"hidden\",...variant!==\"btns-col\"?RightContainerStyle:RightContainerStyleCol}}),!isUserLoggedIn&&/*#__PURE__*/_jsx(SignInContainer,{col:variant===\"btns-col\",lang:lang,darkmode:props.darkmode}),isUserLoggedIn&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(EnterWebAppBtn,{lang:lang,darkmode:props.darkmode}),/*#__PURE__*/_jsx(DownloadBtn,{lang:lang})]})]});}addPropertyControls(NavTopCTA,{variant:{type:ControlType.Enum,defaultValue:\"btns-profile\",displaySegmentedControl:true,segmentedControlDirection:\"vertical\",options:[\"btns-profile\",\"profile\",\"btns\",\"btns-col\"],optionTitles:[\"btns-profile\",\"profile\",\"btns\",\"btns-col\"]},display:{type:ControlType.Boolean,title:\"Display\"},lang:{type:ControlType.Enum,defaultValue:\"en_us\",displaySegmentedControl:true,segmentedControlDirection:\"vertical\",options:[\"en_us\",\"ja_jp\",\"zh_cn\"],optionTitles:[\"en_us\",\"ja_jp\",\"zh_cn\"]},darkmode:{type:ControlType.Boolean,defaultValue:false,title:\"Dark Mode\"},enableGoogleOneTap:{type:ControlType.Boolean,title:\"Google One Tap\",defaultValue:false}});\nexport const __FramerMetadata__ = {\"exports\":{\"useLoginStatus\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"NavTopCTA\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NavTopCta.map", "// Generated by Framer (dc5e905)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={BORx5pDpB:{hover:true},sbIkYvnmi:{hover:true}};const cycleOrder=[\"sbIkYvnmi\",\"BORx5pDpB\",\"Gcx4HFB6P\"];const serializationHash=\"framer-wCK1Y\";const variantClassNames={BORx5pDpB:\"framer-v-3r6t3d\",Gcx4HFB6P:\"framer-v-6lx9u8\",sbIkYvnmi:\"framer-v-x1qeoy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"sbIkYvnmi\",navbar_textlink_regular:\"Gcx4HFB6P\",small:\"BORx5pDpB\"};const getProps=({height,id,link,onMouseEnter,title,width,...props})=>{return{...props,J05pST8qK:title??props.J05pST8qK??\"See more\",nzFFBQVin:onMouseEnter??props.nzFFBQVin,variant:humanReadableVariantMap[props.variant]??props.variant??\"sbIkYvnmi\",ZYb9LPjcn:link??props.ZYb9LPjcn};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,J05pST8qK,ZYb9LPjcn,nzFFBQVin,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sbIkYvnmi\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterfgb7ge=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(nzFFBQVin){const res=await nzFFBQVin(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"Gcx4HFB6P\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:ZYb9LPjcn,motionChild:true,nodeId:\"sbIkYvnmi\",openInNewTab:false,scopeId:\"MtzK4LoXK\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-x1qeoy\",className,classNames)} framer-9bn0r0`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sbIkYvnmi\",onMouseEnter:onMouseEnterfgb7ge,ref:refBinding,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},variants:{\"sbIkYvnmi-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"BORx5pDpB-hover\":{\"data-framer-name\":undefined},\"sbIkYvnmi-hover\":{\"data-framer-name\":undefined},BORx5pDpB:{\"data-framer-name\":\"small\"},Gcx4HFB6P:{\"data-framer-name\":\"navbar_textlink_regular\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmsgQ2lyY3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Lark Circular Medium\", \"Lark Circular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(20, 86, 240))\"},children:\"See more\"})}),className:\"framer-14qfd71\",fonts:[\"CUSTOM;Lark Circular Medium\"],layoutDependency:layoutDependency,layoutId:\"O7VE8oFKA\",style:{\"--extracted-r6o4lv\":\"rgb(20, 86, 240)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:J05pST8qK,variants:{\"BORx5pDpB-hover\":{\"--extracted-r6o4lv\":\"rgb(4, 66, 210)\"},\"sbIkYvnmi-hover\":{\"--extracted-r6o4lv\":\"rgb(4, 66, 210)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"BORx5pDpB-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmsgQ2lyY3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Lark Circular Medium\", \"Lark Circular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(4, 66, 210))\"},children:\"See more\"})})},\"sbIkYvnmi-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmsgQ2lyY3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Lark Circular Medium\", \"Lark Circular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(4, 66, 210))\"},children:\"See more\"})})},BORx5pDpB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmsgQ2lyY3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Lark Circular Medium\", \"Lark Circular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(20, 86, 240))\"},children:\"See more\"})})},Gcx4HFB6P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmsgQ2lyY3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Lark Circular Regular\", \"Lark Circular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(20, 86, 240))\"},children:\"See more\"})}),fonts:[\"CUSTOM;Lark Circular Regular\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||22)-0-12)/2)),pixelHeight:12,pixelWidth:12,src:\"https://framerusercontent.com/images/hf9KsUcL34igEa8Aq0ZIrdhdLoc.svg\"},className:\"framer-16jmf2i\",layoutDependency:layoutDependency,layoutId:\"EFVp3jZxf\",...addPropertyOverrides({\"BORx5pDpB-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:14,intrinsicWidth:14,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||16)-0-12)/2)),pixelHeight:14,pixelWidth:14,src:\"https://framerusercontent.com/images/7wzgFe8WgHNWvb9IgEr1IqpTg.svg\"}},\"sbIkYvnmi-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:14,intrinsicWidth:14,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||22)-0-12)/2)),pixelHeight:14,pixelWidth:14,src:\"https://framerusercontent.com/images/7wzgFe8WgHNWvb9IgEr1IqpTg.svg\"}},BORx5pDpB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||16)-0-12)/2)),pixelHeight:12,pixelWidth:12,src:\"https://framerusercontent.com/images/hf9KsUcL34igEa8Aq0ZIrdhdLoc.svg\"}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wCK1Y.framer-9bn0r0, .framer-wCK1Y .framer-9bn0r0 { display: block; }\",\".framer-wCK1Y.framer-x1qeoy { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-wCK1Y .framer-14qfd71 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-wCK1Y .framer-16jmf2i { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); overflow: visible; position: relative; width: 12px; }\",\".framer-wCK1Y.framer-v-3r6t3d.framer-x1qeoy { gap: 2px; }\",\".framer-wCK1Y.framer-v-6lx9u8.framer-x1qeoy { cursor: unset; }\",\".framer-wCK1Y.framer-v-x1qeoy.hover.framer-x1qeoy { gap: 10px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 22\n * @framerIntrinsicWidth 81.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"BORx5pDpB\":{\"layout\":[\"auto\",\"auto\"]},\"Gcx4HFB6P\":{\"layout\":[\"auto\",\"auto\"]},\"ixWSoia5Y\":{\"layout\":[\"auto\",\"auto\"]},\"ecshfk_Ha\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"J05pST8qK\":\"title\",\"ZYb9LPjcn\":\"link\",\"nzFFBQVin\":\"onMouseEnter\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerMtzK4LoXK=withCSS(Component,css,\"framer-wCK1Y\");export default FramerMtzK4LoXK;FramerMtzK4LoXK.displayName=\"navbar_textlink\";FramerMtzK4LoXK.defaultProps={height:22,width:81.5};addPropertyControls(FramerMtzK4LoXK,{variant:{options:[\"sbIkYvnmi\",\"BORx5pDpB\",\"Gcx4HFB6P\"],optionTitles:[\"Variant 1\",\"small\",\"navbar_textlink_regular\"],title:\"Variant\",type:ControlType.Enum},J05pST8qK:{defaultValue:\"See more\",displayTextArea:false,title:\"Title\",type:ControlType.String},ZYb9LPjcn:{title:\"Link\",type:ControlType.Link},nzFFBQVin:{title:\"On Mouse Enter\",type:ControlType.EventHandler}});addFonts(FramerMtzK4LoXK,[{explicitInter:true,fonts:[{family:\"Lark Circular Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/kD6uHRQCWWP966PnsDtH7Pe1pU.otf\"},{family:\"Lark Circular Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/XcA9QJt41sY3ngmrhhTnxQd43g.otf\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMtzK4LoXK\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"22\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"81.5\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"J05pST8qK\\\":\\\"title\\\",\\\"ZYb9LPjcn\\\":\\\"link\\\",\\\"nzFFBQVin\\\":\\\"onMouseEnter\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"BORx5pDpB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Gcx4HFB6P\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ixWSoia5Y\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ecshfk_Ha\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MtzK4LoXK.map", "// Generated by Framer (dc5e905)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Navbar_textlink from\"https://framerusercontent.com/modules/jpQTLU7ZMbccHILqhUaD/TeipHSdc9l0E1ULRfBfq/MtzK4LoXK.js\";const Navbar_textlinkFonts=getFonts(Navbar_textlink);const enabledGestures={cyN32JpFi:{hover:true},NkZFVRQR9:{hover:true}};const cycleOrder=[\"cyN32JpFi\",\"NkZFVRQR9\"];const serializationHash=\"framer-Ubl73\";const variantClassNames={cyN32JpFi:\"framer-v-13uigc3\",NkZFVRQR9:\"framer-v-11tigu5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"cyN32JpFi\",Nav_CustomerStoryCard:\"NkZFVRQR9\"};const getProps=({description,height,id,image,onMouseEnter,productLink,textlinkText,title,width,...props})=>{return{...props,djTWGpq81:textlinkText??props.djTWGpq81??\"See more\",KMRxw9_nJ:title??props.KMRxw9_nJ??\"Why Lark\",nkJenRTF7:image??props.nkJenRTF7??{pixelHeight:354,pixelWidth:588,src:\"https://framerusercontent.com/images/Sa918wVvWKZiJQIUNmjVyXRb9E.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Sa918wVvWKZiJQIUNmjVyXRb9E.png?scale-down-to=512 512w,https://framerusercontent.com/images/Sa918wVvWKZiJQIUNmjVyXRb9E.png 588w\"},sNTOFVUgZ:productLink??props.sNTOFVUgZ,TFtREf5Bb:onMouseEnter??props.TFtREf5Bb,variant:humanReadableVariantMap[props.variant]??props.variant??\"cyN32JpFi\",WDmbhJgi4:description??props.WDmbhJgi4??\"Find out why millions of global like Lark\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,nkJenRTF7,KMRxw9_nJ,WDmbhJgi4,sNTOFVUgZ,djTWGpq81,TFtREf5Bb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cyN32JpFi\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEntercbh2sc=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(TFtREf5Bb){const res=await TFtREf5Bb(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:sNTOFVUgZ,motionChild:true,nodeId:\"cyN32JpFi\",openInNewTab:false,scopeId:\"E9lEEyYNE\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-13uigc3\",className,classNames)} framer-1vpdxqt`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"cyN32JpFi\",ref:refBinding,style:{backgroundColor:\"rgb(247, 249, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"none\",...style},variants:{\"cyN32JpFi-hover\":{boxShadow:\"0px 6px 18px 6px rgba(36, 91, 219, 0.04), 0px 4px 8px 0px rgba(36, 91, 219, 0.06), 0px 3px 6px -6px rgba(36, 91, 219, 0.14)\"},\"NkZFVRQR9-hover\":{boxShadow:\"0.39809593676181976px 0.39809593676181976px 2.8149633644709375px -1.25px rgba(194, 217, 255, 0.58), 1.207253071552259px 1.207253071552259px 8.536568335028905px -2.5px rgba(194, 217, 255, 0.53), 3.1913267607422307px 3.1913267607422307px 22.5660879350293px -3.75px rgba(194, 217, 255, 0.41), 10px 10px 70.71067811865476px -5px rgba(194, 217, 255, 0)\"},NkZFVRQR9:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0.18065619053231785px 0.18065619053231785px 1.1752375999763243px -1.4166666666666665px rgba(19, 85, 240, 0.15), 0.6865599909730371px 0.6865599909730371px 4.466335272837366px -2.833333333333333px rgba(19, 85, 240, 0.13), 3px 3px 19.51614716074871px -4.25px rgba(19, 85, 240, 0.03)\"}},...addPropertyOverrides({\"cyN32JpFi-hover\":{\"data-framer-name\":undefined},\"NkZFVRQR9-hover\":{\"data-framer-name\":undefined},NkZFVRQR9:{\"data-framer-name\":\"Nav_CustomerStoryCard\",\"data-highlight\":true,onMouseEnter:onMouseEntercbh2sc}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:354,intrinsicWidth:588,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:354,pixelWidth:588,sizes:\"224px\",...toResponsiveImage(nkJenRTF7)},className:\"framer-17n9gcm\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"faADs0EfJ\",style:{borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({NkZFVRQR9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:354,intrinsicWidth:588,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:354,pixelWidth:588,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(nkJenRTF7)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16sq2dc\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"jxzFMQhRh\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ovcta4\",layoutDependency:layoutDependency,layoutId:\"ltkmCeXYh\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4wrwrf\",layoutDependency:layoutDependency,layoutId:\"IGom9q5Ft\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmsgQ2lyY3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Lark Circular Medium\", \"Lark Circular Medium Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"Why Lark\"})}),className:\"framer-1nirsrr\",fonts:[\"CUSTOM;Lark Circular Medium\"],layoutDependency:layoutDependency,layoutId:\"V9dlf2y_U\",style:{\"--extracted-a0htzi\":\"var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41))\"},text:KMRxw9_nJ,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NkZFVRQR9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmsgQ2lyY3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Lark Circular Medium\", \"Lark Circular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"Why Lark\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmsgQ2lyY3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Lark Circular Medium\", \"Lark Circular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"Find out why millions of global like Lark\"})}),className:\"framer-9bbh3s\",fonts:[\"CUSTOM;Lark Circular Medium\"],layoutDependency:layoutDependency,layoutId:\"Pyu_z5iAU\",style:{\"--extracted-r6o4lv\":\"var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115))\"},text:WDmbhJgi4,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NkZFVRQR9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmsgQ2lyY3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Lark Circular Regular\", \"Lark Circular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"Find out why millions of global like Lark\"})}),fonts:[\"CUSTOM;Lark Circular Regular\"]}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+164+0+((Math.max(0,((componentViewport?.height||294)-0-164)/1)*1-18-(Math.max(0,(Math.max(0,((componentViewport?.height||294)-0-164)/1)*1-18-0)/1)*1+0))/2+0+0)+0+(0+106+(Math.max(0,(Math.max(0,((componentViewport?.height||294)-0-164)/1)*1-18-0)/1)*1-0-128)/1*1),...addPropertyOverrides({NkZFVRQR9:{y:(componentViewport?.y||0)+0+116+0+((Math.max(0,((componentViewport?.height||220)-0-116)/1)*1-16-(Math.max(0,(Math.max(0,((componentViewport?.height||220)-0-116)/1)*1-16-0)/1)*1+0))/2+0+0)+0+(0+106+(Math.max(0,(Math.max(0,((componentViewport?.height||220)-0-116)/1)*1-16-0)/1)*1-0-128)/1*1)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1op0f72-container\",layoutDependency:layoutDependency,layoutId:\"F5rFDpQQ4-container\",nodeId:\"F5rFDpQQ4\",rendersWithMotion:true,scopeId:\"E9lEEyYNE\",children:/*#__PURE__*/_jsx(Navbar_textlink,{height:\"100%\",id:\"F5rFDpQQ4\",J05pST8qK:djTWGpq81,layoutId:\"F5rFDpQQ4\",variant:\"sbIkYvnmi\",width:\"100%\",ZYb9LPjcn:sNTOFVUgZ,...addPropertyOverrides({NkZFVRQR9:{variant:\"Gcx4HFB6P\"}},baseVariant,gestureVariant)})})})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ubl73.framer-1vpdxqt, .framer-Ubl73 .framer-1vpdxqt { display: block; }\",\".framer-Ubl73.framer-13uigc3 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: 294px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 224px; }\",\".framer-Ubl73 .framer-17n9gcm { flex: none; height: 150px; overflow: hidden; position: relative; width: 224px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Ubl73 .framer-16sq2dc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px 18px 18px 18px; position: relative; width: 100%; }\",\".framer-Ubl73 .framer-ovcta4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 188px; }\",\".framer-Ubl73 .framer-4wrwrf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ubl73 .framer-1nirsrr, .framer-Ubl73 .framer-9bbh3s { flex: none; height: auto; max-height: 140px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Ubl73 .framer-1op0f72-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Ubl73.framer-v-11tigu5.framer-13uigc3 { gap: 16px; height: 220px; width: 273px; }\",\".framer-Ubl73.framer-v-11tigu5 .framer-17n9gcm { height: 100px; width: 100%; }\",\".framer-Ubl73.framer-v-11tigu5 .framer-16sq2dc { padding: 0px 12px 16px 12px; }\",\".framer-Ubl73.framer-v-11tigu5 .framer-ovcta4 { width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 294\n * @framerIntrinsicWidth 224\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"NkZFVRQR9\":{\"layout\":[\"fixed\",\"fixed\"]},\"Wa352Bgsw\":{\"layout\":[\"fixed\",\"fixed\"]},\"rz_A2cvsx\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"nkJenRTF7\":\"image\",\"KMRxw9_nJ\":\"title\",\"WDmbhJgi4\":\"description\",\"sNTOFVUgZ\":\"productLink\",\"djTWGpq81\":\"textlinkText\",\"TFtREf5Bb\":\"onMouseEnter\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerE9lEEyYNE=withCSS(Component,css,\"framer-Ubl73\");export default FramerE9lEEyYNE;FramerE9lEEyYNE.displayName=\"navbar_ featuredcard\";FramerE9lEEyYNE.defaultProps={height:294,width:224};addPropertyControls(FramerE9lEEyYNE,{variant:{options:[\"cyN32JpFi\",\"NkZFVRQR9\"],optionTitles:[\"Variant 1\",\"Nav_CustomerStoryCard\"],title:\"Variant\",type:ControlType.Enum},nkJenRTF7:{__defaultAssetReference:\"data:framer/asset-reference,Sa918wVvWKZiJQIUNmjVyXRb9E.png?originalFilename=why+lark.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},KMRxw9_nJ:{defaultValue:\"Why Lark\",displayTextArea:false,title:\"Title\",type:ControlType.String},WDmbhJgi4:{defaultValue:\"Find out why millions of global like Lark\",displayTextArea:false,title:\"Description\",type:ControlType.String},sNTOFVUgZ:{title:\"Product Link\",type:ControlType.Link},djTWGpq81:{defaultValue:\"See more\",displayTextArea:false,title:\"Textlink text\",type:ControlType.String},TFtREf5Bb:{title:\"On Mouse Enter\",type:ControlType.EventHandler}});addFonts(FramerE9lEEyYNE,[{explicitInter:true,fonts:[{family:\"Lark Circular Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/kD6uHRQCWWP966PnsDtH7Pe1pU.otf\"},{family:\"Lark Circular Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/XcA9QJt41sY3ngmrhhTnxQd43g.otf\"}]},...Navbar_textlinkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerE9lEEyYNE\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NkZFVRQR9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Wa352Bgsw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rz_A2cvsx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"nkJenRTF7\\\":\\\"image\\\",\\\"KMRxw9_nJ\\\":\\\"title\\\",\\\"WDmbhJgi4\\\":\\\"description\\\",\\\"sNTOFVUgZ\\\":\\\"productLink\\\",\\\"djTWGpq81\\\":\\\"textlinkText\\\",\\\"TFtREf5Bb\\\":\\\"onMouseEnter\\\"}\",\"framerIntrinsicHeight\":\"294\",\"framerIntrinsicWidth\":\"224\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./E9lEEyYNE.map"],
  "mappings": "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",
  "names": ["useConstant", "init", "ref", "pe", "BASE62", "randomID", "length", "useRandomID", "useConstant", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "externalStyle", "className", "width", "height", "layoutId", "outerVariant", "TBgHLr7MW", "iWF8EWIN1", "restProps", "ref", "variant", "variants", "baseVariant", "gestureVariant", "classNames", "transition", "setVariant", "setGestureState", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapsct6xz", "args", "onTap7ln769", "variantProps", "se", "addVariantProps", "useAddVariantProps", "defaultLayoutId", "useRandomID", "pointerEvents", "style", "p", "LayoutGroup", "motion", "cx", "u", "css", "FramerF8KjCKf_G", "withCSS", "F8KjCKf_G_default", "addPropertyControls", "ControlType", "addFonts", "_define_property", "obj", "key", "value", "isHomePage", "isEnUsIndexPage", "isBrowser", "toPPLocale", "locale", "lang", "region", "trackMainPageClick", "data", "window", "containerStyle", "RightContainerStyle", "RightContainerStyleCol", "colContainer", "navLocale", "navFont", "navLink", "navWeight", "navButtonRadius", "textBtnColor", "primaryBtnBgColor", "EnUsTextDownload", "I", "lang", "color", "u", "p", "args", "_define_property", "act_type", "downloadLink", "downloadContent", "trackMainPageClick", "trackEvent", "window", "SignInBtn", "isHomePage", "actType", "clickContent", "signInLink", "TryForFreeBtn", "DownloadBtn", "style", "EnterWebAppBtn", "I", "p", "u", "navLocale", "args", "_define_property", "navLink", "act_type", "downloadLink", "downloadContent", "trackMainPageClick", "window", "navButtonRadius", "navFont", "navWeight", "ContactSalesBtn", "trackEvent", "homePagePathNameList", "SignInContainer", "col", "lang", "darkmode", "showDownload", "containerStyle", "colContainer", "SignInBtn", "EnUsTextDownload", "DownloadBtn", "TryForFreeBtn", "ENCODE_SUFFIX", "ENCODE_PREFIX", "isOfficial", "encodeId", "id", "tmp", "md5_default", "sha1_default", "useLoginStatus", "userIsLoggedIn", "setUserIsLoggedIn", "ye", "initialized", "setInitialized", "userId", "setUserId", "ue", "loadLogin", "res", "localStorageAPI", "tenantId", "popupEvent", "err", "NavTopCTA", "props", "variant", "display", "firstRender", "useFirstRender", "userPanelRef", "pe", "productListRef", "isOnboardingPage", "onTenantVisibilityChange", "show", "productListProps", "toPPLocale", "isUserLoggedIn", "userInitialized", "onClickTenant", "onClickAddTeam", "onLogout", "isBoe", "isPre", "renderNav", "userPanelConfig", "panelItems", "e", "l", "isBrowser", "isEnUsIndexPage", "isHomePage", "GoogleOneTap", "RightContainerStyle", "RightContainerStyleCol", "addPropertyControls", "ControlType", "MtzK4LoXK_exports", "__export", "__FramerMetadata__", "MtzK4LoXK_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "onMouseEnter", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "J05pST8qK", "ZYb9LPjcn", "nzFFBQVin", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterfgb7ge", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerMtzK4LoXK", "withCSS", "MtzK4LoXK_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "E9lEEyYNE_exports", "__export", "__FramerMetadata__", "E9lEEyYNE_default", "Navbar_textlinkFonts", "getFonts", "MtzK4LoXK_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "image", "onMouseEnter", "productLink", "textlinkText", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "nkJenRTF7", "KMRxw9_nJ", "WDmbhJgi4", "sNTOFVUgZ", "djTWGpq81", "TFtREf5Bb", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntercbh2sc", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerE9lEEyYNE", "withCSS", "E9lEEyYNE_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__"]
}
