{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lvOUwoJoPWm3h8y0jwdk/EJ6G9cW3IUHQIqHhPJR5/LoopsFormCountryFooter.js", "ssg:https://framerusercontent.com/modules/swUrzTvdg37SEUg44ViB/TBaSWfc2l1cMlgJzNrzA/f1TylSGcr.js"],
  "sourcesContent": ["////////////////\n//\n// Using Framer?\n// See https://www.framer.com/learn/code-components/ for more info\n//\n////////////////\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState}from\"react\";const INIT=\"INIT\";const SUBMITTING=\"SUBMITTING\";const ERROR=\"ERROR\";const SUCCESS=\"SUCCESS\";const formStates=[INIT,SUBMITTING,ERROR,SUCCESS];const formStyles={id:\"clsdjpor301ty5wqlyy1f6z3c\",name:\"Default\",formStyle:\"inline\",placeholderText:\"Enter your email\",formFont:\"Inter\",formFontColor:\"#111F3B\",formFontSizePx:16,buttonText:\"Apply now\",buttonFont:\"Inter\",buttonFontColor:\"#ffffff\",buttonColor:\"#1D2E4F\",buttonFontSizePx:16,successMessage:\"\",successFont:\"Inter\",successFontColor:\"#ffffff\",successFontSizePx:16,userGroup:\"Framer\"};const domain=\"app.loops.so\";export default function SignUpFormReact(){const[email,setEmail]=useState(\"\");const[formState,setFormState]=useState(INIT);const[errorMessage,setErrorMessage]=useState(\"\");const[fields,setFields]=useState({});const resetForm=()=>{setEmail(\"\");setFormState(INIT);setErrorMessage(\"\");};/**\n     * Rate limit the number of submissions allowed\n     * @returns {boolean} true if the form has been successfully submitted in the past minute\n     */const hasRecentSubmission=()=>{const time=new Date;const timestamp=time.valueOf();const previousTimestamp=localStorage.getItem(\"loops-form-timestamp\");// Indicate if the last sign up was less than a minute ago\nif(previousTimestamp&&Number(previousTimestamp)+60*1e3>timestamp){setFormState(ERROR);setErrorMessage(\"Too many signups, please try again in a little while\");return true;}localStorage.setItem(\"loops-form-timestamp\",timestamp.toString());return false;};const handleSubmit=event=>{// Prevent the default form submission\nevent.preventDefault();// boundary conditions for submission\nif(formState!==INIT)return;if(!isValidEmail(email)){setFormState(ERROR);setErrorMessage(\"Please enter a valid email\");return;}if(hasRecentSubmission())return;setFormState(SUBMITTING);// build additional fields\nconst additionalFields=Object.entries(fields).reduce((acc,[key,val])=>{if(val){return acc+\"&\"+key+\"=\"+encodeURIComponent(val);}return acc;},\"\");// build body\nconst formBody=`userGroup=${encodeURIComponent(formStyles.userGroup)}&email=${encodeURIComponent(email)}&mailingLists=cm5zpi7ef01hy0lkzfx6r5jsr`;// API request to add user to newsletter\nfetch(`https://${domain}/api/newsletter-form/${formStyles.id}`,{method:\"POST\",body:formBody+additionalFields,headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"}}).then(res=>[res.ok,res.json(),res]).then(async([ok,dataPromise,res])=>{if(ok){resetForm();await window.analytics.track(\"Form Submitted\",{location:\"Country Footer\"});// Redirect to a new URL on success\nwindow.location.href=\"https://home.citizenx.com/signup?source=country-footer\";setFormState(SUCCESS);}else{dataPromise.then(data=>{setFormState(ERROR);setErrorMessage(data.message||res.statusText);localStorage.setItem(\"loops-form-timestamp\",\"\");});}}).catch(error=>{setFormState(ERROR);if(error.message===\"Failed to fetch\"){setErrorMessage(\"Too many signups, please try again in a little while\");}else if(error.message){setErrorMessage(error.message);}localStorage.setItem(\"loops-form-timestamp\",\"\");});};const isInline=formStyles.formStyle===\"inline\";switch(formState){case SUCCESS:return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",alignItems:\"center\",justifyContent:\"center\",width:\"100%\"},children:/*#__PURE__*/_jsx(\"p\",{style:{fontFamily:`'${formStyles.successFont}', sans-serif`,color:formStyles.successFontColor,fontSize:`${formStyles.successFontSizePx}px`},children:formStyles.successMessage})});case ERROR:return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(SignUpFormError,{}),/*#__PURE__*/_jsx(BackButton,{})]});default:return /*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(\"form\",{onSubmit:handleSubmit,style:{display:\"flex\",flexDirection:isInline?\"row\":\"column\",alignItems:\"center\",justifyContent:\"center\",width:\"100%\"},children:[/*#__PURE__*/_jsx(\"input\",{type:\"text\",name:\"email\",placeholder:formStyles.placeholderText,value:email,onChange:e=>setEmail(e.target.value),required:true,style:{color:formStyles.formFontColor,fontFamily:`'${formStyles.formFont}', sans-serif`,fontSize:`${formStyles.formFontSizePx}px`,margin:isInline?\"0px 10px 0px 0px\":\"0px 0px 10px\",width:\"100%\",maxWidth:\"300px\",minWidth:\"100px\",background:\"#FFFFFF\",border:\"1px solid #D1D5DB\",boxSizing:\"border-box\",boxShadow:\"rgba(0, 0, 0, 0.05) 0px 1px 2px\",borderRadius:\"6px\",padding:\"8px 12px\"}}),/*#__PURE__*/_jsx(\"div\",{\"aria-hidden\":\"true\",style:{position:\"absolute\",left:\"-2024px\"}}),/*#__PURE__*/_jsx(SignUpFormButton,{})]})});}function SignUpFormError(){return /*#__PURE__*/_jsx(\"div\",{style:{alignItems:\"center\",justifyContent:\"center\",width:\"100%\"},children:/*#__PURE__*/_jsx(\"p\",{style:{fontFamily:\"Inter, sans-serif\",color:\"rgb(185, 28, 28)\",fontSize:\"14px\"},children:errorMessage||\"Oops! Something went wrong, please try again\"})});}function BackButton(){const[isHovered,setIsHovered]=useState(false);return /*#__PURE__*/_jsx(\"button\",{style:{color:\"#6b7280\",font:\"14px, Inter, sans-serif\",margin:\"10px auto\",textAlign:\"center\",background:\"transparent\",border:\"none\",cursor:\"pointer\",textDecoration:isHovered?\"underline\":\"none\"},onMouseOut:()=>setIsHovered(false),onMouseOver:()=>setIsHovered(true),onClick:resetForm,children:\"\u2190 Back\"});}function SignUpFormButton({props}){return /*#__PURE__*/_jsx(\"button\",{type:\"submit\",style:{background:formStyles.buttonColor,fontSize:`${formStyles.buttonFontSizePx}px`,color:formStyles.buttonFontColor,fontFamily:`'${formStyles.buttonFont}', sans-serif`,width:isInline?\"min-content\":\"100%\",maxWidth:\"300px\",whiteSpace:isInline?\"nowrap\":\"normal\",height:\"38px\",alignItems:\"center\",justifyContent:\"center\",flexDirection:\"row\",padding:\"9px 17px\",boxShadow:\"0px 1px 2px rgba(0, 0, 0, 0.05)\",borderRadius:\"6px\",textAlign:\"center\",fontStyle:\"normal\",fontWeight:500,lineHeight:\"20px\",border:\"none\",cursor:\"pointer\"},children:formState===SUBMITTING?\"Please wait...\":formStyles.buttonText});}}function isValidEmail(email){return/.+@.+/.test(email);}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SignUpFormReact\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LoopsFormCountryFooter.map", "// Generated by Framer (139b156)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withClick}from\"https://framerusercontent.com/modules/W4AqNcgqtxmvzIazoNR5/uJcybVAnLGMM9M2C5vkY/Card_Flip.js\";import SignUpFormReact from\"https://framerusercontent.com/modules/lvOUwoJoPWm3h8y0jwdk/EJ6G9cW3IUHQIqHhPJR5/LoopsFormCountryFooter.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wnDPHbFgAwtxC856TBL8/o7DjT3TCNafZ50uxSCQR/L6_C7vDJ8.js\";import Card,*as CardInfo from\"https://framerusercontent.com/modules/ZbGb7X26m5yK1FM19e6g/CntrAHpxqU31nGMzOeCt/hetRdhVC7.js\";const CardFonts=getFonts(Card);const CardWithClickWithMappedReactProps4hpd68=withMappedReactProps(withClick(Card),CardInfo);const SignUpFormReactFonts=getFonts(SignUpFormReact);const cycleOrder=[\"jqPO4I4CQ\",\"dVIZFA_75\"];const serializationHash=\"framer-NKPRq\";const variantClassNames={dVIZFA_75:\"framer-v-426fpg\",jqPO4I4CQ:\"framer-v-1bju9wf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"jqPO4I4CQ\",Mobile:\"dVIZFA_75\"};const getProps=({height,id,passportCover,text,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,K5pPJHKb1:(_ref=text!==null&&text!==void 0?text:props.K5pPJHKb1)!==null&&_ref!==void 0?_ref:\"Lorem ipsum dolor amet ipsu amet dolores ipsum amet dolor ipsum amet dolores ipsun amet dolor\",LS4oj5EIu:passportCover!==null&&passportCover!==void 0?passportCover:props.LS4oj5EIu,nOBtTD6_d:(_ref1=title!==null&&title!==void 0?title:props.nOBtTD6_d)!==null&&_ref1!==void 0?_ref1:\"Apply to become a citizen of Antigua and Barbuda.\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"jqPO4I4CQ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,LS4oj5EIu,nOBtTD6_d,K5pPJHKb1,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jqPO4I4CQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,positionX:\"center\",positionY:\"bottom\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1bju9wf\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"jqPO4I4CQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({dVIZFA_75:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p6hygv-container\",layoutDependency:layoutDependency,layoutId:\"lnuVAbO0a-container\",children:/*#__PURE__*/_jsx(CardWithClickWithMappedReactProps4hpd68,{height:\"100%\",id:\"lnuVAbO0a\",layoutId:\"lnuVAbO0a\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",z0QN94w4s:toResponsiveImage(LS4oj5EIu)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16tjf1c\",layoutDependency:layoutDependency,layoutId:\"dr4NZFofN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0VkaXRvcidzIE5vdGUgTWVkaXVt\",\"--framer-font-family\":'\"Editor\\'s Note Medium\", \"Editor\\'s Note Medium Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"58px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Apply to become a citizen of\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0VkaXRvcidzIE5vdGUgTWVkaXVt\",\"--framer-font-family\":'\"Editor\\'s Note Medium\", \"Editor\\'s Note Medium Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"58px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:\" Antigua and Barbuda.\"})]}),className:\"framer-phrurk\",\"data-framer-name\":\"Antigua and Barbuda passport, the crown jewel of Caribbean citizenship\",fonts:[\"CUSTOM;Editor's Note Medium\"],layoutDependency:layoutDependency,layoutId:\"W46n5LGrz\",style:{\"--extracted-2gxw0f\":\"rgb(255, 255, 255)\",\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:nOBtTD6_d,variants:{dVIZFA_75:{\"--extracted-r6o4lv\":\"var(--token-1da37d6d-734e-4f2a-ab3c-2c13d043d4c3, rgb(2, 7, 18))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dVIZFA_75:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0VkaXRvcidzIE5vdGUgTWVkaXVt\",\"--framer-font-family\":'\"Editor\\'s Note Medium\", \"Editor\\'s Note Medium Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1da37d6d-734e-4f2a-ab3c-2c13d043d4c3, rgb(2, 7, 18)))\"},children:\"Apply to become a citizen of Antigua and Barbuda.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rwzxwb-container\",layoutDependency:layoutDependency,layoutId:\"AN0QGHKFu-container\",children:/*#__PURE__*/_jsx(SignUpFormReact,{height:\"100%\",id:\"AN0QGHKFu\",layoutId:\"AN0QGHKFu\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1rbxchf\",\"data-styles-preset\":\"L6_C7vDJ8\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Lorem ipsum dolor amet ipsu amet dolores ipsum amet dolor ipsum amet dolores ipsun amet dolor\"})}),className:\"framer-1puawim\",\"data-framer-name\":\"As a citizen of Antigua and Barbuda, you will also become part of the Commonwealth. Receive consular assistance from British embassies and consulates, access new business opportunities, and enjoy many privileges in the United Kingdom and other Commonwealth countries.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JrteKdbtC\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:K5pPJHKb1,variants:{dVIZFA_75:{\"--extracted-r6o4lv\":\"var(--token-462a534b-8061-49ca-97eb-7ce2457a0a02, rgb(45, 63, 99))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dVIZFA_75:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1rbxchf\",\"data-styles-preset\":\"L6_C7vDJ8\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-462a534b-8061-49ca-97eb-7ce2457a0a02, rgb(45, 63, 99)))\"},children:\"Lorem ipsum dolor amet ipsu amet dolores ipsum amet dolor ipsum amet dolores ipsun amet dolor\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NKPRq.framer-43npao, .framer-NKPRq .framer-43npao { display: block; }\",\".framer-NKPRq.framer-1bju9wf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 196px 24px 196px 24px; position: relative; width: 1368px; }\",\".framer-NKPRq .framer-p6hygv-container { flex: none; height: 450px; position: relative; width: 316px; }\",\".framer-NKPRq .framer-16tjf1c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 570px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NKPRq .framer-phrurk, .framer-NKPRq .framer-1puawim { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NKPRq .framer-1rwzxwb-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NKPRq.framer-1bju9wf, .framer-NKPRq .framer-16tjf1c { gap: 0px; } .framer-NKPRq.framer-1bju9wf > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-NKPRq.framer-1bju9wf > :first-child, .framer-NKPRq .framer-16tjf1c > :first-child { margin-top: 0px; } .framer-NKPRq.framer-1bju9wf > :last-child, .framer-NKPRq .framer-16tjf1c > :last-child { margin-bottom: 0px; } .framer-NKPRq .framer-16tjf1c > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-NKPRq.framer-v-426fpg.framer-1bju9wf { padding: 24px 24px 204px 24px; }\",\".framer-NKPRq.framer-v-426fpg .framer-16tjf1c { max-width: 400px; }\",\".framer-NKPRq.framer-v-426fpg .framer-phrurk { order: 0; }\",\".framer-NKPRq.framer-v-426fpg .framer-1rwzxwb-container { order: 2; }\",\".framer-NKPRq.framer-v-426fpg .framer-1puawim { order: 1; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1116\n * @framerIntrinsicWidth 1368\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dVIZFA_75\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"LS4oj5EIu\":\"passportCover\",\"nOBtTD6_d\":\"title\",\"K5pPJHKb1\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerf1TylSGcr=withCSS(Component,css,\"framer-NKPRq\");export default Framerf1TylSGcr;Framerf1TylSGcr.displayName=\"ProgramFooter\";Framerf1TylSGcr.defaultProps={height:1116,width:1368};addPropertyControls(Framerf1TylSGcr,{variant:{options:[\"jqPO4I4CQ\",\"dVIZFA_75\"],optionTitles:[\"Variant 1\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},LS4oj5EIu:{title:\"Passport-cover\",type:ControlType.ResponsiveImage},nOBtTD6_d:{defaultValue:\"Apply to become a citizen of Antigua and Barbuda.\",displayTextArea:false,title:\"Title\",type:ControlType.String},K5pPJHKb1:{defaultValue:\"Lorem ipsum dolor amet ipsu amet dolores ipsum amet dolor ipsum amet dolores ipsun amet dolor\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(Framerf1TylSGcr,[{explicitInter:true,fonts:[{family:\"Editor's Note Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/hmvpG6eYVwbujwdSiF7QiQpZpR4.woff2\"},{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\"}]},...CardFonts,...SignUpFormReactFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerf1TylSGcr\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"LS4oj5EIu\\\":\\\"passportCover\\\",\\\"nOBtTD6_d\\\":\\\"title\\\",\\\"K5pPJHKb1\\\":\\\"text\\\"}\",\"framerIntrinsicHeight\":\"1116\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1368\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dVIZFA_75\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["INIT", "SUBMITTING", "ERROR", "SUCCESS", "formStyles", "domain", "SignUpFormReact", "email", "setEmail", "ye", "formState", "setFormState", "INIT", "errorMessage", "setErrorMessage", "fields", "setFields", "resetForm", "hasRecentSubmission", "timestamp", "previousTimestamp", "ERROR", "handleSubmit", "event", "isValidEmail", "SUBMITTING", "additionalFields", "acc", "key", "val", "formBody", "res", "ok", "dataPromise", "window", "SUCCESS", "data", "error", "isInline", "p", "u", "l", "SignUpFormError", "BackButton", "e", "SignUpFormButton", "isHovered", "setIsHovered", "props", "CardFonts", "getFonts", "hetRdhVC7_default", "CardWithClickWithMappedReactProps4hpd68", "withMappedReactProps", "withClick", "hetRdhVC7_exports", "SignUpFormReactFonts", "SignUpFormReact", "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", "height", "id", "passportCover", "text", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "LS4oj5EIu", "nOBtTD6_d", "K5pPJHKb1", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "Framerf1TylSGcr", "withCSS", "f1TylSGcr_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
