{"version":3,"file":"TrEJOYbC1.CsGDklay.mjs","names":["className","Image","css"],"sources":["https:/framerusercontent.com/modules/6Cj8anU5pcpPf8fObZ7W/xUUm4a7QCcPmkF0GxAhr/SMS_Download_New.js","https:/framerusercontent.com/modules/Pmis511OL0UIZa8yMTBy/f7UFVlokxKl3BxfF77r7/TrEJOYbC1.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n */export default function SMS(props){const[phone,setPhone]=useState(\"\");const[success,setSuccess]=useState(false);const[error,setError]=useState(\"\");const[isSending,setIsSending]=useState(false);// 格式化电话号码\nconst formatPhone=value=>{const cleaned=value.replace(/\\D/g,\"\");// 如果是11位且以1开头，按照国际格式处理\nif(cleaned.length===11&&cleaned.startsWith(\"1\")){return`+1 (${cleaned.slice(1,4)}) ${cleaned.slice(4,7)}-${cleaned.slice(7)}`;}// 如果是10位，按照普通格式处理\nconst match=cleaned.match(/^(\\d{3})(\\d{3})(\\d{4})$/);return match?`(${match[1]}) ${match[2]}-${match[3]}`:value;};const handlePhoneChange=e=>{const value=e.target.value;// 只保留数字\nconst cleaned=value.replace(/\\D/g,\"\");// 限制最多输入11位数字\nif(cleaned.length<=11){setPhone(value);if(error)setError(\"\");if(success)setSuccess(false);}};const handlePhoneBlur=e=>{const value=e.target.value;const cleaned=value.replace(/\\D/g,\"\");const formatted=formatPhone(value);setPhone(formatted);// 验证电话号码\nif(!value){setError(\"Phone number is required\");}else if(cleaned.length===11&&!cleaned.startsWith(\"1\")){setError(\"11-digit numbers must start with 1\");}else if(cleaned.length!==10&&cleaned.length!==11){setError(\"Phone number must be 10 or 11 digits\");}else if(cleaned.length===11&&!/^\\+1 \\(\\d{3}\\) \\d{3}-\\d{4}$/.test(formatted)){setError(\"Please enter a valid phone number\");}else if(cleaned.length===10&&!/^\\(\\d{3}\\) \\d{3}-\\d{4}$/.test(formatted)){setError(\"Please enter a valid phone number\");}else{setError(\"\");}};const handlePhoneFocus=e=>{// 聚焦时移除格式化\nconst cleaned=e.target.value.replace(/\\D/g,\"\");setPhone(cleaned);};const sendSMS=async()=>{const cleaned=phone.replace(/\\D/g,\"\");if(!cleaned){setError(\"Phone number is required\");return;}if(cleaned.length===11&&!cleaned.startsWith(\"1\")){setError(\"11-digit numbers must start with 1\");return;}if(cleaned.length!==10&&cleaned.length!==11){setError(\"Phone number must be 10 or 11 digits\");return;}setError(\"\");setIsSending(true);try{const apiEndpoint=props.apiUrl||\"https://api.truckerpath.com/tp/user/send/invitation/code\";const codeType=props.codeType||\"TP_OWE\";// 如果是11位且以1开头，去掉开头的1（因为areacode已经是1）\nlet phoneNumber=cleaned;if(cleaned.length===11&&cleaned.startsWith(\"1\")){phoneNumber=cleaned.substring(1);}const response=await fetch(`${apiEndpoint}?areacode=1&codeType=${codeType}&phoneNo=${phoneNumber}`,{method:\"POST\"});const data=await response.json();// 修改判断条件，匹配实际响应格式\nif(data?.code===200||data?.message===\"success\"||data?.data===\"Success\"){setSuccess(true);setError(\"\");}else{setError(\"Failed to send SMS. Please try again.\");}}catch(err){console.error(\"Error:\",err);setError(\"Failed to send SMS. Please try again.\");}finally{setIsSending(false);}};useEffect(()=>{const style=document.createElement(\"style\");style.textContent=`\n            button.sms-button {\n                transition: background-color 0.2s ease !important;\n            }\n            button.sms-button:hover {\n                background-color: #126DA2 !important;\n            }\n            button.sms-button.success {\n                background-color: #08B86C !important;\n                cursor: default !important;\n            }\n            button.sms-button.success:hover {\n                background-color: #08B86C !important;\n            }\n            button.sms-button:disabled:hover {\n                background-color: #aaa !important;\n            }\n            input {\n                transition: all 0.2s ease !important;\n            }\n            input::placeholder {\n                color: #BABFC4 !important;\n            }\n            input.error {\n                border: 1px solid #EB5200 !important;\n                transition: all 0.2s ease !important;\n            }\n            input.error:focus {\n                border: 1.5px solid #EB5200 !important;\n                outline: none !important;\n                box-shadow: 0 0 0 1px #EB5200 !important;\n            }\n            input:focus:not(.error) {\n                border: 1.5px solid #1688CA !important;\n                outline: none !important;\n                box-shadow: 0 0 0 1px #1688CA !important;\n            }\n        `;document.head.appendChild(style);return()=>{document.head.removeChild(style);};},[]);return /*#__PURE__*/_jsxs(\"div\",{style:{...containerStyle,fontFamily:\"Poppins, Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:inputButtonContainerStyle,children:[/*#__PURE__*/_jsx(\"input\",{className:error?\"error\":\"\",style:inputStyle,placeholder:\"Enter your phone number\",value:phone,onChange:handlePhoneChange,onFocus:handlePhoneFocus,onBlur:handlePhoneBlur}),/*#__PURE__*/_jsx(\"button\",{className:`sms-button ${success?\"success\":\"\"}`,style:{...buttonStyle,...isSending?buttonDisabledStyle:{}},onClick:()=>!success&&sendSMS(),disabled:isSending,children:isSending?\"Sending...\":success?\"SENT\":\"Send SMS\"})]}),error&&/*#__PURE__*/_jsx(\"span\",{style:errorStyle,children:error}),success&&/*#__PURE__*/_jsx(\"span\",{style:successStyle,children:\"Check your phone\"})]});}const fontFamily=\"Poppins, Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif\";const containerStyle={height:\"100%\",display:\"flex\",justifyContent:\"flex-start\",alignItems:\"flex-start\",flexDirection:\"column\",gap:\"8px\",fontFamily:fontFamily};const inputButtonContainerStyle={display:\"flex\",alignItems:\"center\",gap:\"8px\",width:\"100%\",fontFamily:fontFamily};const inputStyle={flex:1,border:\"1px solid #E2E6E9\",outline:\"none\",height:\"40px\",padding:\"0 10px\",borderRadius:\"4px\",fontFamily:fontFamily,fontSize:\"14px\"};const buttonStyle={height:\"40px\",padding:\"0 16px\",backgroundColor:\"#1688CA\",color:\"#fff\",border:\"none\",borderRadius:\"4px\",cursor:\"pointer\",fontFamily:fontFamily,fontWeight:600,fontSize:\"14px\"};const buttonDisabledStyle={backgroundColor:\"#aaa\",cursor:\"not-allowed\"};const errorStyle={color:\"#EB5200\",fontFamily:fontFamily,fontSize:\"12px\"};const successStyle={color:\"#08B86C\",fontFamily:fontFamily,fontSize:\"12px\"};// 添加属性控制\naddPropertyControls(SMS,{apiUrl:{type:ControlType.String,title:\"API URL\",description:\"The endpoint URL for sending SMS\",defaultValue:\"https://api.truckerpath.com/tp/user/send/invitation/code\"},codeType:{type:ControlType.Enum,title:\"App Type\",description:\"选择要下载的应用类型\",defaultValue:\"TP_OWE\",options:[\"TP_OWE\",\"TL_OWE\"],optionTitles:[\"Trucker Path App\",\"Truck Loads App\"]}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SMS\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SMS_Download_New.map","// Generated by Framer (57b1764)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,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 SMS from\"https://framerusercontent.com/modules/6Cj8anU5pcpPf8fObZ7W/xUUm4a7QCcPmkF0GxAhr/SMS_Download_New.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/a4Ko2ynfy39ip44e7iuJ/SL1ZYkfGk1wBrZQtXnnF/dvxIS3aly.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/4J9kLkmjYq9yiOuK1gTl/SyeghV7LYvdUW1kXahnl/S6hVblK9s.js\";const SMSFonts=getFonts(SMS);const SMSControls=getPropertyControls(SMS);const cycleOrder=[\"pIhY_mQfy\",\"A6kPJvpW8\"];const serializationHash=\"framer-X4qKV\";const variantClassNames={A6kPJvpW8:\"framer-v-7d4naw\",pIhY_mQfy:\"framer-v-1m47bav\"};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 humanReadableEnumMap={\"Truck Loads App\":\"TL_OWE\",\"Trucker Path App\":\"TP_OWE\"};const humanReadableVariantMap={\"Font Dark\":\"A6kPJvpW8\",\"Font white\":\"pIhY_mQfy\"};const getProps=({appType,content,height,id,label,star,width,...props})=>{return{...props,idnAFfBZu:star??props.idnAFfBZu??\"4.8/5 Stars\",irKbqoxo5:content??props.irKbqoxo5??\"1.3M+ Truckers' reviews\",ML3v0pD92:label??props.ML3v0pD92??\"Send me the link to install\",variant:humanReadableVariantMap[props.variant]??props.variant??\"pIhY_mQfy\",YCd435AcZ:humanReadableEnumMap[appType]??appType??props.YCd435AcZ??\"TP_OWE\"};};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,ML3v0pD92,YCd435AcZ,idnAFfBZu,irKbqoxo5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pIhY_mQfy\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1m47bav\",className,classNames),\"data-framer-name\":\"Font white\",layoutDependency:layoutDependency,layoutId:\"pIhY_mQfy\",ref:refBinding,style:{...style},...addPropertyOverrides({A6kPJvpW8:{\"data-framer-name\":\"Font Dark\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r1tluv\",layoutDependency:layoutDependency,layoutId:\"KZPJaosEj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)))\"},children:\"Send me the link to install trucker Path\"})}),className:\"framer-1kjlazt\",fonts:[\"GF;Poppins-600\"],layoutDependency:layoutDependency,layoutId:\"v27taAzBg\",style:{\"--extracted-r6o4lv\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:ML3v0pD92,variants:{A6kPJvpW8:{\"--extracted-r6o4lv\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(1, 25, 50))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A6kPJvpW8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(1, 25, 50)))\"},children:\"Send me the link to install Truckloads\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ayol42-container\",\"data-framer-name\":\"SMS Download\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"NN7dQhMlT-container\",name:\"SMS Download\",nodeId:\"NN7dQhMlT\",rendersWithMotion:true,scopeId:\"TrEJOYbC1\",children:/*#__PURE__*/_jsx(SMS,{apiUrl:\"https://api.truckerpath.com/tp/user/send/invitation/code\",codeType:YCd435AcZ,height:\"100%\",id:\"NN7dQhMlT\",layoutId:\"NN7dQhMlT\",name:\"SMS Download\",style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2ohct0\",\"data-framer-name\":\"Rating Section\",layoutDependency:layoutDependency,layoutId:\"nVMBmkUqx\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:194,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||94)-0-254)/2+224+10)+.5),pixelHeight:80,pixelWidth:388,src:\"https://framerusercontent.com/images/ZEhMayaheluWcf6Bc77D49mGkE.png\"},className:\"framer-19tuiiw\",\"data-framer-name\":\"Ratings\",layoutDependency:layoutDependency,layoutId:\"KSKS6MA_X\",...addPropertyOverrides({A6kPJvpW8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:194,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||98)-0-258)/2+224+10)+2.5),pixelHeight:80,pixelWidth:388,src:\"https://framerusercontent.com/images/ZEhMayaheluWcf6Bc77D49mGkE.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)))\"},children:\"4.8/5 Stars\"})}),className:\"framer-w1243f\",\"data-framer-name\":\"Rating Value\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qX_5W2Eez\",style:{\"--extracted-r6o4lv\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:idnAFfBZu,variants:{A6kPJvpW8:{\"--extracted-r6o4lv\":\"rgb(214, 171, 0)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({A6kPJvpW8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-r9ohxn\",\"data-styles-preset\":\"S6hVblK9s\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(214, 171, 0))\"},children:\"4.8/5 Stars\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-26128609-daf2-4d5e-b6a0-f59df8c41c47, rgba(255, 255, 255, 0.7)))\"},children:\"1.3M+ Truckers' reviews\"})}),className:\"framer-d0ccbj\",\"data-framer-name\":\"Review Count\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C9TCgh0es\",style:{\"--extracted-r6o4lv\":\"var(--token-26128609-daf2-4d5e-b6a0-f59df8c41c47, rgba(255, 255, 255, 0.7))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.5},text:irKbqoxo5,variants:{A6kPJvpW8:{\"--extracted-r6o4lv\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({A6kPJvpW8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102)))\"},children:\"1.3M+ Truckers' reviews\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-X4qKV.framer-1o0x4ak, .framer-X4qKV .framer-1o0x4ak { display: block; }\",\".framer-X4qKV.framer-1m47bav { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 350px; }\",\".framer-X4qKV .framer-1r1tluv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 360px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-X4qKV .framer-1kjlazt, .framer-X4qKV .framer-w1243f, .framer-X4qKV .framer-d0ccbj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-X4qKV .framer-ayol42-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-X4qKV .framer-2ohct0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-X4qKV .framer-19tuiiw { aspect-ratio: 4.85 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); overflow: visible; position: relative; width: 92px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 94\n * @framerIntrinsicWidth 350\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"A6kPJvpW8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ML3v0pD92\":\"label\",\"YCd435AcZ\":\"appType\",\"idnAFfBZu\":\"star\",\"irKbqoxo5\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerTrEJOYbC1=withCSS(Component,css,\"framer-X4qKV\");export default FramerTrEJOYbC1;FramerTrEJOYbC1.displayName=\"SMS Download\";FramerTrEJOYbC1.defaultProps={height:94,width:350};addPropertyControls(FramerTrEJOYbC1,{variant:{options:[\"pIhY_mQfy\",\"A6kPJvpW8\"],optionTitles:[\"Font white\",\"Font Dark\"],title:\"Variant\",type:ControlType.Enum},ML3v0pD92:{defaultValue:\"Send me the link to install\",displayTextArea:false,title:\"Label\",type:ControlType.String},YCd435AcZ:SMSControls?.[\"codeType\"]&&{...SMSControls[\"codeType\"],defaultValue:\"TP_OWE\",description:undefined,hidden:undefined,title:\"App Type\"},idnAFfBZu:{defaultValue:\"4.8/5 Stars\",displayTextArea:false,title:\"Star\",type:ControlType.String},irKbqoxo5:{defaultValue:\"1.3M+ Truckers' reviews\",displayTextArea:false,title:\"Content\",type:ControlType.String}});addFonts(FramerTrEJOYbC1,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SMSFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTrEJOYbC1\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"350\",\"framerVariables\":\"{\\\"ML3v0pD92\\\":\\\"label\\\",\\\"YCd435AcZ\\\":\\\"appType\\\",\\\"idnAFfBZu\\\":\\\"star\\\",\\\"irKbqoxo5\\\":\\\"content\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"94\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"A6kPJvpW8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}