{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/KnLaBdyF6nd4rgfpj31g/pWGlwi2lsQTEdhFNV3FR/Countdowncode.js", "ssg:https://framerusercontent.com/modules/jwHSSlZCPrJIAaCW2oap/Da4qHh9iF22OV9QNnivR/CTA_Tracking_250127.js", "ssg:https://framerusercontent.com/modules/YYVOXMCUZVIVMR0oAcQl/xnAbtajXkNmdqjzSZucz/ph85aw7GY.js", "ssg:https://framerusercontent.com/modules/Puuud4ovlyLQPuaSrs4U/cZIoUQT52pMTCodhitla/H3HASWOOV.js", "ssg:https://framerusercontent.com/modules/ZOmm4SVh78RLtodSNFtF/AeXgGiQRIVuZDV7wjXGj/WithEvent.js", "ssg:https://framerusercontent.com/modules/c3lER4gO9ufKAPierr1D/IbiFE7jpyO4FmX7tYpHP/wTun6V9OQ.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";import{Frame}from\"framer\";export function CountdownTimer(){const CYCLE_DURATION=15*24*60*60*1e3;const getCycleStart=()=>{const now=Date.now();return now-now%CYCLE_DURATION;};const calculateTimeLeft=()=>{const now=Date.now();const elapsed=now-getCycleStart();const remaining=CYCLE_DURATION-elapsed%CYCLE_DURATION;return{days:String(Math.floor(remaining/(1e3*60*60*24))).padStart(2,\"0\"),hours:String(Math.floor(remaining/(1e3*60*60)%24)).padStart(2,\"0\"),minutes:String(Math.floor(remaining/1e3/60%60)).padStart(2,\"0\"),seconds:String(Math.floor(remaining/1e3%60)).padStart(2,\"0\")};};const[timeLeft,setTimeLeft]=useState(null);useEffect(()=>{const timeout=setTimeout(()=>{setTimeLeft(calculateTimeLeft());},300)// \u5EF6\u8FDF 300ms \u540E\u9996\u6B21\u663E\u793A\u6570\u5B57\n;const interval=setInterval(()=>{setTimeLeft(calculateTimeLeft());},1e3);return()=>{clearTimeout(timeout);clearInterval(interval);};},[]);const renderBlock=(label,value,index)=>/*#__PURE__*/_jsxs(\"div\",{style:{width:52,borderLeft:index!==0?\"1px solid rgba(255, 255, 255, .6)\":\"none\",display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",padding:\"4px 0\"},children:[/*#__PURE__*/_jsx(\"div\",{style:{fontSize:20,fontWeight:600,fontFamily:\"Lark Circular, sans-serif\",height:28,color:\"#fff\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\"},children:value??\"\"}),/*#__PURE__*/_jsx(\"div\",{style:{fontSize:8,color:\"#fff\",fontFamily:\"Lark Circular, sans-serif\",marginTop:0},children:label})]},label);return /*#__PURE__*/_jsxs(Frame,{width:\"auto\",height:\"auto\",background:\"#eef1fb 0.6\",border:\"1px solid rgba(255, 255, 255, .6)\",borderRadius:8,style:{display:\"flex\",flexDirection:\"row\",overflow:\"hidden\",fontFamily:\"Inter, sans-serif\"},children:[renderBlock(\"DAYS\",timeLeft?.days??null,0),renderBlock(\"HOURS\",timeLeft?.hours??null,1),renderBlock(\"MIN\",timeLeft?.minutes??null,2),renderBlock(\"SEC\",timeLeft?.seconds??null,3)]});}\nexport const __FramerMetadata__ = {\"exports\":{\"CountdownTimer\":{\"type\":\"reactComponent\",\"name\":\"CountdownTimer\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Countdowncode.map", "import{jsx as _jsx}from\"react/jsx-runtime\";// Helper function to find the closest parent with a specific attribute and value\nfunction findClosestParentWithAttribute(target,attribute,includesValue){let element=target;while(element){const attrValue=element.getAttribute(attribute);if(attrValue&&attrValue.includes(includesValue)){return{name:attrValue};}element=element.parentElement;}return null;}function determineClickValue(props,event){// \u4F18\u5148\u7EA7 1\uFF1Aprops.buttonName\nif(props?.buttonName)return props.buttonName;// \u4F18\u5148\u7EA7 2\uFF1Aprops \u4E2D\u5305\u542B \"Name\" \u4E14\u4E0D\u662F \"Module\" \u7684\u5B57\u7B26\u4E32\nconst nameValue=Object.values(props).find(value=>typeof value===\"string\"&&value.includes(\"Name\")&&!value.toLowerCase().includes(\"module\"));if(nameValue)return nameValue;// \u4F18\u5148\u7EA7 3\uFF1Aevent.target \u4E2D\u6700\u8FD1\u7684 <a> \u6807\u7B7E\u7684\u6587\u672C\u5185\u5BB9\nconst linkElement=event.target.closest(\"a\")||event.target.querySelector(\"a\");if(linkElement?.textContent)return linkElement.textContent.trim();// \u9ED8\u8BA4\u60C5\u51B5\uFF1A\u8FD4\u56DE\u7A7A\u5B57\u7B26\u4E32\nreturn\"\";}function findHrefInTarget(target){if(!target)return null;const linkElement=target.closest(\"a\")||target.querySelector(\"a\");return linkElement?.getAttribute(\"href\")||null;}// Helper function to collect the event\nfunction collectClickEvent(event,props){const closestModule=findClosestParentWithAttribute(event.target,\"data-framer-name\",\"Module\");const targetHref=findHrefInTarget(event.target);if(window){window?.collectEvent?.(\"lark_website_mainpage_story_click\",{click:determineClickValue(props,event),module_name:props?.moduleName||closestModule?.name,target:props?.link||targetHref,url_path:window.location.pathname,url:window.location.href,url_from:new URLSearchParams(window.location.search).get(\"from\")});}}function handleRegisterClick(event,props){const targetHref=findHrefInTarget(event.target);// \u68C0\u67E5 target \u5C5E\u6027\u662F\u5426\u7B26\u5408\u6761\u4EF6\nconst targetIncludesRegister=props?.link?.includes(\"/global/register\")||props?.link?.includes(\"global_register\")||targetHref?.includes(\"/global/register\")||targetHref?.includes(\"global_register\");// \u5982\u679C\u6761\u4EF6\u6EE1\u8DB3\uFF0C\u6267\u884C\u903B\u8F91\nif(targetIncludesRegister&&window?.__globalVars__?.userDigest){event.preventDefault();// \u83B7\u53D6\u5F53\u524D\u9875\u9762\u7684\u8BED\u8A00\u8DEF\u5F84\uFF08\u5047\u8BBE\u662F URL \u4E2D\u7684\u8DEF\u5F84\u90E8\u5206\uFF09\nconst targetURL=props?.link||targetHref;let fallbackRedirectUri=\"\";const languagePath=window.location.pathname.split(\"/\")[1]// \u83B7\u53D6\u8DEF\u5F84\u4E2D\u7684\u8BED\u8A00\u90E8\u5206\uFF0C\u4F8B\u5982 \"en_us\"\n;if(languagePath===\"en_us\"){fallbackRedirectUri=\"https://www.larksuite.com/en_us/getstarted\";}else if(languagePath===\"ja_jp\"){fallbackRedirectUri=\"https://www.larksuite.com/ja_jp/getstarted\";}else if(languagePath===\"zh_cn\"){fallbackRedirectUri=\"https://www.larksuite.com/zh_cn/getstarted\";}else{fallbackRedirectUri=\"https://www.larksuite.com/getstarted\";}const urlObj=new URL(targetURL);// \u83B7\u53D6 redirect_uri \u7684\u503C\nconst redirectUri=urlObj.searchParams.get(\"redirect_uri\");const finalRedirectUri=redirectUri?redirectUri:fallbackRedirectUri;console.log(\"Extracted redirect_uri:\",finalRedirectUri);// \u6839\u636E\u8BED\u8A00\u8DEF\u5F84\u8BBE\u7F6E redirect_uri\n// \u6784\u9020\u767B\u5F55\u94FE\u63A5\nconst loginUrl=`https://login.larksuite.com/accounts/page/login?app_id=1001&redirect_uri=${finalRedirectUri}`;// \u6253\u5F00\u65B0\u7684\u9875\u9762\nwindow?.open(loginUrl);}}// Higher-order function to wrap components\nexport function WithModuleClick(Component){return props=>{const onClick=event=>{collectClickEvent(event,props);handleRegisterClick(event,props);};return /*#__PURE__*/_jsx(Component,{...props,onClick:onClick});};}\nexport const __FramerMetadata__ = {\"exports\":{\"WithModuleClick\":{\"type\":\"reactHoc\",\"name\":\"WithModuleClick\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CTA_Tracking_250127.map", "// Generated by Framer (7e0329e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";const MaterialFonts=getFonts(Material);const enabledGestures={EA_6mOunX:{hover:true},RieAxuLXR:{hover:true},z1xIqXP3N:{hover:true}};const cycleOrder=[\"EA_6mOunX\",\"z1xIqXP3N\",\"RieAxuLXR\",\"g73fijCBb\",\"eVONc_7IN\",\"iK_XY48q8\"];const serializationHash=\"framer-LfhHd\";const variantClassNames={EA_6mOunX:\"framer-v-13vkrly\",eVONc_7IN:\"framer-v-3ibf9q\",g73fijCBb:\"framer-v-mb8yms\",iK_XY48q8:\"framer-v-a42ejw\",RieAxuLXR:\"framer-v-nxoq7g\",z1xIqXP3N:\"framer-v-o6pc3n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={\"Claim your spot white dark\":\"z1xIqXP3N\",\"Claim your spot white mobile\":\"eVONc_7IN\",\"Claim your spot white\":\"EA_6mOunX\",\"Try now dark\":\"iK_XY48q8\",\"Try now white mobile\":\"g73fijCBb\",\"Try now white\":\"RieAxuLXR\"};const getProps=({buttonCopy,height,id,link,width,...props})=>{return{...props,dSbpV2V5J:buttonCopy??props.dSbpV2V5J??\"Claim Your Spot\",KVmQOIw77:link??props.KVmQOIw77,variant:humanReadableVariantMap[props.variant]??props.variant??\"EA_6mOunX\"};};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,dSbpV2V5J,KVmQOIw77,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EA_6mOunX\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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:KVmQOIw77,motionChild:true,nodeId:\"EA_6mOunX\",openInNewTab:true,scopeId:\"ph85aw7GY\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-13vkrly\",className,classNames)} framer-izfw9m`,\"data-framer-name\":\"Claim your spot white\",layoutDependency:layoutDependency,layoutId:\"EA_6mOunX\",ref:refBinding,style:{...style},...addPropertyOverrides({\"EA_6mOunX-hover\":{\"data-framer-name\":undefined},\"RieAxuLXR-hover\":{\"data-framer-name\":undefined},\"z1xIqXP3N-hover\":{\"data-framer-name\":undefined},eVONc_7IN:{\"data-framer-name\":\"Claim your spot white mobile\"},g73fijCBb:{\"data-framer-name\":\"Try now white mobile\"},iK_XY48q8:{\"data-framer-name\":\"Try now dark\"},RieAxuLXR:{\"data-framer-name\":\"Try now white\"},z1xIqXP3N:{\"data-framer-name\":\"Claim your spot white dark\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6rlrl2\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"Y_3P_HEDj\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{iK_XY48q8:{\"--border-color\":\"rgb(0, 47, 158)\"},z1xIqXP3N:{\"--border-color\":\"rgb(0, 47, 158)\"}},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-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Claim Your Spot\"})}),className:\"framer-p8pori\",fonts:[\"CUSTOM;Lark Circular Medium\"],layoutDependency:layoutDependency,layoutId:\"BtCgYWhm8\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:dSbpV2V5J,variants:{iK_XY48q8:{\"--extracted-r6o4lv\":\"rgb(0, 47, 158)\"},z1xIqXP3N:{\"--extracted-r6o4lv\":\"rgb(0, 47, 158)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eVONc_7IN:{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-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Claim Your Spot\"})})},g73fijCBb:{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-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Claim Your Spot\"})})},iK_XY48q8:{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-text-color\":\"var(--extracted-r6o4lv, rgb(0, 47, 158))\"},children:\"Claim Your Spot\"})})},z1xIqXP3N:{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-text-color\":\"var(--extracted-r6o4lv, rgb(0, 47, 158))\"},children:\"Claim Your Spot\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-99udj0-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rOMvFtVrU-container\",nodeId:\"rOMvFtVrU\",rendersWithMotion:true,scopeId:\"ph85aw7GY\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowForward\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"rOMvFtVrU\",layoutId:\"rOMvFtVrU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({iK_XY48q8:{color:\"rgb(0, 47, 158)\"},z1xIqXP3N:{color:\"rgb(0, 47, 158)\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LfhHd.framer-izfw9m, .framer-LfhHd .framer-izfw9m { display: block; }\",\".framer-LfhHd.framer-13vkrly { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 158px; }\",\".framer-LfhHd .framer-6rlrl2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-LfhHd .framer-p8pori { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-LfhHd .framer-99udj0-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-LfhHd.framer-v-nxoq7g.framer-13vkrly { width: 108px; }\",\".framer-LfhHd.framer-v-mb8yms.framer-13vkrly, .framer-LfhHd.framer-v-a42ejw.framer-13vkrly { cursor: unset; width: 108px; }\",\".framer-LfhHd.framer-v-3ibf9q.framer-13vkrly { cursor: unset; }\",\".framer-LfhHd.framer-v-13vkrly.hover.framer-13vkrly, .framer-LfhHd.framer-v-o6pc3n.hover.framer-13vkrly, .framer-LfhHd.framer-v-nxoq7g.hover.framer-13vkrly { gap: 8px; }\",'.framer-LfhHd[data-border=\"true\"]::after, .framer-LfhHd [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 158\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"z1xIqXP3N\":{\"layout\":[\"fixed\",\"auto\"]},\"RieAxuLXR\":{\"layout\":[\"fixed\",\"auto\"]},\"g73fijCBb\":{\"layout\":[\"fixed\",\"auto\"]},\"eVONc_7IN\":{\"layout\":[\"fixed\",\"auto\"]},\"iK_XY48q8\":{\"layout\":[\"fixed\",\"auto\"]},\"LGCYa2Tj4\":{\"layout\":[\"fixed\",\"auto\"]},\"L065SD4Kw\":{\"layout\":[\"fixed\",\"auto\"]},\"x3FcpOdNA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"dSbpV2V5J\":\"buttonCopy\",\"KVmQOIw77\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerph85aw7GY=withCSS(Component,css,\"framer-LfhHd\");export default Framerph85aw7GY;Framerph85aw7GY.displayName=\"TopBannerCTA\";Framerph85aw7GY.defaultProps={height:20,width:158};addPropertyControls(Framerph85aw7GY,{variant:{options:[\"EA_6mOunX\",\"z1xIqXP3N\",\"RieAxuLXR\",\"g73fijCBb\",\"eVONc_7IN\",\"iK_XY48q8\"],optionTitles:[\"Claim your spot white\",\"Claim your spot white dark\",\"Try now white\",\"Try now white mobile\",\"Claim your spot white mobile\",\"Try now dark\"],title:\"Variant\",type:ControlType.Enum},dSbpV2V5J:{defaultValue:\"Claim Your Spot\",displayTextArea:false,title:\"Button copy\",type:ControlType.String},KVmQOIw77:{title:\"Link\",type:ControlType.Link}});addFonts(Framerph85aw7GY,[{explicitInter:true,fonts:[{family:\"Lark Circular Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/kD6uHRQCWWP966PnsDtH7Pe1pU.otf\"}]},...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerph85aw7GY\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"20\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"158\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"dSbpV2V5J\\\":\\\"buttonCopy\\\",\\\"KVmQOIw77\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"z1xIqXP3N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RieAxuLXR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g73fijCBb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eVONc_7IN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iK_XY48q8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LGCYa2Tj4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L065SD4Kw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x3FcpOdNA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ph85aw7GY.map", "// Generated by Framer (189896a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import{CountdownTimer}from\"https://framerusercontent.com/modules/KnLaBdyF6nd4rgfpj31g/pWGlwi2lsQTEdhFNV3FR/Countdowncode.js\";import{WithModuleClick}from\"https://framerusercontent.com/modules/jwHSSlZCPrJIAaCW2oap/Da4qHh9iF22OV9QNnivR/CTA_Tracking_250127.js\";import TopBannerCTA,*as TopBannerCTAInfo from\"https://framerusercontent.com/modules/YYVOXMCUZVIVMR0oAcQl/xnAbtajXkNmdqjzSZucz/ph85aw7GY.js\";const CountdownTimerFonts=getFonts(CountdownTimer);const TopBannerCTAFonts=getFonts(TopBannerCTA);const TopBannerCTAWithModuleClick10filkWithMappedReactPropsfcmadl=withMappedReactProps(withCodeBoundaryForOverrides(TopBannerCTA,{nodeId:\"dqB6mlx0o\",override:WithModuleClick,scopeId:\"H3HASWOOV\"}),TopBannerCTAInfo);const MaterialFonts=getFonts(Material);const cycleOrder=[\"XKZgZuop8\",\"v96dDPGXm\",\"UKakDZWJl\",\"tySM5LHx6\"];const serializationHash=\"framer-O8pp5\";const variantClassNames={tySM5LHx6:\"framer-v-j6oztv\",UKakDZWJl:\"framer-v-kf1jez\",v96dDPGXm:\"framer-v-1h7v5nj\",XKZgZuop8:\"framer-v-14sjuqq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={Blank:\"tySM5LHx6\",Mobile:\"UKakDZWJl\",PC:\"XKZgZuop8\",Tablet:\"v96dDPGXm\"};const getProps=({height,id,link,width,...props})=>{return{...props,DKJy2mQj8:link??props.DKJy2mQj8,variant:humanReadableVariantMap[props.variant]??props.variant??\"XKZgZuop8\"};};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,DKJy2mQj8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XKZgZuop8\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onClick184t01j=activeVariantCallback(async(...args)=>{setVariant(\"tySM5LHx6\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"tySM5LHx6\")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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-14sjuqq\",className,classNames),\"data-framer-name\":\"PC\",layoutDependency:layoutDependency,layoutId:\"XKZgZuop8\",ref:refBinding,style:{background:\"linear-gradient(93deg, rgb(67, 106, 255) 52%, rgb(58, 213, 240) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{tySM5LHx6:{background:\"linear-gradient(93deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%)\",backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({tySM5LHx6:{\"data-framer-name\":\"Blank\"},UKakDZWJl:{\"data-framer-name\":\"Mobile\"},v96dDPGXm:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-152zk9c\",layoutDependency:layoutDependency,layoutId:\"Z4ciWsaa9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,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'},children:\"\u23F0\"})}),className:\"framer-1oz0o07\",fonts:[\"CUSTOM;Lark Circular Regular\"],layoutDependency:layoutDependency,layoutId:\"dC08ZWBzR\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xhcmsgQ2lyY3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Lark Circular Regular\", \"Lark Circular Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Only\"})}),className:\"framer-biqu6k\",fonts:[\"CUSTOM;Lark Circular Regular\"],layoutDependency:layoutDependency,layoutId:\"qgYr6TgJj\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UKakDZWJl:{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\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Only\"})})},v96dDPGXm:{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\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Only\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ne5c18\",layoutDependency:layoutDependency,layoutId:\"CSC9LiOX7\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e7g7zx-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"i14oOmBe8-container\",nodeId:\"i14oOmBe8\",rendersWithMotion:true,scopeId:\"H3HASWOOV\",children:/*#__PURE__*/_jsx(CountdownTimer,{height:\"100%\",id:\"i14oOmBe8\",layoutId:\"i14oOmBe8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,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-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"left!\"})}),className:\"framer-1f8t1m7\",fonts:[\"CUSTOM;Lark Circular Regular\"],layoutDependency:layoutDependency,layoutId:\"KdONMvKkm\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UKakDZWJl:{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\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"left!\"})})},v96dDPGXm:{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\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"left!\"})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hv1qz1\",layoutDependency:layoutDependency,layoutId:\"MpClGSx1w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,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-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Buy Lark Pro now and enjoy a complimentary trial of AI Meeting Notes.\"})}),className:\"framer-1e8qa0i\",fonts:[\"CUSTOM;Lark Circular Regular\"],layoutDependency:layoutDependency,layoutId:\"InICdhtRV\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UKakDZWJl:{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\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Buy Lark Pro now and enjoy a complimentary trial of AI Meeting Notes.\"})})},v96dDPGXm:{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\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Buy Lark Pro now and enjoy a complimentary trial of AI Meeting Notes.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+(8+((componentViewport?.height||67)-16-20)/2)+0,...addPropertyOverrides({UKakDZWJl:{y:(componentViewport?.y||0)+12+(((componentViewport?.height||152)-28-183)/2+51+6)+0+106},v96dDPGXm:{y:(componentViewport?.y||0)+12+(((componentViewport?.height||132)-28-103.8)/2+51+6)+0+26.8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10filk-container\",layoutDependency:layoutDependency,layoutId:\"dqB6mlx0o-container\",nodeId:\"dqB6mlx0o\",rendersWithMotion:true,scopeId:\"H3HASWOOV\",children:/*#__PURE__*/_jsx(TopBannerCTAWithModuleClick10filkWithMappedReactPropsfcmadl,{dSbpV2V5J:\"Try now\",height:\"100%\",id:\"dqB6mlx0o\",KVmQOIw77:DKJy2mQj8,layoutId:\"dqB6mlx0o\",variant:\"RieAxuLXR\",width:\"100%\",...addPropertyOverrides({UKakDZWJl:{variant:\"g73fijCBb\"},v96dDPGXm:{variant:\"g73fijCBb\"}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-b3w30v-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pQY4uuUvk-container\",nodeId:\"pQY4uuUvk\",rendersWithMotion:true,scopeId:\"H3HASWOOV\",style:{opacity:.8},children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Close\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"pQY4uuUvk\",layoutId:\"pQY4uuUvk\",mirrored:false,onClick:onClick184t01j,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-O8pp5.framer-yds075, .framer-O8pp5 .framer-yds075 { display: block; }\",\".framer-O8pp5.framer-14sjuqq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 8px 0px; position: relative; width: 1200px; }\",\".framer-O8pp5 .framer-152zk9c { 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: min-content; }\",\".framer-O8pp5 .framer-1oz0o07, .framer-O8pp5 .framer-biqu6k, .framer-O8pp5 .framer-1f8t1m7, .framer-O8pp5 .framer-1e8qa0i { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-O8pp5 .framer-1ne5c18 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 51px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 211px; }\",\".framer-O8pp5 .framer-1e7g7zx-container, .framer-O8pp5 .framer-10filk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-O8pp5 .framer-1hv1qz1 { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-O8pp5 .framer-b3w30v-container { cursor: pointer; flex: none; height: 20px; position: absolute; right: 14px; top: 21px; width: 20px; z-index: 1; }\",\".framer-O8pp5.framer-v-1h7v5nj.framer-14sjuqq { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 12px 20px 16px 20px; width: 810px; }\",\".framer-O8pp5.framer-v-1h7v5nj .framer-152zk9c { gap: 6px; }\",\".framer-O8pp5.framer-v-1h7v5nj .framer-1hv1qz1 { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-O8pp5.framer-v-1h7v5nj .framer-b3w30v-container { right: 12px; top: 16px; }\",\".framer-O8pp5.framer-v-kf1jez.framer-14sjuqq { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 12px 20px 16px 20px; width: 390px; }\",\".framer-O8pp5.framer-v-kf1jez .framer-152zk9c { gap: 4px; }\",\".framer-O8pp5.framer-v-kf1jez .framer-1hv1qz1 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 8px; justify-content: flex-start; width: 100%; }\",\".framer-O8pp5.framer-v-kf1jez .framer-1e8qa0i { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-O8pp5.framer-v-kf1jez .framer-b3w30v-container { right: 8px; top: 8px; }\",\".framer-O8pp5.framer-v-j6oztv.framer-14sjuqq { gap: 0px; min-height: 1px; padding: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 67\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"v96dDPGXm\":{\"layout\":[\"fixed\",\"auto\"]},\"UKakDZWJl\":{\"layout\":[\"fixed\",\"auto\"]},\"tySM5LHx6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"DKJy2mQj8\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerH3HASWOOV=withCSS(Component,css,\"framer-O8pp5\");export default FramerH3HASWOOV;FramerH3HASWOOV.displayName=\"LarkProBanner\";FramerH3HASWOOV.defaultProps={height:67,width:1200};addPropertyControls(FramerH3HASWOOV,{variant:{options:[\"XKZgZuop8\",\"v96dDPGXm\",\"UKakDZWJl\",\"tySM5LHx6\"],optionTitles:[\"PC\",\"Tablet\",\"Mobile\",\"Blank\"],title:\"Variant\",type:ControlType.Enum},DKJy2mQj8:{title:\"Link\",type:ControlType.Link}});addFonts(FramerH3HASWOOV,[{explicitInter:true,fonts:[{family:\"Lark Circular Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/XcA9QJt41sY3ngmrhhTnxQd43g.otf\"}]},...CountdownTimerFonts,...TopBannerCTAFonts,...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerH3HASWOOV\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"DKJy2mQj8\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"67\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"v96dDPGXm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UKakDZWJl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tySM5LHx6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./H3HASWOOV.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useScroll}from\"framer-motion\";import{useEffect,useRef}from\"react\";function throttled(fn,delay){let timer;let starttime=Date.now();return function(){let curTime=Date.now();let remaining=delay-(curTime-starttime);let context=this;let args=arguments;clearTimeout(timer);if(remaining<=0){fn.apply(context,args);starttime=Date.now();}else{timer=setTimeout(fn,remaining);}};}export function pageEvent(Component){return props=>{const componentRef=useRef();const{scrollY}=useScroll();let startTime=0;const documentVisibilityChange=()=>{if(document.visibilityState===\"hidden\"){window?.collectEvent?.(\"lark_website_get_focus_server\",{duration:Date.now()-startTime});}else if(document.visibilityState===\"visible\"){startTime=Date.now();}};const scrollRateChange=throttled(()=>{const{height}=componentRef.current?.getBoundingClientRect?.();const totalHeight=window.innerHeight||document.documentElement.clientHeight;window?.collectEvent?.(\"lark_website_rate_show_view\",{rate:Math.round(scrollY.get()/(height-totalHeight)*100)/100,height:totalHeight});},500);const scrollChange=()=>{scrollRateChange();};useEffect(()=>{scrollY.onChange(scrollChange);startTime=Date.now();document.addEventListener(\"visibilitychange\",documentVisibilityChange);return()=>{document.removeEventListener(\"visibilitychange\",documentVisibilityChange);};},[]);return /*#__PURE__*/_jsx(Component,{ref:componentRef,...props});};}export function withScroll(Component){const mainPageViewEventName=\"lark_website_mainpage_story_view\";function getModuleIndex({module_name,moduleClassName}){console.log(moduleClassName,module_name,99);if(!moduleClassName){return 0;}const moduleList=document.querySelectorAll(`[data-framer-name=\"${module_name}\"]`);const target=document.querySelector(`.${moduleClassName}`);return Array.from(moduleList).findIndex(item=>item===target);}return props=>{const componentRef=useRef();const{scrollY}=useScroll();function debounce(fn,delay){let timer;return function(...args){if(timer)clearTimeout(timer);timer=setTimeout(()=>fn.apply(this,args),delay);};}let moduleViewStartTime;const module_name=props[\"data-framer-name\"]||props.name;const moduleClassName=props.className||\"\";console.log(props,33);const eventReport=()=>{// height: \u6B64\u5143\u7D20\u7684\u9AD8\u5EA6  top: \u8DDD\u79BB\u6D4F\u89C8\u5668\u9876\u90E8\u7684\u9AD8\u5EA6\nconst{height,top}=componentRef?.current?.getBoundingClientRect?.();// \u6D4F\u89C8\u5668\u9AD8\u5EA6\nconst totalHeight=window.innerHeight||document.documentElement.clientHeight;if(top>=0&&top-totalHeight<0||top<0&&top+height>0){if(!moduleViewStartTime){moduleViewStartTime=Date.now();}const module_index=getModuleIndex({module_name,moduleClassName});const params={module_name,module_index};console.log(params,\"\u4E0A\u62A5\");window?.collectEvent?.(mainPageViewEventName,params);}else{if(moduleViewStartTime){window?.collectEvent?.(\"lark_website_mainpage_story_click\",{module_name,click:\"page_active\",duration:Date.now()-moduleViewStartTime});moduleViewStartTime=0;}}};const scrollModuleChange=debounce(eventReport,300);const scrollChange=()=>{scrollModuleChange();};const documentVisibilityChange=()=>{if(!moduleViewStartTime){return;}if(document.visibilityState===\"hidden\"){window?.collectEvent?.(\"lark_website_mainpage_story_click\",{module_name,click:\"page_active\",duration:Date.now()-moduleViewStartTime});}else if(document.visibilityState===\"visible\"){moduleViewStartTime=Date.now();}};useEffect(()=>{scrollY.onChange(scrollChange);eventReport();document.addEventListener(\"visibilitychange\",documentVisibilityChange);return()=>{document.removeEventListener(\"visibilitychange\",documentVisibilityChange);};},[]);return /*#__PURE__*/_jsx(Component,{ref:componentRef,...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"pageEvent\":{\"type\":\"reactHoc\",\"name\":\"pageEvent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withScroll\":{\"type\":\"reactHoc\",\"name\":\"withScroll\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WithEvent.map", "// Generated by Framer (189896a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,PropertyOverrides,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import LarkProBanner from\"https://framerusercontent.com/modules/Puuud4ovlyLQPuaSrs4U/cZIoUQT52pMTCodhitla/H3HASWOOV.js\";import Navbar202505,*as Navbar202505Info from\"#framer/local/canvasComponent/Zjkwy15y2/Zjkwy15y2.js\";import{pageEvent}from\"#framer/local/codeFile/ZQK291m/APACStorylineTracking.js\";import APACCustomerCentricABTestComponent from\"#framer/local/codeFile/iepVpwE/APACHomeStorylineABComponentCustomerCentric.js\";import GoogleOneTapNode from\"#framer/local/codeFile/UnFkzYh/GoogleOneTapNode.js\";import{withBannerEnUs}from\"#framer/local/codeFile/vCB1cxI/WithBanner.js\";import{withScroll}from\"#framer/local/codeFile/qjPX32R/WithEvent.js\";import metadataProvider from\"#framer/local/webPageMetadata/wTun6V9OQ/wTun6V9OQ.js\";const GoogleOneTapNodeFonts=getFonts(GoogleOneTapNode);const LarkProBannerFonts=getFonts(LarkProBanner);const MotionDivWithScrolljzcc2i=withCodeBoundaryForOverrides(motion.div,{nodeId:\"qecrAJVbD\",override:withScroll,scopeId:\"wTun6V9OQ\"});const Navbar202505Fonts=getFonts(Navbar202505);const Navbar202505WithBannerEnUs1jo222fWithMappedReactProps1u6zpqq=withMappedReactProps(withCodeBoundaryForOverrides(Navbar202505,{nodeId:\"c50U6wuei\",override:withBannerEnUs,scopeId:\"wTun6V9OQ\"}),Navbar202505Info);const APACCustomerCentricABTestComponentFonts=getFonts(APACCustomerCentricABTestComponent);const MotionDivPageEvent15p0ui8=withCodeBoundaryForOverrides(motion.div,{nodeId:\"WMh40gp2u\",override:pageEvent,scopeId:\"wTun6V9OQ\"});const breakpoints={oAi0XOS30:\"(min-width: 810px) and (max-width: 1199px)\",SiLCHihmf:\"(max-width: 809px)\",WMh40gp2u:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-pcRmq\";const variantClassNames={oAi0XOS30:\"framer-v-1cgp2sj\",SiLCHihmf:\"framer-v-15pbvls\",WMh40gp2u:\"framer-v-15p0ui8\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WMh40gp2u\",Mobile:\"SiLCHihmf\",Tablet:\"oAi0XOS30\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WMh40gp2u\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WMh40gp2u\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(MotionDivPageEvent15p0ui8,{...restProps,className:cx(scopingClassNames,\"framer-15p0ui8\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-80xfzz-container\",isAuthoredByUser:true,nodeId:\"xDaawD4JN\",rendersWithMotion:true,scopeId:\"wTun6V9OQ\",children:/*#__PURE__*/_jsx(GoogleOneTapNode,{height:\"100%\",id:\"xDaawD4JN\",layoutId:\"xDaawD4JN\",variant:\"Desktop\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-160fazx\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(MotionDivWithScrolljzcc2i,{className:\"framer-jzcc2i\",\"data-framer-name\":\"top-bannerModule\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gj9hx0-container\",isModuleExternal:true,nodeId:\"jW1CRpE_7\",rendersWithMotion:true,scopeId:\"wTun6V9OQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oAi0XOS30:{variant:\"v96dDPGXm\"},SiLCHihmf:{variant:\"UKakDZWJl\"}},children:/*#__PURE__*/_jsx(LarkProBanner,{DKJy2mQj8:\"https://www.larksuite.com/global/salessupport?lang=en-US&utm_source=website&utm_medium=banner&utm_campaign=ai_meeting_minutes\",height:\"100%\",id:\"jW1CRpE_7\",layoutId:\"jW1CRpE_7\",style:{width:\"100%\"},variant:\"XKZgZuop8\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:67,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jo222f-container\",nodeId:\"c50U6wuei\",rendersWithMotion:true,scopeId:\"wTun6V9OQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oAi0XOS30:{variant:\"xZ_uMoUrU\"},SiLCHihmf:{variant:\"RWmnjtEQQ\"}},children:/*#__PURE__*/_jsx(Navbar202505WithBannerEnUs1jo222fWithMappedReactProps1u6zpqq,{d_EeGNLyM:true,height:\"100%\",hqu_IJMJo:false,id:\"c50U6wuei\",JrJY1BWQQ:true,layoutId:\"c50U6wuei\",pGapHh8sz:false,style:{width:\"100%\"},variant:\"gofKQ70Hk\",width:\"100%\",xA_pGKckf:false,zPsrJ26fp:false})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pmj1z5-container\",isAuthoredByUser:true,nodeId:\"L_zfbimnI\",rendersWithMotion:true,scopeId:\"wTun6V9OQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oAi0XOS30:{variant:\"Tablet\"},SiLCHihmf:{variant:\"Phone\"}},children:/*#__PURE__*/_jsx(APACCustomerCentricABTestComponent,{height:\"100%\",id:\"L_zfbimnI\",layoutId:\"L_zfbimnI\",style:{width:\"100%\"},variant:\"Desktop\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pcRmq.framer-1taaehk, .framer-pcRmq .framer-1taaehk { display: block; }\",\".framer-pcRmq.framer-15p0ui8 { 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-pcRmq .framer-80xfzz-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-pcRmq .framer-160fazx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-pcRmq .framer-jzcc2i { 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-pcRmq .framer-1gj9hx0-container, .framer-pcRmq .framer-pmj1z5-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-pcRmq .framer-1jo222f-container { flex: none; height: auto; position: relative; width: 100%; z-index: 9; }\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-pcRmq.framer-15p0ui8 { width: 810px; }}\",\"@media (max-width: 809px) { .framer-pcRmq.framer-15p0ui8 { width: 375px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11502\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"oAi0XOS30\":{\"layout\":[\"fixed\",\"auto\"]},\"SiLCHihmf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerwTun6V9OQ=withCSS(Component,css,\"framer-pcRmq\");export default FramerwTun6V9OQ;FramerwTun6V9OQ.displayName=\"_en_sg_new_video_hero\";FramerwTun6V9OQ.defaultProps={height:11502,width:1200};addFonts(FramerwTun6V9OQ,[{explicitInter:true,fonts:[]},...GoogleOneTapNodeFonts,...LarkProBannerFonts,...Navbar202505Fonts,...APACCustomerCentricABTestComponentFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwTun6V9OQ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oAi0XOS30\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SiLCHihmf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"11502\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["CountdownTimer", "getCycleStart", "now", "calculateTimeLeft", "remaining", "timeLeft", "setTimeLeft", "ye", "ue", "timeout", "interval", "renderBlock", "label", "value", "index", "u", "p", "Frame", "findClosestParentWithAttribute", "target", "attribute", "includesValue", "element", "attrValue", "determineClickValue", "props", "event", "nameValue", "value", "linkElement", "findHrefInTarget", "collectClickEvent", "closestModule", "targetHref", "window", "handleRegisterClick", "targetURL", "fallbackRedirectUri", "languagePath", "redirectUri", "finalRedirectUri", "loginUrl", "WithModuleClick", "Component", "p", "ph85aw7GY_exports", "__export", "__FramerMetadata__", "ph85aw7GY_default", "MaterialFonts", "getFonts", "Icon", "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", "buttonCopy", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "dSbpV2V5J", "KVmQOIw77", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framerph85aw7GY", "withCSS", "ph85aw7GY_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "CountdownTimerFonts", "getFonts", "CountdownTimer", "TopBannerCTAFonts", "ph85aw7GY_default", "TopBannerCTAWithModuleClick10filkWithMappedReactPropsfcmadl", "withMappedReactProps", "withCodeBoundaryForOverrides", "WithModuleClick", "ph85aw7GY_exports", "MaterialFonts", "Icon", "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", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "DKJy2mQj8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onClick184t01j", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerH3HASWOOV", "withCSS", "H3HASWOOV_default", "addPropertyControls", "ControlType", "addFonts", "withScroll", "Component", "mainPageViewEventName", "getModuleIndex", "module_name", "moduleClassName", "moduleList", "target", "item", "props", "componentRef", "pe", "scrollY", "useScroll", "debounce", "fn", "delay", "timer", "args", "moduleViewStartTime", "eventReport", "height", "top", "totalHeight", "window", "module_index", "params", "scrollModuleChange", "scrollChange", "documentVisibilityChange", "ue", "p", "GoogleOneTapNodeFonts", "getFonts", "GoogleOneTapNode", "LarkProBannerFonts", "H3HASWOOV_default", "MotionDivWithScrolljzcc2i", "withCodeBoundaryForOverrides", "motion", "withScroll", "Navbar202505Fonts", "Zjkwy15y2_default", "Navbar202505WithBannerEnUs1jo222fWithMappedReactProps1u6zpqq", "withMappedReactProps", "withBannerEnUs", "Zjkwy15y2_exports", "APACCustomerCentricABTestComponentFonts", "APACCustomerCentricABTestComponent", "MotionDivPageEvent15p0ui8", "pageEvent", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "MotionDivPageEvent15p0ui8", "ComponentViewportProvider", "Container", "GoogleOneTapNode", "motion", "MotionDivWithScrolljzcc2i", "PropertyOverrides2", "H3HASWOOV_default", "Navbar202505WithBannerEnUs1jo222fWithMappedReactProps1u6zpqq", "APACCustomerCentricABTestComponent", "css", "FramerwTun6V9OQ", "withCSS", "wTun6V9OQ_default", "addFonts", "GoogleOneTapNodeFonts", "LarkProBannerFonts", "Navbar202505Fonts", "APACCustomerCentricABTestComponentFonts", "__FramerMetadata__"]
}
