{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/6AchJNvf5HGD2PFZmpaU/T8DoGk6nP8a9RESRUydY/CallFelixForm.js", "ssg:https://framerusercontent.com/modules/zVl18xdWNMQXGsOCBXrI/nURFLJ6315Rg1ov5zQD0/La4gqM1Mf-0.js", "ssg:https://framerusercontent.com/modules/zVl18xdWNMQXGsOCBXrI/nURFLJ6315Rg1ov5zQD0/La4gqM1Mf.js", "ssg:https://framerusercontent.com/modules/KXsaEaG1huGXH2MPCAA3/7ctzXtTYShCULI4ONk2s/La4gqM1Mf.js", "ssg:https://framerusercontent.com/modules/fhttAcAFRMXpKx9jSuEu/7knq432N7u7ItCPZh6Ba/Sz9S4_GWH.js", "ssg:https://framerusercontent.com/modules/86D0o8AyDRU9iEepYO0m/CaziOuW5Ar9fLmVVUjIf/SiziyDfFp.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{motion}from\"framer-motion\";import{useLocaleCode}from\"framer\";const localization={en:{\"form.name.label\":\"Name (Optional)\",\"form.name.placeholder\":\"Name\",\"form.email.label\":\"E-Mail *\",\"form.email.placeholder\":\"felix@hubblr.ai\",\"form.email.hint\":\"This email address will be used to send you a scheduled invite to.\",\"form.phone.label\":\"Phone Number *\",\"form.phone.placeholder\":\"+49 172 14612341\",\"form.phone.hint\":\"You will be called back on this phone number.\",\"form.submit\":\"Get a call from Felix\",\"form.submitting\":\"Submitting...\",\"form.success\":\"Felix will call you soon!\",\"form.error\":\"Something went wrong. Please try again.\",\"validation.email.required\":\"Email is required\",\"validation.email.invalid\":\"Please enter a valid email\",\"validation.phone.required\":\"Phone number is required\",\"validation.phone.invalid\":\"Please enter a valid phone number\"},de:{\"form.name.label\":\"Name (Optional)\",\"form.name.placeholder\":\"Name\",\"form.email.label\":\"E-Mail *\",\"form.email.placeholder\":\"felix@hubblr.ai\",\"form.email.hint\":\"\\xdcber diese Emailadresse schreiben wir dir und du erh\\xe4lst Terminbest\\xe4t\\xe4gungen.\",\"form.phone.label\":\"Telefonnummer *\",\"form.phone.placeholder\":\"+49 172 14612341\",\"form.phone.hint\":\"Du wirst unter dieser Telefonnummer zur\\xfcckgerufen.\",\"form.submit\":\"Lass dich von Felix anrufen\",\"form.submitting\":\"Wird gesendet...\",\"form.success\":\"Felix wird dich bald anrufen!\",\"form.error\":\"Etwas ist schiefgelaufen. Bitte versuch es erneut.\",\"validation.email.required\":\"E-Mail ist erforderlich\",\"validation.email.invalid\":\"Bitte gib eine g\\xfcltige E-Mail-Adresse ein\",\"validation.phone.required\":\"Telefonnummer ist erforderlich\",\"validation.phone.invalid\":\"Bitte gib eine g\\xfcltige Telefonnummer ein\"}};function localizeText(languageCode,key){if(!localization[languageCode]){languageCode=\"en\"// fallback language\n;}return localization[languageCode][key];}export function CallFelixForm(){const localeCode=useLocaleCode();const[formData,setFormData]=useState({name:\"\",email:\"\",phone:\"\"});const[errors,setErrors]=useState({});const[isSubmitting,setIsSubmitting]=useState(false);const[submitStatus,setSubmitStatus]=useState(\"idle\");// Get current URL when component mounts\nuseEffect(()=>{setFormData(prev=>({...prev}));},[]);const validateForm=()=>{const newErrors={};if(!formData.email){newErrors.email=localizeText(localeCode,\"validation.email.required\");}else if(!/\\S+@\\S+\\.\\S+/.test(formData.email)){newErrors.email=localizeText(localeCode,\"validation.email.invalid\");}if(!formData.phone){newErrors.phone=localizeText(localeCode,\"validation.phone.required\");}else if(!/^\\+?[\\d\\s-]{10,}$/.test(formData.phone)){newErrors.phone=localizeText(localeCode,\"validation.phone.invalid\");}setErrors(newErrors);return Object.keys(newErrors).length===0;};const handleSubmit=async e=>{e.preventDefault();e.stopPropagation();console.log(\"handleSubmit:\",formData,localeCode);if(submitStatus===\"success\"){// already submitted, do nothing\nreturn;}if(!validateForm()){return;}setIsSubmitting(true);setSubmitStatus(\"idle\");try{const response=await fetch(// send to n8n because sending to Attio creates a CORS problem\n\"https://hubblrai.app.n8n.cloud/webhook/bb3faf45-5abf-49b8-8429-acdab10202a5\",{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({Email:formData.email,\"Your Phone-Number\":formData.phone,Name:formData.name,\"Language Code\":localeCode})});if(!response.ok)throw new Error(\"Submission failed\");setSubmitStatus(\"success\");}catch(error){console.error(\"failed to send call-felix form:\",error);setSubmitStatus(\"error\");}finally{setIsSubmitting(false);}};const handleChange=e=>{const{name,value}=e.target;setFormData(prev=>({...prev,[name]:value}));// Clear error when user starts typing\nif(errors[name]){setErrors(prev=>({...prev,[name]:\"\"}));}};const handleKeyDown=e=>{if(e.key===\"Enter\"){e.preventDefault();e.stopPropagation();handleSubmit(e)// Cast to satisfy the MouseEvent type\n;}};return /*#__PURE__*/_jsx(motion.div,{initial:{opacity:1,y:20},className:\"max-w-md mx-auto p-6\",style:rootContainer,children:/*#__PURE__*/_jsxs(\"div\",{children:[/*#__PURE__*/_jsxs(\"div\",{style:formFieldContainer,children:[/*#__PURE__*/_jsx(\"label\",{htmlFor:\"name\",style:labelStyle,children:localizeText(localeCode,\"form.name.label\")}),/*#__PURE__*/_jsx(\"input\",{type:\"text\",id:\"name\",name:\"name\",value:formData.name,onChange:handleChange,className:\"framer-form-input\",placeholder:localizeText(localeCode,\"form.name.placeholder\"),style:textInputStyle,onFocus:e=>{e.stopPropagation();e.target.style.borderColor=textInputFocusStyle.borderColor;e.target.style.borderWidth=textInputFocusStyle.borderWidth;e.target.style.boxShadow=textInputFocusStyle.boxShadow;},onBlur:e=>{e.stopPropagation();e.target.style.borderColor=textInputStyle.borderColor;e.target.style.borderWidth=textInputStyle.borderWidth;e.target.style.boxShadow=textInputStyle.boxShadow;},onKeyDown:handleKeyDown})]}),/*#__PURE__*/_jsxs(\"div\",{style:formFieldContainer,children:[/*#__PURE__*/_jsx(\"label\",{htmlFor:\"email\",style:labelStyle,children:localizeText(localeCode,\"form.email.label\")}),/*#__PURE__*/_jsx(\"input\",{type:\"email\",id:\"email\",name:\"email\",required:true,value:formData.email,onChange:handleChange,placeholder:localizeText(localeCode,\"form.email.placeholder\"),style:textInputStyle,onFocus:e=>{e.stopPropagation();e.target.style.borderColor=textInputFocusStyle.borderColor;e.target.style.borderWidth=textInputFocusStyle.borderWidth;e.target.style.boxShadow=textInputFocusStyle.boxShadow;},onBlur:e=>{e.stopPropagation();e.target.style.borderColor=textInputStyle.borderColor;e.target.style.borderWidth=textInputStyle.borderWidth;e.target.style.boxShadow=textInputStyle.boxShadow;},onKeyDown:handleKeyDown}),errors.email&&/*#__PURE__*/_jsx(\"p\",{className:\"mt-1.5 text-sm text-[#FF3B30]\",children:errors.email}),/*#__PURE__*/_jsx(\"p\",{style:textInputHintStyle,children:localizeText(localeCode,\"form.email.hint\")})]}),/*#__PURE__*/_jsxs(\"div\",{style:{...formFieldContainer,marginTop:-20},children:[/*#__PURE__*/_jsx(\"label\",{htmlFor:\"phone\",style:labelStyle,children:localizeText(localeCode,\"form.phone.label\")}),/*#__PURE__*/_jsx(\"input\",{type:\"tel\",id:\"phone\",name:\"phone\",required:true,value:formData.phone,onChange:handleChange,placeholder:localizeText(localeCode,\"form.phone.placeholder\"),style:textInputStyle,onFocus:e=>{e.stopPropagation();e.target.style.borderColor=textInputFocusStyle.borderColor;e.target.style.borderWidth=textInputFocusStyle.borderWidth;e.target.style.boxShadow=textInputFocusStyle.boxShadow;},onBlur:e=>{e.stopPropagation();e.target.style.borderColor=textInputStyle.borderColor;e.target.style.borderWidth=textInputStyle.borderWidth;e.target.style.boxShadow=textInputStyle.boxShadow;},onKeyDown:handleKeyDown}),errors.phone&&/*#__PURE__*/_jsx(\"p\",{className:\"mt-1.5 text-sm text-[#FF3B30]\",children:errors.phone}),/*#__PURE__*/_jsx(\"p\",{style:textInputHintStyle,children:localizeText(localeCode,\"form.phone.hint\")})]}),/*#__PURE__*/_jsx(\"div\",{children:/*#__PURE__*/_jsx(\"button\",{disabled:isSubmitting||submitStatus===\"success\",className:`w-full py-2.5 px-4 text-sm font-medium text-white rounded-md transition-colors ${isSubmitting||submitStatus===\"success\"?\"bg-[#0055FF]/50 cursor-not-allowed\":\"bg-[#0055FF] hover:bg-[#0044CC]\"}`,style:submitButtonStyle,onClick:handleSubmit,children:isSubmitting?localizeText(localeCode,\"form.submitting\"):submitStatus===\"success\"?localizeText(localeCode,\"form.success\"):submitStatus===\"error\"?localizeText(localeCode,\"form.error\"):localizeText(localeCode,\"form.submit\")})})]})});}const rootContainer={marginBottom:30,marginTop:-30,width:\"1fr\"};const formFieldContainer={display:\"flex\",flexDirection:\"column\",marginBottom:16};const labelStyle={fontFamily:\"Switzer\",fontWeight:100,fontSize:12};const textInputStyle={height:\"40px\",width:\"1fr\",padding:12,marginTop:8,fontFamily:\"Switzer\",fontWeight:500,fontSize:16,borderRadius:8,borderStyle:\"solid\",borderColor:\"rgb(222, 222, 222)\",borderWidth:1,boxShadow:\"0px 0.79px 0.79px rgba(0, 0, 0, 0.07)\"};const textInputFocusStyle={borderColor:\"#959595\",borderWidth:2,boxShadow:\"0 0 0 2px rgba(0, 85, 255, 0.1)\"};const textInputHintStyle={marginTop:10,color:\"rgb(184, 184, 184)\",fontFamily:\"Switzer\",fontWeight:200,fontSize:12};const submitButtonStyle={backgroundColor:\"black\",borderRadius:25,height:45,width:\"100%\",color:\"white\",fontFamily:\"Switzer\",fontWeight:700,fontSize:16};const submitResultStyle={fontFamily:\"Switzer\",fontWeight:500,fontSize:12};\nexport const __FramerMetadata__ = {\"exports\":{\"CallFelixForm\":{\"type\":\"reactComponent\",\"name\":\"CallFelixForm\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CallFelixForm.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Link}from\"framer\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1nbpq7r\",\"data-styles-preset\":\"B1F07c_oZ\",style:{\"--framer-text-alignment\":\"left\"},children:\"Lass Felix Dich zur\\xfcckrufen\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-3j1c0u\",\"data-styles-preset\":\"fdldKf5t1\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-46244ad7-86a7-41b8-b44b-214d95b54c13, rgb(130, 130, 130)))\"},children:['Indem Du auf \"Lass Dich von Felix anrufen\" klickst, akzeptierst Du die ',/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XFi_Ib9jj\"},motionChild:true,nodeId:\"fXDaLZif4\",openInNewTab:false,scopeId:\"La4gqM1Mf\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1pmp3vy\",\"data-styles-preset\":\"aAdohScXF\",children:\"Datenschutzbestimmungen\"})}),\" von HUBBLR AI. \"]})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5088480)\nimport*as localizedValues from\"./La4gqM1Mf-0.js\";const valuesByLocaleId={hycPPTfka:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5088480)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{CallFelixForm}from\"https://framerusercontent.com/modules/6AchJNvf5HGD2PFZmpaU/T8DoGk6nP8a9RESRUydY/CallFelixForm.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/uRLLIA9wwgDMjDfrseJK/8r2BToDgGvak0zOmuLxF/aAdohScXF.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/fYC8CBUi6mQxb4dU4ldc/SglGoKJknZS02iqm7l98/B1F07c_oZ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/6TorjAnQu3Y3ko6BX7iz/GevNkZYcYsSfvAnkMVzo/fdldKf5t1.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/zVl18xdWNMQXGsOCBXrI/nURFLJ6315Rg1ov5zQD0/La4gqM1Mf.js\";import YourDetails from\"https://framerusercontent.com/modules/ftj1cul3B0ZClhrWm73a/eUUMrXpwc1SgZWinawmM/rKNwAsolT.js\";import XIcon from\"https://framerusercontent.com/modules/uK7XPKc92c9ohil1pHpc/YLNg74swLkqDSJimpR9o/sCxzza9va.js\";const XIconFonts=getFonts(XIcon);const YourDetailsFonts=getFonts(YourDetails);const CallFelixFormFonts=getFonts(CallFelixForm);const serializationHash=\"framer-4e0XI\";const variantClassNames={LjYH8x6cO:\"framer-v-1gxm9fc\"};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 getProps=({closeForm,height,id,width,...props})=>{return{...props,RQICOAH9S:closeForm??props.RQICOAH9S};};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,RQICOAH9S,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"LjYH8x6cO\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const bQnfLfSbw1qsoprf=activeVariantCallback(async(...args)=>{if(RQICOAH9S){const res=await RQICOAH9S(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.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__*/_jsx(FormContainer,{...restProps,...gestureHandlers,action:\"https://api.framer.com/forms/v1/forms/cadbfa6b-37d5-4297-8e2d-1b8843dab884/submit\",className:cx(scopingClassNames,\"framer-1gxm9fc\",className,classNames),\"data-framer-name\":\"Form\",layoutDependency:layoutDependency,layoutId:\"LjYH8x6cO\",nodeId:\"LjYH8x6cO\",ref:refBinding,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"30px\",y:(componentViewport?.y||0)+12,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9zcuna-container\",layoutDependency:layoutDependency,layoutId:\"QAO2vRn4B-container\",nodeId:\"QAO2vRn4B\",rendersWithMotion:true,scopeId:\"La4gqM1Mf\",children:/*#__PURE__*/_jsx(XIcon,{bQnfLfSbw:bQnfLfSbw1qsoprf,height:\"100%\",id:\"QAO2vRn4B\",layoutId:\"QAO2vRn4B\",style:{height:\"100%\",width:\"100%\"},variant:\"tknVGlECk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15yfhrl\",\"data-border\":true,\"data-framer-name\":\"Form Container\",layoutDependency:layoutDependency,layoutId:\"ZlCrX_Fxi\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-e3a90888-763b-420f-bb27-f2520e07d9b1, rgb(222, 222, 222))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(255, 255, 255, 0.75)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 0.5971439051427296px 0.5971439051427296px -0.9375px rgba(0, 0, 0, 0.07), 0px 1.8108796073283884px 1.8108796073283884px -1.875px rgba(0, 0, 0, 0.07), 0px 4.786990141113346px 4.786990141113346px -2.8125px rgba(0, 0, 0, 0.06), 0px 15px 15px -3.75px rgba(0, 0, 0, 0.03)\",WebkitBackdropFilter:\"blur(5px)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bln00m\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"PbkOhq2N2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7t4rfe\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"E6vwwfu7e\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1nbpq7r\",\"data-styles-preset\":\"B1F07c_oZ\",style:{\"--framer-text-alignment\":\"left\"},children:\"Let Felix call you back\"})}),className:\"framer-1kq7onw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EwHvPO0Hc\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"416px\",y:(componentViewport?.y||0)+0+32+0+0+59.2,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fni1ip-container\",layoutDependency:layoutDependency,layoutId:\"zfvIbjGvx-container\",nodeId:\"zfvIbjGvx\",rendersWithMotion:true,scopeId:\"La4gqM1Mf\",children:/*#__PURE__*/_jsx(YourDetails,{height:\"100%\",id:\"zfvIbjGvx\",layoutId:\"zfvIbjGvx\",style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zsokwr-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"eYTz1m9lE-container\",nodeId:\"eYTz1m9lE\",rendersWithMotion:true,scopeId:\"La4gqM1Mf\",children:/*#__PURE__*/_jsx(CallFelixForm,{height:\"100%\",id:\"eYTz1m9lE\",layoutId:\"eYTz1m9lE\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a3ndhs\",\"data-framer-name\":\"Inside Container\",layoutDependency:layoutDependency,layoutId:\"ZYKKstPjq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-3j1c0u\",\"data-styles-preset\":\"fdldKf5t1\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-46244ad7-86a7-41b8-b44b-214d95b54c13, rgb(130, 130, 130)))\"},children:['By clicking \"Get a call from Felix\" you accept HUBBLR AI\\'s  ',/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XFi_Ib9jj\"},motionChild:true,nodeId:\"fXDaLZif4\",openInNewTab:false,scopeId:\"La4gqM1Mf\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1pmp3vy\",\"data-styles-preset\":\"aAdohScXF\",children:\"Privacy Policy\"})}),\". \"]})}),className:\"framer-m6ygvl\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fXDaLZif4\",style:{\"--extracted-r6o4lv\":\"var(--token-46244ad7-86a7-41b8-b44b-214d95b54c13, rgb(130, 130, 130))\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4e0XI.framer-17nssvg, .framer-4e0XI .framer-17nssvg { display: block; }\",\".framer-4e0XI.framer-1gxm9fc { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-4e0XI .framer-9zcuna-container { flex: none; height: 30px; position: absolute; right: 12px; top: 12px; width: 30px; z-index: 1; }\",\".framer-4e0XI .framer-15yfhrl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px; position: relative; width: 480px; }\",\".framer-4e0XI .framer-1bln00m, .framer-4e0XI .framer-1a3ndhs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4e0XI .framer-7t4rfe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4e0XI .framer-1kq7onw { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-4e0XI .framer-fni1ip-container, .framer-4e0XI .framer-zsokwr-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-4e0XI .framer-m6ygvl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-4e0XI[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-4e0XI [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-4e0XI[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-4e0XI [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-4e0XI[data-hide-scrollbars=\"true\"], .framer-4e0XI [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }','.framer-4e0XI[data-border=\"true\"]::after, .framer-4e0XI [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 578.617\n * @framerIntrinsicWidth 480\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"RQICOAH9S\":\"closeForm\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerLa4gqM1Mf=withCSS(Component,css,\"framer-4e0XI\");export default FramerLa4gqM1Mf;FramerLa4gqM1Mf.displayName=\"Call Felix\";FramerLa4gqM1Mf.defaultProps={height:578.617,width:480};addPropertyControls(FramerLa4gqM1Mf,{RQICOAH9S:{title:\"Close Form\",type:ControlType.EventHandler}});addFonts(FramerLa4gqM1Mf,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...XIconFonts,...YourDetailsFonts,...CallFelixFormFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLa4gqM1Mf\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"480\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"578.617\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"RQICOAH9S\\\":\\\"closeForm\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Switzer-medium\",\"FS;Switzer-semibold\",\"FS;Switzer-semibold italic\",\"FS;Switzer-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/OYB4CXKJQXKTNSLJMTDQOIVUL2V5EL7S/WYO2P7DQVV5RNXGMCUO2HL4RJP4VFUAS/6XPIMU23OJVRY676OG5YVJMWEHWICATX.woff2\",weight:\"500\"},{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/5SZVFDB7V52TI6ULVC6J3WQZQCIZVDV5/ODYPSTCUDMKSTYIPTV4CLQ7URIK7XYBJ/YS3VPNVO4B3TOJMEXDGFZQ4TLZGGSRZC.woff2\",weight:\"600\"},{family:\"Switzer\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2UC2M25RQ2XRSGCBJRQ2G5SNXCROECQB/QJT3T33NN372363FJY5EO5D63GKDKLDK/IOAFMDAPNX3S6OL2GYQQJ2FFJIRSVB3N.woff2\",weight:\"600\"},{family:\"Switzer\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/QMRBNVYKDJEZ66DA22SPWH5EVVYACHCU/ZHMXHHA546NDNEHJN5RPZX5KISJY5CWF/C6VLICDGQWYKV6YT65TM5G3OVN4AOZBN.woff2\",weight:\"500\"}]}];export const css=['.framer-6N36R .framer-styles-preset-1igwnwn:not(.rich-text-wrapper), .framer-6N36R .framer-styles-preset-1igwnwn.rich-text-wrapper p { --framer-font-family: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 600; --framer-font-weight-bold-italic: 600; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.02em; --framer-line-height: 140%; --framer-paragraph-spacing: 32px; --framer-text-alignment: start; --framer-text-color: var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 992px) { .framer-6N36R .framer-styles-preset-1igwnwn:not(.rich-text-wrapper), .framer-6N36R .framer-styles-preset-1igwnwn.rich-text-wrapper p { --framer-font-family: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 600; --framer-font-weight-bold-italic: 600; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.02em; --framer-line-height: 140%; --framer-paragraph-spacing: 32px; --framer-text-alignment: start; --framer-text-color: var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 991px) and (min-width: 768px) { .framer-6N36R .framer-styles-preset-1igwnwn:not(.rich-text-wrapper), .framer-6N36R .framer-styles-preset-1igwnwn.rich-text-wrapper p { --framer-font-family: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 600; --framer-font-weight-bold-italic: 600; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.02em; --framer-line-height: 140%; --framer-paragraph-spacing: 32px; --framer-text-alignment: start; --framer-text-color: var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-6N36R .framer-styles-preset-1igwnwn:not(.rich-text-wrapper), .framer-6N36R .framer-styles-preset-1igwnwn.rich-text-wrapper p { --framer-font-family: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 600; --framer-font-weight-bold-italic: 600; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.02em; --framer-line-height: 140%; --framer-paragraph-spacing: 32px; --framer-text-alignment: start; --framer-text-color: var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-6N36R\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0afc761)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const MotionAWithFX=withFX(motion.a);const cycleOrder=[\"FvxAV5TmU\",\"yyNhPl_Xo\"];const serializationHash=\"framer-5Ve4N\";const variantClassNames={FvxAV5TmU:\"framer-v-182t2w2\",yyNhPl_Xo:\"framer-v-16mem1k\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:20,y:0};const transition2={bounce:.2,delay:.3,duration:.6,type:\"spring\"};const transition3={bounce:.2,delay:0,duration:.6,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,y:-5};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={Default:\"FvxAV5TmU\",Footer:\"yyNhPl_Xo\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"FvxAV5TmU\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FvxAV5TmU\",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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-182t2w2\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"FvxAV5TmU\",ref:refBinding,style:{...style},...addPropertyOverrides({yyNhPl_Xo:{\"data-framer-name\":\"Footer\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/\",motionChild:true,nodeId:\"wgs4fW3qp\",openInNewTab:true,scopeId:\"SiziyDfFp\",...addPropertyOverrides({yyNhPl_Xo:{href:\"https://www.linkedin.com/company/hubblr-ai/\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,\"aria-label\":\"Linkedin Link\",className:\"framer-nnayh3 framer-dsijwc\",\"data-framer-name\":\"LinkedIn\",layoutDependency:layoutDependency,layoutId:\"wgs4fW3qp\",style:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,WebkitBackdropFilter:\"blur(10px)\"},variants:{yyNhPl_Xo:{backgroundColor:\"var(--token-33c8dbd0-eb94-4e90-8099-e7a3fee4ad2f, rgb(255, 255, 255))\"}},whileHover:animation1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14wst7x-container\",\"data-framer-name\":\"LinkedIn Logo\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QQMIKtXgi-container\",name:\"LinkedIn Logo\",nodeId:\"QQMIKtXgi\",rendersWithMotion:true,scopeId:\"SiziyDfFp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-33c8dbd0-eb94-4e90-8099-e7a3fee4ad2f, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"LinkedinLogo\",id:\"QQMIKtXgi\",layoutId:\"QQMIKtXgi\",mirrored:false,name:\"LinkedIn Logo\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\",...addPropertyOverrides({yyNhPl_Xo:{color:\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"}},baseVariant,gestureVariant)})})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5Ve4N.framer-dsijwc, .framer-5Ve4N .framer-dsijwc { display: block; }\",\".framer-5Ve4N.framer-182t2w2 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5Ve4N .framer-nnayh3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5Ve4N .framer-14wst7x-container { flex: none; height: 14px; position: relative; width: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5Ve4N.framer-182t2w2, .framer-5Ve4N .framer-nnayh3 { gap: 0px; } .framer-5Ve4N.framer-182t2w2 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-5Ve4N.framer-182t2w2 > :first-child, .framer-5Ve4N .framer-nnayh3 > :first-child { margin-left: 0px; } .framer-5Ve4N.framer-182t2w2 > :last-child, .framer-5Ve4N .framer-nnayh3 > :last-child { margin-right: 0px; } .framer-5Ve4N .framer-nnayh3 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 30\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"yyNhPl_Xo\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerSiziyDfFp=withCSS(Component,css,\"framer-5Ve4N\");export default FramerSiziyDfFp;FramerSiziyDfFp.displayName=\"Social Icons\";FramerSiziyDfFp.defaultProps={height:30,width:30};addPropertyControls(FramerSiziyDfFp,{variant:{options:[\"FvxAV5TmU\",\"yyNhPl_Xo\"],optionTitles:[\"Default\",\"Footer\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerSiziyDfFp,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSiziyDfFp\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yyNhPl_Xo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"30\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"30\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SiziyDfFp.map"],
  "mappings": "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",
  "names": ["localization", "localizeText", "languageCode", "key", "CallFelixForm", "localeCode", "useLocaleCode", "formData", "setFormData", "ye", "errors", "setErrors", "isSubmitting", "setIsSubmitting", "submitStatus", "setSubmitStatus", "ue", "prev", "validateForm", "newErrors", "handleSubmit", "e", "error", "handleChange", "name", "value", "handleKeyDown", "p", "motion", "rootContainer", "u", "formFieldContainer", "labelStyle", "textInputStyle", "textInputFocusStyle", "textInputHintStyle", "submitButtonStyle", "La4gqM1Mf_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "p", "x", "motion", "v1", "u", "Link", "__FramerMetadata__", "valuesByLocaleId", "La4gqM1Mf_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "XIconFonts", "getFonts", "sCxzza9va_default", "YourDetailsFonts", "rKNwAsolT_default", "CallFelixFormFonts", "CallFelixForm", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "closeForm", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "RQICOAH9S", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "bQnfLfSbw1qsoprf", "args", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "FormContainer", "formState", "u", "l", "ComponentViewportProvider", "SmartComponentScopedContainer", "sCxzza9va_default", "RichText", "getLocalizedValue", "rKNwAsolT_default", "CallFelixForm", "Link", "css", "FramerLa4gqM1Mf", "withCSS", "La4gqM1Mf_default", "addPropertyControls", "ControlType", "addFonts", "XIconFonts", "YourDetailsFonts", "CallFelixFormFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "MotionAWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transition3", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerSiziyDfFp", "withCSS", "SiziyDfFp_default", "addPropertyControls", "ControlType", "addFonts"]
}
