{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/0ZSF8VJcL5AhXebKiUw3/nbsZGufHZBGrLw7CNirb/Mailchimp.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/OxH8fQM7jmVKtahwkLGk/ucz3b9fjHmXhLBLuMjRD/YdUpkp1Q2-0.js", "ssg:https://framerusercontent.com/modules/OxH8fQM7jmVKtahwkLGk/ucz3b9fjHmXhLBLuMjRD/YdUpkp1Q2.js", "ssg:https://framerusercontent.com/modules/kfgbEOSxs0Y9aaVe1dG6/tqKgS5WGxrqG8KgjumwX/YdUpkp1Q2.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useMemo,useState}from\"react\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles,usePadding,useRadius,paddingControl,borderRadiusControl,fontControls,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";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 ref;const[,domain,parameters]=(ref=url.replace(\"&amp;\",\"&\").match(mailchimpRegex))!==null&&ref!==void 0?ref:[null,null,null];return[domain,new URLSearchParams(parameters)];};/**\n * MAILCHIMP\n *\n * @framerIntrinsicWidth 430\n * @framerIntrinsicHeight 52\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight auto\n */ const Mailchimp=withCSS(function Mailchimp({url,input,button,layout,style,gap,onSubmit,...props}){const[email1,setEmail]=useState(input.value);const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[isSuccess,setSuccess]=useState(false);const isCanvas=useMemo(()=>{return RenderTarget.current()===RenderTarget.canvas;},[]);const{fontFamily,fontSize,fontWeight}=useFontControls(props);const borderRadius=useRadius(props);const paddingValue=usePadding(props);const validateForm=useCallback(email=>{if(email===\"\"||!validateEmail(email)){setError(true);return false;}return true;},[]);const handleChange=useCallback(event=>{setError(false);setEmail(event.target.value);},[]);const handleSubmit=useCallback(()=>{event.preventDefault();const[domain,parameters]=parseMailChimpUrl(url);if(!validateForm(email1)||!domain||!parameters){setLoading(false);}else{parameters.set(\"MERGE0\",email1) // MERGE0 being Mailchimp's email field name\n;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=>{setSuccess(true);onSubmit();}).catch(()=>{setLoading(false);});}},[url,email1]);const handleClick=useCallback(()=>{setLoading(true);},[]);return(/*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,\"--framer-mailchimp-placeholder-color\":input.placeholderColor},children:isSuccess?/*#__PURE__*/ _jsx(motion.div,{style:{height:\"60px\",width:\"60px\",background:button.fill,color:button.color,borderRadius:\"50%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},initial:{scale:0},animate:{scale:1},transition:{duration:0.3},children:/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"28\",height:\"28\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M 2 14 L 10 22 L 26 6\",fill:\"transparent\",strokeWidth:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\"})})}):/*#__PURE__*/ _jsxs(\"form\",{style:{width:\"100%\",display:\"grid\",gap,gridTemplateColumns:layout===\"vertical\"?\"1fr\":\"1fr max-content\",gridTemplateRows:layout===\"vertical\"?\"1fr 1fr\":\"1fr\"},onSubmit:handleSubmit,method:\"POST\",children:[/*#__PURE__*/ _jsx(\"div\",{style:{position:\"absolute\",visibility:\"hidden\"},\"aria-hidden\":\"true\",children:/*#__PURE__*/ _jsx(\"input\",{type:\"text\",name:\"b_1487cc549a49109c00fe60a80_93cd7be172\",tabIndex:-1})}),/*#__PURE__*/ _jsx(\"input\",{type:\"email\",name:\"email\",placeholder:input.placeholder,value:isCanvas?input.value:email1,className:\"framer-mailchimp-input\",onChange:handleChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:input.fill,color:input.color,boxShadow:`inset 0 0 0 1px ${isError?input.error:\"transparent\"}`}}),/*#__PURE__*/ _jsxs(\"div\",{style:{position:\"relative\"},children:[/*#__PURE__*/ _jsx(motion.input,{type:\"submit\",value:button.label,onClick:handleClick,style:{...defaultStyle,cursor:\"pointer\",borderRadius,padding:paddingValue,fontFamily,fontWeight:button.fontWeight,fontSize,background:button.fill,color:button.color,zIndex:1},transition:{type:\"ease\",duration:0.3},whileHover:{opacity:0.8}}),isLoading&&/*#__PURE__*/ _jsx(\"div\",{style:{borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",left:0,top:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/ _jsx(motion.div,{style:{height:16,width:16},initial:{rotate:0},animate:{rotate:360},transition:{duration:2,repeat:Infinity},children:/*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",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\"})]})})})]})]})}));},[\".framer-mailchimp-input::placeholder { color: var(--framer-mailchimp-placeholder-color) !important; }\",]);Mailchimp.defaultProps={fontSize:16,fontFamily:\"Inter\",fontWeight:400,padding:15,paddingTop:15,paddingBottom:15,paddingLeft:15,paddingRight:15,borderRadius:8,topLeftRadius:8,topRightRadius:8,bottomRightRadius:8,bottomLeftRadius:8,gap:15};addPropertyControls(Mailchimp,{url:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String,description:\"Create a [Mailchimp](https://mailchimp.com/) account and copy your embedded form URL. [Learn more\u2026](https://www.framer.com/sites/integrations/mailchimp/)\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"email@framer.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},value:{title:\"Value\",type:ControlType.String},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},error:{title:\"Error\",type:ControlType.Color,defaultValue:\"#EE4444\"}}},button:{title:\"Button\",type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String,defaultValue:\"Sign Up\"},fontWeight:{...fontControls.fontWeight,defaultValue:600},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"}}},...fontControls,fontSize:{title:\"Font Size\",type:ControlType.Number,displayStepper:true,defaultValue:16},...paddingControl,...borderRadiusControl,gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0},onSubmit:{type:ControlType.EventHandler}});const defaultStyle={WebkitAppearance:\"none\",width:\"100%\",lineHeight:\"1.4em\",outline:\"none\",border:\"none\"};export default Mailchimp;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Mailchimp\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"52\",\"framerIntrinsicWidth\":\"430\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Mailchimp.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",children:\"Schedule a free demo\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, rgb(232, 182, 121)))\"},children:\"Clear explanation (1-on-1)\"})});export const v2=\"https://tidycal.com/shoplinkr/demo\";export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",children:[\"Do you want to always be informed of our latest developments?\",/*#__PURE__*/_jsx(motion.br,{}),\"Sign up for the newsletter.\"]})});export const v4=\"CollectionOutline\";export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, rgb(25, 25, 25)))\"},children:\"Easily terminable\"})});export const v6=\"Collection Outline\";export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, rgb(25, 25, 25)))\"},children:\"Always up-to-date\"})});export const v8=\"https://shoplinkr.us14.list-manage.com/subscribe/post?u=1ebd835182268bce4a317a248&amp;id=9408158edd&amp;f_id=00039fe0f0\";export const v9=\"email@example.com\";export const v10=\"Sign up\";export const v11=\"Inter\";\nexport const __FramerMetadata__ = {\"exports\":{\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (be619af)\nimport*as localizedValues from\"./YdUpkp1Q2-0.js\";const valuesByLocaleId={qyiid22Iy: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 (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Mailchimp from\"https://framerusercontent.com/modules/0ZSF8VJcL5AhXebKiUw3/nbsZGufHZBGrLw7CNirb/Mailchimp.js\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/rQJeCcsGr1fSnWO0FT2G/Hero.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/yJzlRwDZgcnfhZq9MF39/55vbWN1If5dfwPAYRItr/stylesPresetHeading2.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/41RppuElShwbz0jGE8qs/RvWHRCBTAJv2uAKcAYNn/stylesPresetHeading3.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/exXkKUugfE7U8pfQUpBc/RtNDoOv8poewBrEARxPJ/stylesPresetParagraph.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/OxH8fQM7jmVKtahwkLGk/ucz3b9fjHmXhLBLuMjRD/YdUpkp1Q2.js\";const EmbedFonts=getFonts(Embed);const HeroFonts=getFonts(Hero);const MailchimpFonts=getFonts(Mailchimp);const cycleOrder=[\"o8Eo_sj6Z\",\"o6N4n9JFF\",\"B5dKcUa7X\",\"TWfwo6BEr\"];const serializationHash=\"framer-pYOZt\";const variantClassNames={B5dKcUa7X:\"framer-v-ell5ip\",o6N4n9JFF:\"framer-v-1giy0ep\",o8Eo_sj6Z:\"framer-v-4eyhn4\",TWfwo6BEr:\"framer-v-1vp0gh5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop small\":\"o6N4n9JFF\",Desktop:\"o8Eo_sj6Z\",Phone:\"TWfwo6BEr\",Tablet:\"B5dKcUa7X\"};const getProps=({height,id,image,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,RbTfDs0Qj:(_ref=image!==null&&image!==void 0?image:props.RbTfDs0Qj)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/y6Sleh8ndZiEPJ4KncqR3vBriM.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/y6Sleh8ndZiEPJ4KncqR3vBriM.png?scale-down-to=512 512w,https://framerusercontent.com/images/y6Sleh8ndZiEPJ4KncqR3vBriM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/y6Sleh8ndZiEPJ4KncqR3vBriM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/y6Sleh8ndZiEPJ4KncqR3vBriM.png 3456w\"},variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"o8Eo_sj6Z\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,RbTfDs0Qj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"o8Eo_sj6Z\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-4eyhn4\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"o8Eo_sj6Z\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({B5dKcUa7X:{\"data-framer-name\":\"Tablet\"},o6N4n9JFF:{\"data-framer-name\":\"Desktop small\"},TWfwo6BEr:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nybhyt\",\"data-framer-name\":\"Div\",layoutDependency:layoutDependency,layoutId:\"c8w0GluT7\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-atvsr2\",\"data-framer-name\":\"Div\",layoutDependency:layoutDependency,layoutId:\"ojaBG9jSw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",children:\"Gratis demo inplannen\"})}),className:\"framer-1k4wuo9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EHXWUngdA\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, rgb(232, 182, 121)))\"},children:\"Duidelijke uitleg (1-op-1)\"})}),className:\"framer-1m4vjgq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"w7tvsbsyP\",style:{\"--extracted-a0htzi\":\"var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, rgb(232, 182, 121))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jk1ums-container\",\"data-framer-name\":\"Tidycal\",layoutDependency:layoutDependency,layoutId:\"bxR4D5Uhl-container\",name:\"Tidycal\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"bxR4D5Uhl\",layoutId:\"bxR4D5Uhl\",name:\"Tidycal\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},type:\"url\",url:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"https://tidycal.com/shoplinkr/demo\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8ijt3s\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"XVHCjqr1P\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1936,intrinsicWidth:3456,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1500)-150-1350.8000000000002)/2+0+0)+0+1037.4+8.199999999999989),pixelHeight:1936,pixelWidth:3456,sizes:`max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px, 1640px) - 40px) / 2, 1px)`,...toResponsiveImage(RbTfDs0Qj),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-fzt4om\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"v9ACCgf9a\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(25, 25, 25, 0.1)\"},...addPropertyOverrides({B5dKcUa7X:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1936,intrinsicWidth:3456,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1654)-150-1517.8000000000002)/2+0+0)+0+1037.4+91.69999999999999),pixelHeight:1936,pixelWidth:3456,sizes:`max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px, 1640px) - 40px) / 2, 1px)`,...toResponsiveImage(RbTfDs0Qj),...{positionX:\"center\",positionY:\"center\"}}},o6N4n9JFF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1936,intrinsicWidth:3456,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1552)-150-1350.8000000000002)/2+0+0)+0+1037.4+8.199999999999989),pixelHeight:1936,pixelWidth:3456,sizes:`max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px, 1640px) - 40px) / 2, 1px)`,...toResponsiveImage(RbTfDs0Qj),...{positionX:\"center\",positionY:\"center\"}}},TWfwo6BEr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1936,intrinsicWidth:3456,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||2070)-0-2070)/2+0+0)+40+1172.6000000000001+0+0),pixelHeight:1936,pixelWidth:3456,sizes:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1640px)`,...toResponsiveImage(RbTfDs0Qj),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ei5w82\",layoutDependency:layoutDependency,layoutId:\"E6WtWH9YL\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-143j72t\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"JPnekqkVM\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",children:[\"Wil je altijd op de hoogte zijn van onze laatste \",/*#__PURE__*/_jsxs(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1qn201a, var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, rgb(232, 182, 121)))\"},children:[\"ontwikkelingen?\",/*#__PURE__*/_jsx(motion.br,{})]}),\"Meld je aan voor de nieuwsbrief.\"]})}),className:\"framer-ol3kc4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LBpwbRMXI\",style:{\"--extracted-1qn201a\":\"var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, rgb(232, 182, 121))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nsh5uu\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"rDzIgIK_h\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-117uxhn\",layoutDependency:layoutDependency,layoutId:\"rHqwix0s7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ovrplb-container\",layoutDependency:layoutDependency,layoutId:\"KcbawoFg3-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, rgb(232, 182, 121))\",height:\"100%\",iconSearch:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:\"CollectionOutline\",iconSelection:\"CheckCircleOutline\",id:\"KcbawoFg3\",layoutId:\"KcbawoFg3\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, rgb(25, 25, 25)))\"},children:\"Makkelijk opzegbaar\"})}),className:\"framer-pdwz93\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jU4ya3rIQ\",style:{\"--extracted-r6o4lv\":\"var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, rgb(25, 25, 25))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15wcnbc\",layoutDependency:layoutDependency,layoutId:\"thPpc5QNM\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-149d4ua-container\",layoutDependency:layoutDependency,layoutId:\"AIkFCa3NT-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, rgb(232, 182, 121))\",height:\"100%\",iconSearch:(_getLocalizedValue6=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:\"CollectionOutline\",iconSelection:\"CheckCircleOutline\",id:\"AIkFCa3NT\",layoutId:\"AIkFCa3NT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue7=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, rgb(25, 25, 25)))\"},children:\"Altijd up-to-date\"})}),className:\"framer-knzxks\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"B1iYwvbht\",style:{\"--extracted-r6o4lv\":\"var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, rgb(25, 25, 25))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1om167n-container\",layoutDependency:layoutDependency,layoutId:\"Uqn3fB5kl-container\",children:/*#__PURE__*/_jsx(Mailchimp,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, rgb(232, 182, 121))\",fontWeight:600,label:(_getLocalizedValue8=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:\"Aanmelden\"},font:false,fontFamily:(_getLocalizedValue9=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:\"Inter\",fontSize:16,fontWeight:400,gap:15,height:\"100%\",id:\"Uqn3fB5kl\",input:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(235, 235, 235)\",placeholder:(_getLocalizedValue10=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:\"email@example.com\",placeholderColor:\"rgba(0, 0, 0, 0.3)\",value:\"\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"Uqn3fB5kl\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{width:\"100%\"},topLeftRadius:8,topRightRadius:8,url:(_getLocalizedValue11=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:\"https://shoplinkr.us14.list-manage.com/subscribe/post?u=1ebd835182268bce4a317a248&amp;id=9408158edd&amp;f_id=00039fe0f0\",width:\"100%\",...addPropertyOverrides({TWfwo6BEr:{layout:\"vertical\"}},baseVariant,gestureVariant)})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pYOZt.framer-1lbedd7, .framer-pYOZt .framer-1lbedd7 { display: block; }\",\".framer-pYOZt.framer-4eyhn4 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 100px 0px; position: relative; width: 1920px; }\",\".framer-pYOZt .framer-nybhyt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-pYOZt .framer-atvsr2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pYOZt .framer-1k4wuo9, .framer-pYOZt .framer-1m4vjgq, .framer-pYOZt .framer-ol3kc4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pYOZt .framer-jk1ums-container { flex: none; height: 875px; max-width: 1240px; position: relative; width: 100%; }\",\".framer-pYOZt .framer-8ijt3s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1640px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pYOZt .framer-fzt4om { aspect-ratio: 2.558922558922559 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 313px); overflow: visible; position: relative; width: 1px; }\",\".framer-pYOZt .framer-ei5w82 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-pYOZt .framer-143j72t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pYOZt .framer-nsh5uu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-pYOZt .framer-117uxhn, .framer-pYOZt .framer-15wcnbc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-pYOZt .framer-1ovrplb-container, .framer-pYOZt .framer-149d4ua-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-pYOZt .framer-pdwz93, .framer-pYOZt .framer-knzxks { flex: 1 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-pYOZt .framer-1om167n-container { flex: none; height: auto; position: relative; width: 430px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pYOZt.framer-4eyhn4, .framer-pYOZt .framer-nybhyt, .framer-pYOZt .framer-atvsr2, .framer-pYOZt .framer-8ijt3s, .framer-pYOZt .framer-ei5w82, .framer-pYOZt .framer-143j72t, .framer-pYOZt .framer-nsh5uu, .framer-pYOZt .framer-117uxhn, .framer-pYOZt .framer-15wcnbc { gap: 0px; } .framer-pYOZt.framer-4eyhn4 > *, .framer-pYOZt .framer-atvsr2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-pYOZt.framer-4eyhn4 > :first-child, .framer-pYOZt .framer-nybhyt > :first-child, .framer-pYOZt .framer-atvsr2 > :first-child, .framer-pYOZt .framer-ei5w82 > :first-child, .framer-pYOZt .framer-143j72t > :first-child { margin-top: 0px; } .framer-pYOZt.framer-4eyhn4 > :last-child, .framer-pYOZt .framer-nybhyt > :last-child, .framer-pYOZt .framer-atvsr2 > :last-child, .framer-pYOZt .framer-ei5w82 > :last-child, .framer-pYOZt .framer-143j72t > :last-child { margin-bottom: 0px; } .framer-pYOZt .framer-nybhyt > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-pYOZt .framer-8ijt3s > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-pYOZt .framer-8ijt3s > :first-child, .framer-pYOZt .framer-nsh5uu > :first-child, .framer-pYOZt .framer-117uxhn > :first-child, .framer-pYOZt .framer-15wcnbc > :first-child { margin-left: 0px; } .framer-pYOZt .framer-8ijt3s > :last-child, .framer-pYOZt .framer-nsh5uu > :last-child, .framer-pYOZt .framer-117uxhn > :last-child, .framer-pYOZt .framer-15wcnbc > :last-child { margin-right: 0px; } .framer-pYOZt .framer-ei5w82 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-pYOZt .framer-143j72t > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-pYOZt .framer-nsh5uu > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-pYOZt .framer-117uxhn > *, .framer-pYOZt .framer-15wcnbc > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\".framer-pYOZt.framer-v-1giy0ep.framer-4eyhn4 { width: 1200px; }\",\".framer-pYOZt.framer-v-1giy0ep .framer-fzt4om { height: var(--framer-aspect-ratio-supported, 211px); }\",\".framer-pYOZt.framer-v-ell5ip.framer-4eyhn4 { width: 810px; }\",\".framer-pYOZt.framer-v-ell5ip .framer-nybhyt { order: 0; }\",\".framer-pYOZt.framer-v-ell5ip .framer-fzt4om { height: var(--framer-aspect-ratio-supported, 135px); }\",\".framer-pYOZt.framer-v-ell5ip .framer-nsh5uu, .framer-pYOZt.framer-v-1vp0gh5 .framer-8ijt3s, .framer-pYOZt.framer-v-1vp0gh5 .framer-nsh5uu { flex-direction: column; }\",\".framer-pYOZt.framer-v-ell5ip .framer-117uxhn, .framer-pYOZt.framer-v-ell5ip .framer-15wcnbc, .framer-pYOZt.framer-v-1vp0gh5 .framer-ei5w82, .framer-pYOZt.framer-v-1vp0gh5 .framer-117uxhn, .framer-pYOZt.framer-v-1vp0gh5 .framer-15wcnbc { flex: none; width: 100%; }\",\".framer-pYOZt.framer-v-ell5ip .framer-1om167n-container, .framer-pYOZt.framer-v-1vp0gh5 .framer-1om167n-container { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pYOZt.framer-v-ell5ip .framer-nsh5uu { gap: 0px; } .framer-pYOZt.framer-v-ell5ip .framer-nsh5uu > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-pYOZt.framer-v-ell5ip .framer-nsh5uu > :first-child { margin-top: 0px; } .framer-pYOZt.framer-v-ell5ip .framer-nsh5uu > :last-child { margin-bottom: 0px; } }\",\".framer-pYOZt.framer-v-1vp0gh5.framer-4eyhn4 { padding: 0px; width: 390px; }\",\".framer-pYOZt.framer-v-1vp0gh5 .framer-nybhyt { height: 2070px; padding: 40px 20px 40px 20px; }\",\".framer-pYOZt.framer-v-1vp0gh5 .framer-jk1ums-container { flex: 1 0 0px; height: 1px; }\",\".framer-pYOZt.framer-v-1vp0gh5 .framer-fzt4om { flex: none; height: var(--framer-aspect-ratio-supported, 137px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pYOZt.framer-v-1vp0gh5 .framer-8ijt3s, .framer-pYOZt.framer-v-1vp0gh5 .framer-nsh5uu { gap: 0px; } .framer-pYOZt.framer-v-1vp0gh5 .framer-8ijt3s > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-pYOZt.framer-v-1vp0gh5 .framer-8ijt3s > :first-child, .framer-pYOZt.framer-v-1vp0gh5 .framer-nsh5uu > :first-child { margin-top: 0px; } .framer-pYOZt.framer-v-1vp0gh5 .framer-8ijt3s > :last-child, .framer-pYOZt.framer-v-1vp0gh5 .framer-nsh5uu > :last-child { margin-bottom: 0px; } .framer-pYOZt.framer-v-1vp0gh5 .framer-nsh5uu > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1500\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"o6N4n9JFF\":{\"layout\":[\"fixed\",\"auto\"]},\"B5dKcUa7X\":{\"layout\":[\"fixed\",\"auto\"]},\"TWfwo6BEr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"RbTfDs0Qj\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYdUpkp1Q2=withCSS(Component,css,\"framer-pYOZt\");export default FramerYdUpkp1Q2;FramerYdUpkp1Q2.displayName=\"Page end\";FramerYdUpkp1Q2.defaultProps={height:1500,width:1920};addPropertyControls(FramerYdUpkp1Q2,{variant:{options:[\"o8Eo_sj6Z\",\"o6N4n9JFF\",\"B5dKcUa7X\",\"TWfwo6BEr\"],optionTitles:[\"Desktop\",\"Desktop small\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},RbTfDs0Qj:{__defaultAssetReference:\"data:framer/asset-reference,y6Sleh8ndZiEPJ4KncqR3vBriM.png?originalFilename=Dashboard+small.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerYdUpkp1Q2,[{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\"}]},...EmbedFonts,...HeroFonts,...MailchimpFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYdUpkp1Q2\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1920\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"o6N4n9JFF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"B5dKcUa7X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TWfwo6BEr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"RbTfDs0Qj\\\":\\\"image\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"1500\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "ref", "domain", "parameters", "Mailchimp", "withCSS", "input", "button", "layout", "style", "gap", "onSubmit", "props", "email1", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isSuccess", "setSuccess", "isCanvas", "se", "RenderTarget", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "validateForm", "te", "handleChange", "event", "handleSubmit", "response", "handleClick", "p", "motion", "containerStyles", "u", "defaultStyle", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "Mailchimp_default", "Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "YdUpkp1Q2_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "u", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "__FramerMetadata__", "valuesByLocaleId", "YdUpkp1Q2_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "EmbedFonts", "getFonts", "Embed", "HeroFonts", "Icon", "MailchimpFonts", "Mailchimp_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "RbTfDs0Qj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "LayoutGroup", "cx", "u", "RichText2", "getLocalizedValue", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FramerYdUpkp1Q2", "withCSS", "YdUpkp1Q2_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
