{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/InputSites.js@1.12.0", "ssg:https://framerusercontent.com/modules/tEJqoun4MtBed1OjNwKy/oIG6qvkLwFygGXycIYZs/Input_Mailchimp.js", "ssg:https://framerusercontent.com/modules/GKMbF0r6nmEKjUYyMhQj/vMkiJO7dyntFSWB6o450/kR8f9EORt.js", "ssg:https://framerusercontent.com/modules/bmOZjOhBat3JClSoJGXx/MUoOPMBTNfjkncQQJzPz/ZqTMTghMx.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const mailchimpRegex=/^https?:\\/\\/([^\\/]+)[^\\?]+\\??(.+)$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};const parseMailChimpUrl=url=>{var _url_replace_match;const[,domain,parameters]=(_url_replace_match=url.replace(\"&amp;\",\"&\").match(mailchimpRegex))!==null&&_url_replace_match!==void 0?_url_replace_match:[null,null,null];return[domain,parameters?new URLSearchParams(parameters):null];};function safeURL(url){console.log(url);try{new URL(url);return url;}catch{try{new URL(`https://${url}`);return`https://${url}`;}catch{}}return undefined;}function isInternalURL(href){if(href===undefined)return false;if(href.startsWith(\"#\")||href.startsWith(\"/\")||href.startsWith(\".\"))return true;return false;}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */const VERSION=\"v1\";/**\n * INPUT\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */const Input=withCSS(function Input({service,redirectAs,mailchimpURL,loopsID,loopsUserGroup,formsparkID,getwaitlistAPI,convertkitAPI,convertkitFormID,input,button,font,layout,link,gap,style,onSubmit}){const[email,setEmail]=useState(\"\");const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[isFocus,setFocus]=useState(false);// Padding\nconst{paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,padding,borderRadius,borderObject,focusObject,shadowObject,height,fixedHeight}=input;const{buttonPaddingPerSide,buttonPaddingTop,buttonPaddingRight,buttonPaddingBottom,buttonPaddingLeft,buttonPadding}=button;const paddingValue=paddingPerSide?`${paddingTop}px ${button.isDocked?paddingRight+button.widthWhenDocked:paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px ${button.isDocked?padding+button.widthWhenDocked:padding}px ${padding}px ${padding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${button.isDocked?0:buttonPaddingTop}px ${buttonPaddingRight}px ${button.isDocked?0:buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${button.isDocked?0:buttonPadding}px ${buttonPadding}px ${button.isDocked?0:buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */setLoading(false);setFocus(false);setEmail(\"\");if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(!isInternalURL(link)){const url=safeURL(link);if(url)window.open(url,\"_blank\");}}};const validateForm=useCallback(email=>{if(email===\"\"||!validateEmail(email)){setError(true);formControls.start(\"error\");return false;}return true;},[validateEmail]);const handleChange=useCallback(event=>{setError(false);setEmail(event.target.value);},[]);const handleFocus=useCallback(event=>{setFocus(true);},[]);const handleBlur=useCallback(event=>{setFocus(false);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);if(service===\"mailchimp\"){const[domain,parameters]=parseMailChimpUrl(mailchimpURL);if(!validateForm(email)||!domain||!parameters){setLoading(false);return;}// MERGE0 is Mailchimp\u2019s email field name\nparameters.set(\"MERGE0\",email);fetch(`https://${domain}/subscribe/post`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded;charset=UTF-8\"},body:parameters.toString()}).then(response=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"loops\"){if(!validateForm(email)){setLoading(false);return;}const emailBody=`email=${encodeURIComponent(email)}`;const userGroupBody=`userGroup=${encodeURIComponent(loopsUserGroup)}`;const hasUserGroup=!!loopsUserGroup&&loopsUserGroup!==\" \";const formBody=hasUserGroup?emailBody+\"&\"+userGroupBody:emailBody;fetch(`https://app.loops.so/api/newsletter-form/${loopsID}`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"},body:formBody}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"formspark\"){if(!validateForm(email)){setLoading(false);return;}const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formsparkID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{onSuccess();onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"getwaitlist\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;fetch(`https://api.getwaitlist.com/api/v1\n/waiter/`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"convertkit\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;data.api_key=convertkitAPI;fetch(`https://api.convertkit.com/v3/forms/${convertkitFormID}/subscribe`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}},[mailchimpURL,formsparkID,convertkitFormID,email,onSubmit,validateForm,isLoading]);// Animation\nconst formControls=useAnimationControls();// Input Box Shadow Stylees\nconst focusStylesFrom=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthFrom}px ${focusObject.focusColor}`:null;const focusStylesTo=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthTo}px ${focusObject.focusColor}`:null;const shadowStyles=input.shadowObject?`${shadowObject.shadowX}px ${shadowObject.shadowY}px ${shadowObject.shadowBlur}px ${shadowObject.shadowColor}`:null;const borderStyles=input.borderObject?`inset 0 0 0 ${borderObject.borderWidth}px ${borderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},focused:{boxShadow:dynamicBoxShadow(focusStylesTo,shadowStyles,borderStyles)}};return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/_jsxs(\"form\",{style:{width:\"100%\",height:\"auto\",display:\"flex\",position:\"relative\",flexDirection:layout===\"vertical\"?\"column\":\"row\",color:button.color,gap:button.isDocked?0:gap},onSubmit:handleSubmit,method:\"POST\",children:[service===\"getwaitlist\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:getwaitlistAPI}),service===\"convertkit\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:convertkitAPI}),/*#__PURE__*/_jsx(motion.input,{type:\"email\",name:\"email\",placeholder:input.placeholder,value:email,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:handleFocus,onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",style:{...defaultStyle,padding:paddingValue,borderRadius,fontSize:16,...font,background:input.fill,height:height?\"auto\":fixedHeight,color:input.color,boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},variants:inputVariants,initial:false,animate:isFocus?\"focused\":\"default\",transition:{duration:.3},\"data-1p-ignore\":true}),!button.shouldAppear&&isLoading&&/*#__PURE__*/_jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:paddingPerSide,paddingTop:paddingTop,paddingRight:paddingRight,padding:padding,color:input.color}),button.shouldAppear&&/*#__PURE__*/_jsxs(\"div\",{style:{position:button.isDocked?\"absolute\":\"relative\",top:button.isDocked?button.insetWhenDocked:0,right:button.isDocked?button.insetWhenDocked:0,bottom:button.isDocked?button.insetWhenDocked:0},children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:button.isDocked?button.widthWhenDocked:\"100%\",height:height?\"100%\":fixedHeight,cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,// fontWeight: button.fontWeight,\nfontSize:16,...button.buttonFont,background:button.fill,color:button.color,zIndex:1,boxShadow:getButtonShadow(button)}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/_jsx(Spinner,{color:button.color})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.paddingPerSide?props.paddingRight:props.padding}:{};return /*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/_jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})});};addPropertyControls(Input,{service:{title:\"Service\",type:ControlType.Enum,options:[\"loops\",\"formspark\",\"mailchimp\",\"getwaitlist\",\"convertkit\"],optionTitles:[\"Loops\",\"FormSpark\",\"MailChimp\",\"Get Waitlist\",\"ConvertKit\"],defaultValue:\"loops\"},mailchimpURL:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String,hidden:props=>props.service!==\"mailchimp\"},loopsID:{title:\"ID\",placeholder:\"klm2jxy0i98abzr01pq7defg5\",type:ControlType.String,hidden:props=>props.service!==\"loops\"},loopsUserGroup:{title:\"User Group\",type:ControlType.String,placeholder:\"Title\",optional:true,hidden:props=>props.service!==\"loops\"},formsparkID:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,hidden:props=>props.service!==\"formspark\"},getwaitlistAPI:{title:\"ID\",placeholder:\"9148\",type:ControlType.String,hidden:props=>props.service!==\"getwaitlist\"},convertkitAPI:{title:\"API Key\",placeholder:\"5opis1WK6xnVsBwrOINUpe\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},convertkitFormID:{title:\"Form ID\",placeholder:\"1043389\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});const defaultStyle={WebkitAppearance:\"none\",appearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};function getButtonShadow(button){if(button.buttonShadow){return`${button.buttonShadow.shadowX}px ${button.buttonShadow.shadowY}px ${button.buttonShadow.shadowBlur}px ${button.buttonShadow.shadowColor}`;}else return\"none\";}function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}export default Input;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import Input from\"https://framer.com/m/framer/InputSites.js@1.12.0\";import{ControlType,addPropertyControls}from\"framer\";/**\n * INPUT - MAILCHIMP\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */export default function Mailchimp(props){// This is a React component containing an Example component\n// - Replace <Example /> with your own code\n// - Find inspiration: https://www.framer.com/developers/\nreturn /*#__PURE__*/_jsx(Input,{...props,service:\"mailchimp\"});}addPropertyControls(Mailchimp,{mailchimpURL:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Mailchimp\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"300\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input_Mailchimp.map", "// Generated by Framer (e22b717)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={aHfxjHgRg:{hover:true},AYILEoNiP:{hover:true},klUzeWpaZ:{hover:true},TmhM16HMU:{hover:true},yguGZX90B:{hover:true},yUCoZJosz:{hover:true}};const cycleOrder=[\"yUCoZJosz\",\"aHfxjHgRg\",\"AYILEoNiP\",\"TmhM16HMU\",\"klUzeWpaZ\",\"yguGZX90B\",\"NbfQiluZc\"];const serializationHash=\"framer-AH3jZ\";const variantClassNames={aHfxjHgRg:\"framer-v-zk900r\",AYILEoNiP:\"framer-v-55gs6b\",klUzeWpaZ:\"framer-v-fztc0\",NbfQiluZc:\"framer-v-14iqedc\",TmhM16HMU:\"framer-v-klbkx5\",yguGZX90B:\"framer-v-14whc9o\",yUCoZJosz:\"framer-v-1nj6g5k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"How it Works\":\"AYILEoNiP\",\"The App\":\"yUCoZJosz\",\"Why Nylo\":\"TmhM16HMU\",FAQ:\"klUzeWpaZ\",Login:\"yguGZX90B\",Phone:\"NbfQiluZc\",Pricing:\"aHfxjHgRg\"};const getProps=({click,height,id,link,title,width,...props})=>{return{...props,jJoxGqSTp:title??props.jJoxGqSTp??\"The App\",N8ULL_l9z:click??props.N8ULL_l9z,oinJ8NCdg:link??props.oinJ8NCdg,variant:humanReadableVariantMap[props.variant]??props.variant??\"yUCoZJosz\"};};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,oinJ8NCdg,jJoxGqSTp,N8ULL_l9z,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yUCoZJosz\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap191b6w4=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(N8ULL_l9z){const res=await N8ULL_l9z(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"yUCoZJosz-hover\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"aHfxjHgRg-hover\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"AYILEoNiP-hover\")return true;return false;};const isDisplayed3=()=>{if(gestureVariant===\"TmhM16HMU-hover\")return true;return false;};const isDisplayed4=()=>{if(gestureVariant===\"klUzeWpaZ-hover\")return true;return false;};const isDisplayed5=()=>{if(gestureVariant===\"yguGZX90B-hover\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:oinJ8NCdg,motionChild:true,nodeId:\"yUCoZJosz\",openInNewTab:false,scopeId:\"kR8f9EORt\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1nj6g5k\",className,classNames)} framer-fctn8j`,\"data-framer-name\":\"The App\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"yUCoZJosz\",onTap:onTap191b6w4,ref:refBinding,style:{...style},...addPropertyOverrides({\"aHfxjHgRg-hover\":{\"data-framer-name\":undefined},\"AYILEoNiP-hover\":{\"data-framer-name\":undefined},\"klUzeWpaZ-hover\":{\"data-framer-name\":undefined},\"TmhM16HMU-hover\":{\"data-framer-name\":undefined},\"yguGZX90B-hover\":{\"data-framer-name\":undefined},\"yUCoZJosz-hover\":{\"data-framer-name\":undefined},aHfxjHgRg:{\"data-framer-name\":\"Pricing\"},AYILEoNiP:{\"data-framer-name\":\"How it Works\"},klUzeWpaZ:{\"data-framer-name\":\"FAQ\"},NbfQiluZc:{\"data-framer-name\":\"Phone\"},TmhM16HMU:{\"data-framer-name\":\"Why Nylo\"},yguGZX90B:{\"data-framer-name\":\"Login\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-iqd7v1\",\"data-framer-name\":\"Vector 54\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:106,layoutDependency:layoutDependency,layoutId:\"VjTe9A5PQ\",svg:'<svg width=\"106\" height=\"48\" viewBox=\"-2 -2 106 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.9999 8C7.61874 9.99304 -2.60011 14.2666 1.66661 22C4.12254 26.4514 10.0108 29.9817 13.9999 32.6667C19.7522 36.5384 26.5764 41.3973 33.5555 42.7778C45.5773 45.1557 60.4284 42.9203 72.4444 41.3889C79.4998 40.4897 95.6023 40.3028 100.389 33.3889C103.632 28.7042 99.0045 17.6392 95.9999 14.2222C86.8442 3.80987 67.732 2.71774 54.9444 1.61112C45.1904 0.767017 34.6766 0.0646634 24.9999 2\" stroke=\"#778BAB\" stroke-width=\"3\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-wvq0u1\",\"data-framer-name\":\"Vector 56\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:113,layoutDependency:layoutDependency,layoutId:\"hpjUS1GSn\",style:{rotate:-2},svg:'<svg width=\"113\" height=\"48\" viewBox=\"-2 -2 113 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M44 10C28.9025 10 17.9699 10.8256 4.1111 16.8889C0.803357 18.336 -1.6984 20.452 1.77777 24.1111C6.67041 29.2613 16.9021 30.7145 23.1111 32C43.8425 36.2921 64.933 38.964 85.7778 42.6667C96.6152 44.5917 112.51 40.5928 107.556 25.1111C103.937 13.8033 76.0622 9.26099 66.8889 6.33333C59.8166 4.07622 51.659 0 44 0\" stroke=\"#778BAB\" stroke-width=\"3\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1antqz5\",\"data-framer-name\":\"Vector 57\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:158,layoutDependency:layoutDependency,layoutId:\"LEa1Vh0SR\",svg:'<svg width=\"158\" height=\"41\" viewBox=\"-2 -2 158 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18 6.99992C7.7066 7.93568 1.25684 14.2355 0.444433 24.9999C-0.897356 42.7786 101.76 35.0725 115.111 34.9999C117.501 34.9869 158.742 31.2183 153.556 24.111C149.31 18.2929 135.523 16.1896 130.111 14.7777C114.363 10.6694 98.4985 6.54351 82.6667 2.77769C58.5197 -2.966 33.5505 5.95338 9.99999 10.9999\" stroke=\"#778BAB\" stroke-width=\"3\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-pdapyv\",\"data-framer-name\":\"Vector 56\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:113,layoutDependency:layoutDependency,layoutId:\"zARpXzd2L\",style:{rotate:-2},svg:'<svg width=\"113\" height=\"48\" viewBox=\"-2 -2 113 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M44 10C28.9025 10 17.9699 10.8256 4.1111 16.8889C0.803357 18.336 -1.6984 20.452 1.77777 24.1111C6.67041 29.2613 16.9021 30.7145 23.1111 32C43.8425 36.2921 64.933 38.964 85.7778 42.6667C96.6152 44.5917 112.51 40.5928 107.556 25.1111C103.937 13.8033 76.0622 9.26099 66.8889 6.33333C59.8166 4.07622 51.659 0 44 0\" stroke=\"#778BAB\" stroke-width=\"3\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1lebg27\",\"data-framer-name\":\"Vector 55\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:104,layoutDependency:layoutDependency,layoutId:\"tTxJ5D8yS\",svg:'<svg width=\"104\" height=\"50\" viewBox=\"-2 -2 104 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M36.1485 7.45082C25.7834 8.62856 12.9179 9.93488 4.0218 16.0216C-14.245 28.5197 58.631 38.1606 64.8874 37.9568C69.9017 37.7934 98.7268 37.2052 98.7002 26.5106C98.6642 12.009 50.2749 10.0861 40.3487 8.98643\" stroke=\"#778BAB\" stroke-width=\"3\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-h36s4l\",\"data-framer-name\":\"Vector 54\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:106,layoutDependency:layoutDependency,layoutId:\"pvUrymyru\",style:{rotate:181},svg:'<svg width=\"106\" height=\"48\" viewBox=\"-2 -2 106 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.9999 8C7.61874 9.99304 -2.60011 14.2666 1.66661 22C4.12254 26.4514 10.0108 29.9817 13.9999 32.6667C19.7522 36.5384 26.5764 41.3973 33.5555 42.7778C45.5773 45.1557 60.4284 42.9203 72.4444 41.3889C79.4998 40.4897 95.6023 40.3028 100.389 33.3889C103.632 28.7042 99.0045 17.6392 95.9999 14.2222C86.8442 3.80987 67.732 2.71774 54.9444 1.61112C45.1904 0.767017 34.6766 0.0646634 24.9999 2\" stroke=\"#778BAB\" stroke-width=\"3\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlc3QgTWFydGluYSBQbGFudGlqbiBSZWd1bGFy\",\"--framer-font-family\":'\"Test Martina Plantijn Regular\", \"Test Martina Plantijn Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13.4px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(126, 162, 149))\"},children:\"The App\"})}),className:\"framer-1lg64ot\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;Test Martina Plantijn Regular\"],layoutDependency:layoutDependency,layoutId:\"YTXZ8b2F8\",style:{\"--extracted-r6o4lv\":\"rgb(126, 162, 149)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{NbfQiluZc:{\"--extracted-r6o4lv\":\"var(--token-ca1ab530-7c1c-449b-b77e-f7fbc4003dca, rgb(247, 235, 218))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aHfxjHgRg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlc3QgTWFydGluYSBQbGFudGlqbiBSZWd1bGFy\",\"--framer-font-family\":'\"Test Martina Plantijn Regular\", \"Test Martina Plantijn Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13.4px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(126, 162, 149))\"},children:\"Pricing\"})})},AYILEoNiP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlc3QgTWFydGluYSBQbGFudGlqbiBSZWd1bGFy\",\"--framer-font-family\":'\"Test Martina Plantijn Regular\", \"Test Martina Plantijn Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13.4px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(126, 162, 149))\"},children:\"How it Works\"})})},klUzeWpaZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlc3QgTWFydGluYSBQbGFudGlqbiBSZWd1bGFy\",\"--framer-font-family\":'\"Test Martina Plantijn Regular\", \"Test Martina Plantijn Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13.4px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(126, 162, 149))\"},children:\"FAQ\"})})},NbfQiluZc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlc3QgTWFydGluYSBQbGFudGlqbiBSZWd1bGFy\",\"--framer-font-family\":'\"Test Martina Plantijn Regular\", \"Test Martina Plantijn Regular Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ca1ab530-7c1c-449b-b77e-f7fbc4003dca, rgb(247, 235, 218)))\"},children:\"The App\"})}),text:jJoxGqSTp},TmhM16HMU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlc3QgTWFydGluYSBQbGFudGlqbiBSZWd1bGFy\",\"--framer-font-family\":'\"Test Martina Plantijn Regular\", \"Test Martina Plantijn Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13.4px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(126, 162, 149))\"},children:\"Why Nylo\"})})},yguGZX90B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlc3QgTWFydGluYSBQbGFudGlqbiBSZWd1bGFy\",\"--framer-font-family\":'\"Test Martina Plantijn Regular\", \"Test Martina Plantijn Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13.4px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(126, 162, 149))\"},children:\"Login\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AH3jZ.framer-fctn8j, .framer-AH3jZ .framer-fctn8j { display: block; }\",\".framer-AH3jZ.framer-1nj6g5k { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-AH3jZ .framer-iqd7v1 { bottom: -9px; flex: none; left: -10px; position: absolute; right: -10px; top: -7px; z-index: 1; }\",\".framer-AH3jZ .framer-wvq0u1 { bottom: -8px; flex: none; left: -20px; position: absolute; right: -12px; top: -8px; z-index: 1; }\",\".framer-AH3jZ .framer-1antqz5 { bottom: -4px; flex: none; left: -9px; position: absolute; right: -17px; top: -7px; z-index: 1; }\",\".framer-AH3jZ .framer-pdapyv { bottom: -7px; flex: none; left: -11px; position: absolute; right: -5px; top: -9px; z-index: 1; }\",\".framer-AH3jZ .framer-1lebg27 { bottom: -9px; flex: none; left: -22px; position: absolute; right: -20px; top: -8px; z-index: 1; }\",\".framer-AH3jZ .framer-h36s4l { bottom: -5px; flex: none; left: -9px; position: absolute; right: -8px; top: -3px; z-index: 1; }\",\".framer-AH3jZ .framer-1lg64ot { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AH3jZ.framer-1nj6g5k { gap: 0px; } .framer-AH3jZ.framer-1nj6g5k > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-AH3jZ.framer-1nj6g5k > :first-child { margin-left: 0px; } .framer-AH3jZ.framer-1nj6g5k > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 16\n * @framerIntrinsicWidth 49.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"aHfxjHgRg\":{\"layout\":[\"auto\",\"auto\"]},\"AYILEoNiP\":{\"layout\":[\"auto\",\"auto\"]},\"TmhM16HMU\":{\"layout\":[\"auto\",\"auto\"]},\"klUzeWpaZ\":{\"layout\":[\"auto\",\"auto\"]},\"yguGZX90B\":{\"layout\":[\"auto\",\"auto\"]},\"NbfQiluZc\":{\"layout\":[\"auto\",\"auto\"]},\"uOHbQnFH0\":{\"layout\":[\"auto\",\"auto\"]},\"Xho5Nn72C\":{\"layout\":[\"auto\",\"auto\"]},\"E_b7nU9wc\":{\"layout\":[\"auto\",\"auto\"]},\"DhWVPMgXc\":{\"layout\":[\"auto\",\"auto\"]},\"LsmMUs7KI\":{\"layout\":[\"auto\",\"auto\"]},\"gAYiIVZl0\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"oinJ8NCdg\":\"link\",\"jJoxGqSTp\":\"title\",\"N8ULL_l9z\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkR8f9EORt=withCSS(Component,css,\"framer-AH3jZ\");export default FramerkR8f9EORt;FramerkR8f9EORt.displayName=\"Nav Links\";FramerkR8f9EORt.defaultProps={height:16,width:49.5};addPropertyControls(FramerkR8f9EORt,{variant:{options:[\"yUCoZJosz\",\"aHfxjHgRg\",\"AYILEoNiP\",\"TmhM16HMU\",\"klUzeWpaZ\",\"yguGZX90B\",\"NbfQiluZc\"],optionTitles:[\"The App\",\"Pricing\",\"How it Works\",\"Why Nylo\",\"FAQ\",\"Login\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},oinJ8NCdg:{title:\"Link\",type:ControlType.Link},jJoxGqSTp:{defaultValue:\"The App\",displayTextArea:false,title:\"Title\",type:ControlType.String},N8ULL_l9z:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerkR8f9EORt,[{explicitInter:true,fonts:[{family:\"Test Martina Plantijn Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/GAItHCDfcHKa1DkfSlRX2T548.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkR8f9EORt\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"49.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aHfxjHgRg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AYILEoNiP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TmhM16HMU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"klUzeWpaZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yguGZX90B\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NbfQiluZc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uOHbQnFH0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Xho5Nn72C\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"E_b7nU9wc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DhWVPMgXc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LsmMUs7KI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gAYiIVZl0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"oinJ8NCdg\\\":\\\"link\\\",\\\"jJoxGqSTp\\\":\\\"title\\\",\\\"N8ULL_l9z\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"16\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kR8f9EORt.map", "// Generated by Framer (2abc263)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Mailchimp from\"https://framerusercontent.com/modules/tEJqoun4MtBed1OjNwKy/oIG6qvkLwFygGXycIYZs/Input_Mailchimp.js\";import NavLinks from\"https://framerusercontent.com/modules/GKMbF0r6nmEKjUYyMhQj/vMkiJO7dyntFSWB6o450/kR8f9EORt.js\";const NavLinksFonts=getFonts(NavLinks);const MailchimpFonts=getFonts(Mailchimp);const cycleOrder=[\"iwP6TC3zX\",\"Ts7gsEG13\",\"eF6T1u7og\",\"Uf9TSWtg0\",\"jddMaChIw\",\"LomGQTv4U\"];const serializationHash=\"framer-CTfUG\";const variantClassNames={eF6T1u7og:\"framer-v-1n1au0w\",iwP6TC3zX:\"framer-v-1m3wbv7\",jddMaChIw:\"framer-v-950y8e\",LomGQTv4U:\"framer-v-u6nedo\",Ts7gsEG13:\"framer-v-srxa7f\",Uf9TSWtg0:\"framer-v-10s9p6b\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};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={\"Desktop Nav\":\"iwP6TC3zX\",\"No Email\":\"jddMaChIw\",\"Phone Open\":\"Uf9TSWtg0\",\"Tablet No Email\":\"LomGQTv4U\",Phone:\"eF6T1u7og\",Tablet:\"Ts7gsEG13\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"iwP6TC3zX\"};};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:\"iwP6TC3zX\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapglwfq7=activeVariantCallback(async(...args)=>{setVariant(\"Uf9TSWtg0\");});const onTapip8atn=activeVariantCallback(async(...args)=>{setVariant(\"eF6T1u7og\");});const N8ULL_l9zip8atn=activeVariantCallback(async(...args)=>{setVariant(\"eF6T1u7og\");});const onTapdd6bwq=activeVariantCallback(async(...args)=>{setVariant(\"Ts7gsEG13\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"eF6T1u7og\",\"Uf9TSWtg0\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"eF6T1u7og\")return false;return true;};const router=useRouter();const isDisplayed2=()=>{if([\"eF6T1u7og\",\"Uf9TSWtg0\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"eF6T1u7og\",\"jddMaChIw\",\"LomGQTv4U\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1m3wbv7\",className,classNames),\"data-framer-name\":\"Desktop Nav\",layoutDependency:layoutDependency,layoutId:\"iwP6TC3zX\",ref:refBinding,style:{backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"blur(5px)\",...style},variants:{jddMaChIw:{backgroundColor:\"rgba(0, 0, 0, 0)\"},LomGQTv4U:{backgroundColor:\"rgba(0, 0, 0, 0)\"},Uf9TSWtg0:{backgroundColor:\"var(--token-8b3d1739-7bf8-4b90-906f-ef9055e00ae1, rgb(119, 139, 171))\"}},...addPropertyOverrides({eF6T1u7og:{\"data-framer-name\":\"Phone\"},jddMaChIw:{\"data-framer-name\":\"No Email\"},LomGQTv4U:{\"data-framer-name\":\"Tablet No Email\"},Ts7gsEG13:{\"data-framer-name\":\"Tablet\"},Uf9TSWtg0:{\"data-framer-name\":\"Phone Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qmvpwc\",\"data-framer-name\":\"Rectangle 4\",layoutDependency:layoutDependency,layoutId:\"QpH1mN8p2\",style:{opacity:.8},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9eehfe\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"mrvKPoAct\",style:{backgroundColor:\"var(--token-ca1ab530-7c1c-449b-b77e-f7fbc4003dca, rgb(247, 235, 218))\",opacity:.83}}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"akRqRyTyC\",scopeId:\"ZqTMTghMx\",...addPropertyOverrides({eF6T1u7og:{href:{webPageId:\"augiA20Il\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-6cnbqj framer-16svm8d\",\"data-framer-name\":\"LOGO\",layoutDependency:layoutDependency,layoutId:\"akRqRyTyC\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17zpmpv\",\"data-framer-name\":\"Clip path group\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jxesNBwhJ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 92 32\"><g transform=\"translate(0.102 0.452)\" id=\"ss8918101448_1\"><g id=\"ss8918101448_2\"><path d=\"M 32.607 20.242 C 32.607 21.844 33.747 22.367 36.057 22.46 L 36.057 23.601 L 27.553 23.601 L 27.553 22.491 C 29.865 22.398 31.004 21.844 31.004 20.242 L 31.004 5.36 C 31.004 3.758 29.925 3.265 27.922 3.172 L 27.922 2.031 L 32.882 2.031 L 44.776 18.669 L 44.776 5.39 C 44.776 3.788 43.635 3.202 41.325 3.111 L 41.325 2.033 L 49.799 2.033 L 49.799 3.143 C 47.487 3.236 46.348 3.79 46.348 5.392 L 46.348 23.601 L 45.301 23.601 L 32.607 5.853 Z\" fill=\"rgb(119,139,171)\"></path><path d=\"M 51.494 11.337 C 51.063 10.29 50.476 9.859 49.398 9.766 L 49.398 8.688 L 56.331 8.688 L 56.331 9.766 C 54.39 9.92 53.435 10.351 54.02 11.892 L 57.439 20.703 L 60.829 11.892 C 61.413 10.32 60.459 9.92 58.517 9.766 L 58.517 8.688 L 64.772 8.688 L 64.772 9.766 C 63.694 9.859 63.108 10.29 62.677 11.337 L 57.069 25.141 C 55.682 28.624 54.327 30.996 51.832 30.996 C 50.6 30.996 49.459 30.133 49.459 28.994 C 49.459 27.976 50.137 27.206 51.092 27.206 C 52.725 27.206 52.447 28.808 53.249 28.808 C 53.834 28.808 54.39 28.345 55.714 25.172 L 56.392 23.601 L 51.492 11.337 Z\" fill=\"rgb(119,139,171)\"></path><path d=\"M 67.854 3.234 L 65.451 1.909 L 65.451 1.478 L 69.641 0 L 70.196 0 L 70.196 20.951 C 70.196 21.999 71.274 22.43 72.661 22.523 L 72.661 23.601 L 65.389 23.601 L 65.389 22.523 C 66.776 22.43 67.854 21.999 67.854 20.951 Z\" fill=\"rgb(119,139,171)\"></path><path d=\"M 80.671 8.379 C 84.677 8.379 87.48 11.398 87.48 15.805 C 87.48 20.211 84.799 23.908 80.671 23.908 C 76.543 23.908 73.893 20.889 73.893 16.421 C 73.893 11.954 76.572 8.379 80.671 8.379 Z M 80.979 22.553 C 83.814 22.553 84.985 20.365 84.985 17.008 C 84.985 13.372 83.074 9.736 80.24 9.736 C 77.559 9.736 76.358 11.923 76.358 15.281 C 76.358 18.886 78.269 22.553 80.979 22.553 Z\" fill=\"rgb(119,139,171)\"></path><path d=\"M 0.057 21.351 C 1.338 15.3 3.6 8.063 10.302 8.205 C 12.403 8.25 14.33 9.193 15.338 11.41 C 15.586 11.955 16.391 11.822 16.442 11.224 C 16.677 8.485 14.917 1.97 16.937 1.562 C 18.7 1.206 19.211 5.445 19.211 5.445 C 19.211 5.445 20.161 1.004 21.459 0.954 C 22.594 0.911 23.151 1.909 22.571 3.589 C 21.992 5.27 21.005 7.472 21.005 7.472 C 21.005 7.472 24.599 9.608 23.83 11.056 C 22.688 13.207 18.292 14.586 17.966 17.788 C 17.886 18.574 18.019 19.378 18.521 20.118 C 19.325 21.302 18.839 22.231 18.305 22.54 C 16.628 23.512 16 23.338 14.877 22.139 C 13.224 20.374 13.537 19.651 13.146 19.825 C 12.758 19.998 9.63 21.852 5.357 20.32 C 5.28 20.292 5.193 20.326 5.156 20.398 C 4.957 20.783 4.424 22.094 3.87 22.929 C 3.403 23.632 2.689 23.642 2.053 23.567 C 0.813 23.419 -0.259 22.837 0.056 21.35\" fill=\"rgb(119,139,171)\"></path><path d=\"M 86.755 6.574 L 86.755 5.624 L 86.44 5.624 L 86.44 5.401 L 87.342 5.401 L 87.342 5.624 L 87.022 5.624 L 87.022 6.574 Z M 88.486 6.574 L 88.468 6.125 C 88.463 5.984 88.458 5.813 88.458 5.643 L 88.453 5.643 C 88.416 5.792 88.367 5.96 88.322 6.097 L 88.179 6.555 L 87.972 6.555 L 87.847 6.101 C 87.809 5.963 87.769 5.796 87.741 5.643 L 87.737 5.643 C 87.73 5.801 87.725 5.982 87.716 6.129 L 87.695 6.574 L 87.45 6.574 L 87.525 5.401 L 87.878 5.401 L 87.993 5.792 C 88.03 5.928 88.066 6.075 88.092 6.212 L 88.098 6.212 C 88.131 6.076 88.171 5.921 88.209 5.791 L 88.334 5.401 L 88.681 5.401 L 88.745 6.574 Z\" fill=\"rgb(119,139,171)\"></path></g></g></svg>',svgContentId:8918101448,withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fa5qd9\",\"data-framer-name\":\"Menu  Button\",layoutDependency:layoutDependency,layoutId:\"t0qjBQ58s\",...addPropertyOverrides({eF6T1u7og:{\"data-highlight\":true,onTap:onTapglwfq7},Uf9TSWtg0:{\"data-highlight\":true,onTap:onTapip8atn}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9cyahv\",\"data-framer-name\":\"Rectangle 3\",layoutDependency:layoutDependency,layoutId:\"QaUpQCJV3\",style:{backgroundColor:\"var(--token-1ba7a62d-16ea-4bbc-94e9-ec7e5da131ec, rgb(126, 162, 149))\",borderBottomLeftRadius:41.79,borderBottomRightRadius:41.79,borderTopLeftRadius:41.79,borderTopRightRadius:41.79}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlc3QgTWFydGluYSBQbGFudGlqbiBCb2xk\",\"--framer-font-family\":'\"Test Martina Plantijn Bold\", \"Test Martina Plantijn Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14.3px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(247, 235, 218))\"},children:\"Menu\"})}),className:\"framer-rwbq6\",\"data-framer-name\":\"Subscribe\",fonts:[\"CUSTOM;Test Martina Plantijn Bold\"],layoutDependency:layoutDependency,layoutId:\"wUTajAYWZ\",style:{\"--extracted-r6o4lv\":\"rgb(247, 235, 218)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Uf9TSWtg0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlc3QgTWFydGluYSBQbGFudGlqbiBCb2xk\",\"--framer-font-family\":'\"Test Martina Plantijn Bold\", \"Test Martina Plantijn Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14.3px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(247, 235, 218))\"},children:\"Close\"})})}},baseVariant,gestureVariant)})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16d9s2u\",\"data-framer-name\":\"Buttons 1\",layoutDependency:layoutDependency,layoutId:\"euN5g0Cnw\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":HYmGKTrL3\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":HYmGKTrL3\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":HYmGKTrL3\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":HYmGKTrL3\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":HYmGKTrL3\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,y:(componentViewport?.y||0)+(componentViewport?.height||150)-40.5+0,...addPropertyOverrides({jddMaChIw:{y:(componentViewport?.y||0)+(componentViewport?.height||66)-40.5+0},LomGQTv4U:{y:(componentViewport?.y||0)+(componentViewport?.height||66)-40.5+0},Uf9TSWtg0:{width:\"202px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||653)-115-439)/2+66+36)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1i65l3h-container\",layoutDependency:layoutDependency,layoutId:\"TlpJ0IhLn-container\",nodeId:\"TlpJ0IhLn\",rendersWithMotion:true,scopeId:\"ZqTMTghMx\",children:/*#__PURE__*/_jsx(NavLinks,{height:\"100%\",id:\"TlpJ0IhLn\",jJoxGqSTp:\"The App\",layoutId:\"TlpJ0IhLn\",oinJ8NCdg:resolvedLinks[0],variant:\"yUCoZJosz\",width:\"100%\",...addPropertyOverrides({jddMaChIw:{oinJ8NCdg:resolvedLinks[3]},LomGQTv4U:{oinJ8NCdg:resolvedLinks[4]},Ts7gsEG13:{oinJ8NCdg:resolvedLinks[1]},Uf9TSWtg0:{N8ULL_l9z:N8ULL_l9zip8atn,oinJ8NCdg:resolvedLinks[2],style:{width:\"100%\"},variant:\"NbfQiluZc\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":l_5K82DwV\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":l_5K82DwV\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":l_5K82DwV\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":l_5K82DwV\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":l_5K82DwV\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,y:(componentViewport?.y||0)+(componentViewport?.height||150)-40.5+0,...addPropertyOverrides({jddMaChIw:{y:(componentViewport?.y||0)+(componentViewport?.height||66)-40.5+0},LomGQTv4U:{y:(componentViewport?.y||0)+(componentViewport?.height||66)-40.5+0},Uf9TSWtg0:{width:\"202px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||653)-115-439)/2+66+36)+0+41}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16lfk7v-container\",layoutDependency:layoutDependency,layoutId:\"fOzSXq7w6-container\",nodeId:\"fOzSXq7w6\",rendersWithMotion:true,scopeId:\"ZqTMTghMx\",children:/*#__PURE__*/_jsx(NavLinks,{height:\"100%\",id:\"fOzSXq7w6\",jJoxGqSTp:\"The App\",layoutId:\"fOzSXq7w6\",oinJ8NCdg:resolvedLinks1[0],variant:\"aHfxjHgRg\",width:\"100%\",...addPropertyOverrides({jddMaChIw:{oinJ8NCdg:resolvedLinks1[3]},LomGQTv4U:{oinJ8NCdg:resolvedLinks1[4]},Ts7gsEG13:{oinJ8NCdg:resolvedLinks1[1]},Uf9TSWtg0:{jJoxGqSTp:\"Pricing\",N8ULL_l9z:N8ULL_l9zip8atn,oinJ8NCdg:resolvedLinks1[2],style:{width:\"100%\"},variant:\"NbfQiluZc\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":AAMBCj5pn\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":AAMBCj5pn\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":AAMBCj5pn\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":AAMBCj5pn\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":AAMBCj5pn\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,y:(componentViewport?.y||0)+(componentViewport?.height||150)-40.5+0,...addPropertyOverrides({jddMaChIw:{y:(componentViewport?.y||0)+(componentViewport?.height||66)-40.5+0},LomGQTv4U:{y:(componentViewport?.y||0)+(componentViewport?.height||66)-40.5+0},Uf9TSWtg0:{width:\"202px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||653)-115-439)/2+66+36)+0+82}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-124sgmd-container\",layoutDependency:layoutDependency,layoutId:\"nwLS36Q79-container\",nodeId:\"nwLS36Q79\",rendersWithMotion:true,scopeId:\"ZqTMTghMx\",children:/*#__PURE__*/_jsx(NavLinks,{height:\"100%\",id:\"nwLS36Q79\",jJoxGqSTp:\"The App\",layoutId:\"nwLS36Q79\",oinJ8NCdg:resolvedLinks2[0],variant:\"AYILEoNiP\",width:\"100%\",...addPropertyOverrides({jddMaChIw:{oinJ8NCdg:resolvedLinks2[3]},LomGQTv4U:{oinJ8NCdg:resolvedLinks2[4]},Ts7gsEG13:{oinJ8NCdg:resolvedLinks2[1]},Uf9TSWtg0:{jJoxGqSTp:\"How it Works\",N8ULL_l9z:N8ULL_l9zip8atn,oinJ8NCdg:resolvedLinks2[2],style:{width:\"100%\"},variant:\"NbfQiluZc\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":brR9BJtmH\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":brR9BJtmH\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":brR9BJtmH\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":brR9BJtmH\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":brR9BJtmH\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,y:(componentViewport?.y||0)+(componentViewport?.height||150)-40.5+0,...addPropertyOverrides({jddMaChIw:{y:(componentViewport?.y||0)+(componentViewport?.height||66)-40.5+0},LomGQTv4U:{y:(componentViewport?.y||0)+(componentViewport?.height||66)-40.5+0},Uf9TSWtg0:{width:\"202px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||653)-115-439)/2+66+36)+0+123}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-k9tibd-container\",layoutDependency:layoutDependency,layoutId:\"l0RC42eiO-container\",nodeId:\"l0RC42eiO\",rendersWithMotion:true,scopeId:\"ZqTMTghMx\",children:/*#__PURE__*/_jsx(NavLinks,{height:\"100%\",id:\"l0RC42eiO\",jJoxGqSTp:\"The App\",layoutId:\"l0RC42eiO\",oinJ8NCdg:resolvedLinks3[0],variant:\"TmhM16HMU\",width:\"100%\",...addPropertyOverrides({jddMaChIw:{oinJ8NCdg:resolvedLinks3[3]},LomGQTv4U:{oinJ8NCdg:resolvedLinks3[4]},Ts7gsEG13:{oinJ8NCdg:resolvedLinks3[1]},Uf9TSWtg0:{jJoxGqSTp:\"Why Nylo\",N8ULL_l9z:N8ULL_l9zip8atn,oinJ8NCdg:resolvedLinks3[2],style:{width:\"100%\"},variant:\"NbfQiluZc\"}},baseVariant,gestureVariant)})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dvfo0d\",\"data-framer-name\":\"Buttons 2\",layoutDependency:layoutDependency,layoutId:\"Gr6Y61fqy\",...addPropertyOverrides({jddMaChIw:{transformTemplate:transformTemplate2},LomGQTv4U:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bWaycjy4h\"},implicitPathVariables:undefined},{href:{webPageId:\"bWaycjy4h\"},implicitPathVariables:undefined},{href:{webPageId:\"bWaycjy4h\"},implicitPathVariables:undefined},{href:{webPageId:\"bWaycjy4h\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,y:(componentViewport?.y||0)+(componentViewport?.height||150)-48+9,...addPropertyOverrides({jddMaChIw:{y:(componentViewport?.y||0)+((componentViewport?.height||66)*.5151515151515154-17)+9},LomGQTv4U:{y:(componentViewport?.y||0)+((componentViewport?.height||66)*.5151515151515154-17)+9}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qgoa12-container\",layoutDependency:layoutDependency,layoutId:\"k6zb4WSQJ-container\",nodeId:\"k6zb4WSQJ\",rendersWithMotion:true,scopeId:\"ZqTMTghMx\",children:/*#__PURE__*/_jsx(NavLinks,{height:\"100%\",id:\"k6zb4WSQJ\",jJoxGqSTp:\"The App\",layoutId:\"k6zb4WSQJ\",oinJ8NCdg:resolvedLinks4[0],variant:\"klUzeWpaZ\",width:\"100%\",...addPropertyOverrides({jddMaChIw:{oinJ8NCdg:resolvedLinks4[2]},LomGQTv4U:{oinJ8NCdg:resolvedLinks4[3]},Ts7gsEG13:{oinJ8NCdg:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,y:(componentViewport?.y||0)+(componentViewport?.height||150)-48+9,...addPropertyOverrides({jddMaChIw:{y:(componentViewport?.y||0)+((componentViewport?.height||66)*.5151515151515154-17)+9},LomGQTv4U:{y:(componentViewport?.y||0)+((componentViewport?.height||66)*.5151515151515154-17)+9}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-f8pg7m-container\",layoutDependency:layoutDependency,layoutId:\"GzHsRtfMB-container\",nodeId:\"GzHsRtfMB\",rendersWithMotion:true,scopeId:\"ZqTMTghMx\",children:/*#__PURE__*/_jsx(NavLinks,{height:\"100%\",id:\"GzHsRtfMB\",jJoxGqSTp:\"The App\",layoutId:\"GzHsRtfMB\",oinJ8NCdg:\"https://nylo.app/login\",variant:\"yguGZX90B\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://nylo.app\",motionChild:true,nodeId:\"X_1UJwdMA\",scopeId:\"ZqTMTghMx\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-6obpz8 framer-16svm8d\",\"data-framer-name\":\"Subscribe button\",layoutDependency:layoutDependency,layoutId:\"X_1UJwdMA\",whileHover:animation,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1z07py9\",\"data-framer-name\":\"Rectangle 3\",layoutDependency:layoutDependency,layoutId:\"mdcEt2d5N\",style:{backgroundColor:\"rgb(220, 169, 164)\",borderBottomLeftRadius:41.79,borderBottomRightRadius:41.79,borderTopLeftRadius:41.79,borderTopRightRadius:41.79}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlc3QgTWFydGluYSBQbGFudGlqbiBCb2xk\",\"--framer-font-family\":'\"Test Martina Plantijn Bold\", \"Test Martina Plantijn Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14.3px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(247, 235, 218))\"},children:\"Sign Up \"})}),className:\"framer-4r985w\",\"data-framer-name\":\"Subscribe\",fonts:[\"CUSTOM;Test Martina Plantijn Bold\"],layoutDependency:layoutDependency,layoutId:\"CEqgEqO2g\",style:{\"--extracted-r6o4lv\":\"rgb(247, 235, 218)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-thbv79\",layoutDependency:layoutDependency,layoutId:\"uQ4j9OkRy\",children:isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1brsh0e\",layoutDependency:layoutDependency,layoutId:\"yqFVsf9Pi\",style:{backgroundColor:\"var(--token-8b3d1739-7bf8-4b90-906f-ef9055e00ae1, rgb(119, 139, 171))\"},variants:{Uf9TSWtg0:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15wgwzl\",layoutDependency:layoutDependency,layoutId:\"K1d69YNiO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlc3QgTWFydGluYSBQbGFudGlqbiBSZWd1bGFy\",\"--framer-font-family\":'\"Test Martina Plantijn Regular\", \"Test Martina Plantijn Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ca1ab530-7c1c-449b-b77e-f7fbc4003dca, rgb(247, 235, 218)))\"},children:\"Stay up-to-date on all new Nylo content and offerings!\"})}),className:\"framer-1egbq5b\",fonts:[\"CUSTOM;Test Martina Plantijn Regular\"],layoutDependency:layoutDependency,layoutId:\"BCpvzuRkp\",style:{\"--extracted-r6o4lv\":\"var(--token-ca1ab530-7c1c-449b-b77e-f7fbc4003dca, rgb(247, 235, 218))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({Ts7gsEG13:{\"data-highlight\":true,onTap:onTapdd6bwq},Uf9TSWtg0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlc3QgTWFydGluYSBQbGFudGlqbiBSZWd1bGFy\",\"--framer-font-family\":'\"Test Martina Plantijn Regular\", \"Test Martina Plantijn Regular Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ca1ab530-7c1c-449b-b77e-f7fbc4003dca, rgb(247, 235, 218)))\"},children:\"Stay up-to-date on all new Nylo content and offerings!\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nlpg9l-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"FIqSE7kmJ-container\",nodeId:\"FIqSE7kmJ\",rendersWithMotion:true,scopeId:\"ZqTMTghMx\",children:/*#__PURE__*/_jsx(Mailchimp,{button:{buttonFont:{fontFamily:'\"Test Martina Plantijn Regular\", \"Test Martina Plantijn Regular Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:17,buttonPaddingBottom:17,buttonPaddingLeft:17,buttonPaddingPerSide:false,buttonPaddingRight:17,buttonPaddingTop:17,color:\"var(--token-ca1ab530-7c1c-449b-b77e-f7fbc4003dca, rgb(247, 235, 218))\",fill:\"var(--token-1ba7a62d-16ea-4bbc-94e9-ec7e5da131ec, rgb(126, 162, 149))\",insetWhenDocked:5,isDocked:false,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:100},font:{},gap:30,height:\"100%\",id:\"FIqSE7kmJ\",input:{borderRadius:54,color:\"var(--token-8b3d1739-7bf8-4b90-906f-ef9055e00ae1, rgb(119, 139, 171))\",fill:\"var(--token-ca1ab530-7c1c-449b-b77e-f7fbc4003dca, rgb(247, 235, 218))\",fixedHeight:50,height:false,padding:14,paddingBottom:14,paddingLeft:14,paddingPerSide:false,paddingRight:14,paddingTop:14,placeholder:\"name@email.com\",placeholderColor:\"rgba(0, 0, 0, 0.3)\"},layout:\"horizontal\",layoutId:\"FIqSE7kmJ\",mailchimpURL:\"https://kids.us8.list-manage.com/subscribe/post?u=9bb3a078fd4598b3d3a683c12&amp;id=a54e81e45a&amp;f_id=0011c8e2f0\",redirectAs:\"link\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({Uf9TSWtg0:{gap:10,layout:\"vertical\"}},baseVariant,gestureVariant)})})})]})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CTfUG.framer-16svm8d, .framer-CTfUG .framer-16svm8d { display: block; }\",\".framer-CTfUG.framer-1m3wbv7 { height: 150px; overflow: visible; position: relative; width: 1200px; }\",\".framer-CTfUG .framer-1qmvpwc { bottom: 0px; flex: none; height: 66px; left: 0px; position: absolute; right: 0px; }\",\".framer-CTfUG .framer-9eehfe { bottom: -1px; flex: none; height: 66px; left: 0px; overflow: hidden; position: absolute; right: 0px; }\",\".framer-CTfUG .framer-6cnbqj { flex: none; height: 31px; left: calc(50.00000000000002% - 91.79229736328125px / 2); overflow: visible; position: absolute; top: 21px; width: 92px; }\",\".framer-CTfUG .framer-17zpmpv { flex: none; height: 32px; left: 0px; position: absolute; top: calc(48.38709677419357% - 32px / 2); width: 92px; }\",\".framer-CTfUG .framer-fa5qd9 { flex: none; height: 34px; overflow: visible; position: absolute; right: 15px; top: calc(51.51515151515154% - 34px / 2); width: 163px; }\",\".framer-CTfUG .framer-9cyahv, .framer-CTfUG .framer-1z07py9 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-CTfUG .framer-rwbq6, .framer-CTfUG .framer-4r985w { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre-wrap; width: 142px; word-break: break-word; word-wrap: break-word; }\",\".framer-CTfUG .framer-16d9s2u { align-content: center; align-items: center; bottom: 25px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; left: 41px; overflow: visible; padding: 0px; position: absolute; width: min-content; }\",\".framer-CTfUG .framer-1i65l3h-container, .framer-CTfUG .framer-16lfk7v-container, .framer-CTfUG .framer-124sgmd-container, .framer-CTfUG .framer-k9tibd-container, .framer-CTfUG .framer-qgoa12-container, .framer-CTfUG .framer-f8pg7m-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-CTfUG .framer-1dvfo0d { align-content: center; align-items: center; bottom: 14px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: absolute; right: 43px; width: min-content; }\",\".framer-CTfUG .framer-6obpz8 { flex: none; height: 34px; overflow: visible; position: relative; text-decoration: none; width: 161px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-CTfUG .framer-thbv79 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-CTfUG .framer-1brsh0e { flex: none; height: 85px; overflow: hidden; position: relative; width: 100%; }\",\".framer-CTfUG .framer-15wgwzl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 0px; overflow: visible; padding: 0px 40px 0px 40px; position: absolute; right: 0px; top: 13px; }\",\".framer-CTfUG .framer-1egbq5b { flex: none; height: 33px; position: relative; white-space: pre-wrap; width: 532px; word-break: break-word; word-wrap: break-word; }\",\".framer-CTfUG .framer-nlpg9l-container { flex: none; height: 100%; position: relative; width: 452px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CTfUG .framer-16d9s2u, .framer-CTfUG .framer-1dvfo0d, .framer-CTfUG .framer-thbv79 { gap: 0px; } .framer-CTfUG .framer-16d9s2u > *, .framer-CTfUG .framer-1dvfo0d > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-CTfUG .framer-16d9s2u > :first-child, .framer-CTfUG .framer-1dvfo0d > :first-child { margin-left: 0px; } .framer-CTfUG .framer-16d9s2u > :last-child, .framer-CTfUG .framer-1dvfo0d > :last-child { margin-right: 0px; } .framer-CTfUG .framer-thbv79 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-CTfUG .framer-thbv79 > :first-child { margin-top: 0px; } .framer-CTfUG .framer-thbv79 > :last-child { margin-bottom: 0px; } }\",\".framer-CTfUG.framer-v-srxa7f.framer-1m3wbv7 { width: 810px; }\",\".framer-CTfUG.framer-v-srxa7f .framer-16d9s2u, .framer-CTfUG.framer-v-u6nedo .framer-16d9s2u { gap: 20px; left: 20px; }\",\".framer-CTfUG.framer-v-srxa7f .framer-1dvfo0d { gap: 20px; right: 20px; }\",\".framer-CTfUG.framer-v-srxa7f .framer-6obpz8 { width: 94px; }\",\".framer-CTfUG.framer-v-srxa7f .framer-4r985w, .framer-CTfUG.framer-v-u6nedo .framer-4r985w { white-space: pre; width: auto; }\",\".framer-CTfUG.framer-v-srxa7f .framer-1egbq5b { cursor: pointer; width: 301px; }\",\".framer-CTfUG.framer-v-srxa7f .framer-nlpg9l-container { width: 380px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CTfUG.framer-v-srxa7f .framer-16d9s2u, .framer-CTfUG.framer-v-srxa7f .framer-1dvfo0d { gap: 0px; } .framer-CTfUG.framer-v-srxa7f .framer-16d9s2u > *, .framer-CTfUG.framer-v-srxa7f .framer-1dvfo0d > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-CTfUG.framer-v-srxa7f .framer-16d9s2u > :first-child, .framer-CTfUG.framer-v-srxa7f .framer-1dvfo0d > :first-child { margin-left: 0px; } .framer-CTfUG.framer-v-srxa7f .framer-16d9s2u > :last-child, .framer-CTfUG.framer-v-srxa7f .framer-1dvfo0d > :last-child { margin-right: 0px; } }\",\".framer-CTfUG.framer-v-1n1au0w.framer-1m3wbv7 { height: 67px; width: 390px; }\",\".framer-CTfUG.framer-v-1n1au0w .framer-1qmvpwc { bottom: unset; top: 1px; z-index: 2; }\",\".framer-CTfUG.framer-v-1n1au0w .framer-6cnbqj { left: 33px; text-decoration: none; top: calc(50.00000000000002% - 30.99595069885254px / 2); }\",\".framer-CTfUG.framer-v-1n1au0w .framer-fa5qd9 { cursor: pointer; z-index: 2; }\",\".framer-CTfUG.framer-v-1n1au0w .framer-thbv79, .framer-CTfUG.framer-v-950y8e .framer-thbv79, .framer-CTfUG.framer-v-u6nedo .framer-thbv79 { min-height: 136px; }\",\".framer-CTfUG.framer-v-10s9p6b.framer-1m3wbv7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: auto; padding: 0px 0px 115px 0px; width: 390px; }\",\".framer-CTfUG.framer-v-10s9p6b .framer-1qmvpwc { bottom: unset; left: unset; order: 0; position: relative; right: unset; width: 100%; }\",\".framer-CTfUG.framer-v-10s9p6b .framer-9eehfe { bottom: 0px; height: unset; top: 0px; }\",\".framer-CTfUG.framer-v-10s9p6b .framer-6cnbqj { left: 33px; top: calc(50.00000000000002% - 30.99595069885254px / 2); }\",\".framer-CTfUG.framer-v-10s9p6b .framer-fa5qd9 { cursor: pointer; }\",\".framer-CTfUG.framer-v-10s9p6b .framer-16d9s2u { bottom: unset; flex-direction: column; gap: 25px; left: unset; order: 1; position: relative; }\",\".framer-CTfUG.framer-v-10s9p6b .framer-1i65l3h-container, .framer-CTfUG.framer-v-10s9p6b .framer-16lfk7v-container, .framer-CTfUG.framer-v-10s9p6b .framer-124sgmd-container, .framer-CTfUG.framer-v-10s9p6b .framer-k9tibd-container { width: 202px; }\",\".framer-CTfUG.framer-v-10s9p6b .framer-thbv79 { gap: 40px; left: unset; order: 3; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-CTfUG.framer-v-10s9p6b .framer-1brsh0e { height: 162px; order: 0; }\",\".framer-CTfUG.framer-v-10s9p6b .framer-15wgwzl { flex-direction: column; top: -8px; }\",\".framer-CTfUG.framer-v-10s9p6b .framer-1egbq5b { height: 46px; width: 319px; }\",\".framer-CTfUG.framer-v-10s9p6b .framer-nlpg9l-container { height: 119px; width: 320px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CTfUG.framer-v-10s9p6b.framer-1m3wbv7, .framer-CTfUG.framer-v-10s9p6b .framer-16d9s2u, .framer-CTfUG.framer-v-10s9p6b .framer-thbv79, .framer-CTfUG.framer-v-10s9p6b .framer-15wgwzl { gap: 0px; } .framer-CTfUG.framer-v-10s9p6b.framer-1m3wbv7 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-CTfUG.framer-v-10s9p6b.framer-1m3wbv7 > :first-child, .framer-CTfUG.framer-v-10s9p6b .framer-16d9s2u > :first-child, .framer-CTfUG.framer-v-10s9p6b .framer-thbv79 > :first-child { margin-top: 0px; } .framer-CTfUG.framer-v-10s9p6b.framer-1m3wbv7 > :last-child, .framer-CTfUG.framer-v-10s9p6b .framer-16d9s2u > :last-child, .framer-CTfUG.framer-v-10s9p6b .framer-thbv79 > :last-child { margin-bottom: 0px; } .framer-CTfUG.framer-v-10s9p6b .framer-16d9s2u > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-CTfUG.framer-v-10s9p6b .framer-thbv79 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-CTfUG.framer-v-10s9p6b .framer-15wgwzl > *, .framer-CTfUG.framer-v-10s9p6b .framer-15wgwzl > :first-child, .framer-CTfUG.framer-v-10s9p6b .framer-15wgwzl > :last-child { margin: 0px; } }\",\".framer-CTfUG.framer-v-950y8e.framer-1m3wbv7 { height: 66px; }\",\".framer-CTfUG.framer-v-950y8e .framer-1qmvpwc, .framer-CTfUG.framer-v-u6nedo .framer-1qmvpwc { bottom: unset; top: -1px; }\",\".framer-CTfUG.framer-v-950y8e .framer-1dvfo0d { bottom: unset; top: 52%; }\",\".framer-CTfUG.framer-v-u6nedo.framer-1m3wbv7 { height: 66px; width: 810px; }\",\".framer-CTfUG.framer-v-u6nedo .framer-1dvfo0d { bottom: unset; gap: 20px; right: 20px; top: 52%; width: 299px; }\",\".framer-CTfUG.framer-v-u6nedo .framer-6obpz8 { width: 91px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CTfUG.framer-v-u6nedo .framer-16d9s2u, .framer-CTfUG.framer-v-u6nedo .framer-1dvfo0d { gap: 0px; } .framer-CTfUG.framer-v-u6nedo .framer-16d9s2u > *, .framer-CTfUG.framer-v-u6nedo .framer-1dvfo0d > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-CTfUG.framer-v-u6nedo .framer-16d9s2u > :first-child, .framer-CTfUG.framer-v-u6nedo .framer-1dvfo0d > :first-child { margin-left: 0px; } .framer-CTfUG.framer-v-u6nedo .framer-16d9s2u > :last-child, .framer-CTfUG.framer-v-u6nedo .framer-1dvfo0d > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 150\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ts7gsEG13\":{\"layout\":[\"fixed\",\"fixed\"]},\"eF6T1u7og\":{\"layout\":[\"fixed\",\"fixed\"]},\"Uf9TSWtg0\":{\"layout\":[\"fixed\",\"auto\"]},\"jddMaChIw\":{\"layout\":[\"fixed\",\"fixed\"]},\"LomGQTv4U\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZqTMTghMx=withCSS(Component,css,\"framer-CTfUG\");export default FramerZqTMTghMx;FramerZqTMTghMx.displayName=\"Desktop Header\";FramerZqTMTghMx.defaultProps={height:150,width:1200};addPropertyControls(FramerZqTMTghMx,{variant:{options:[\"iwP6TC3zX\",\"Ts7gsEG13\",\"eF6T1u7og\",\"Uf9TSWtg0\",\"jddMaChIw\",\"LomGQTv4U\"],optionTitles:[\"Desktop Nav\",\"Tablet\",\"Phone\",\"Phone Open\",\"No Email\",\"Tablet No Email\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerZqTMTghMx,[{explicitInter:true,fonts:[{family:\"Test Martina Plantijn Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/DySxI2jyAGiN32zEvTjeqSXCYk.woff2\"},{family:\"Test Martina Plantijn Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/GAItHCDfcHKa1DkfSlRX2T548.woff2\"}]},...NavLinksFonts,...MailchimpFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZqTMTghMx\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"150\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ts7gsEG13\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eF6T1u7og\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Uf9TSWtg0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jddMaChIw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LomGQTv4U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZqTMTghMx.map"],
  "mappings": "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",
  "names": ["emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "_url_replace_match", "domain", "parameters", "safeURL", "isInternalURL", "href", "VERSION", "Input", "withCSS", "service", "redirectAs", "mailchimpURL", "loopsID", "loopsUserGroup", "formsparkID", "getwaitlistAPI", "convertkitAPI", "convertkitFormID", "input", "button", "font", "layout", "link", "gap", "style", "onSubmit", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isFocus", "setFocus", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "padding", "borderRadius", "borderObject", "focusObject", "shadowObject", "height", "fixedHeight", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "paddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "window", "validateForm", "te", "formControls", "handleChange", "event", "handleFocus", "handleBlur", "handleSubmit", "response", "error", "emailBody", "userGroupBody", "formBody", "data", "entries", "formData", "useAnimationControls", "focusStylesFrom", "focusStylesTo", "shadowStyles", "borderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "p", "motion", "containerStyles", "u", "defaultStyle", "Spinner", "getButtonShadow", "props", "noButtonStyles", "addPropertyControls", "ControlType", "shadows", "output", "shadow", "InputSites_js_1_12_default", "Mailchimp", "props", "p", "InputSites_js_1_12_default", "addPropertyControls", "ControlType", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "oinJ8NCdg", "jJoxGqSTp", "N8ULL_l9z", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap191b6w4", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "LayoutGroup", "Link", "u", "SVG", "RichText2", "css", "FramerkR8f9EORt", "withCSS", "kR8f9EORt_default", "addPropertyControls", "ControlType", "addFonts", "NavLinksFonts", "getFonts", "kR8f9EORt_default", "MailchimpFonts", "Mailchimp", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapglwfq7", "args", "onTapip8atn", "N8ULL_l9zip8atn", "onTapdd6bwq", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "Link", "SVG", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "css", "FramerZqTMTghMx", "withCSS", "ZqTMTghMx_default", "addPropertyControls", "ControlType", "addFonts"]
}
