{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/Ez7z4Z3hPxkhLfX1FhvN/Input.js", "ssg:https://framerusercontent.com/modules/5SFFOCnSelf5fXTKoSXw/IH1LEPvqOHRppoVTfg75/ND6XVLnoy.js", "ssg:https://framerusercontent.com/modules/46qtrRtq0Nd1QwinFQuB/Ein3GUA80G62w6UxFY7e/pzgAh97sX.js", "ssg:https://framerusercontent.com/modules/oa3Y7WQCfewlmUaVLpsA/xX9elAKmYKwsyr56BcvB/xZndidUCt.js", "ssg:https://framerusercontent.com/modules/wzcjvksrAIgaPfjQjqKD/Nlaq2YRCibBMSoT2304j/YckFIlg3V.js", "ssg:https://framerusercontent.com/modules/gwZHwmdBTq5aINxSMepg/NTjHeaZbMdjvrtdufJlE/FIQUCdJNE.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,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://submit-form.com/${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\");});}},[mailchimpURL,formsparkID,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}),/*#__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\"],optionTitles:[\"Loops\",\"FormSpark\",\"MailChimp\",\"Get Waitlist\"],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\"},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\":{\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"300\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Lexend-800\"]);export const fonts=[{family:\"Lexend\",moduleAsset:{localModuleIdentifier:\"local-module:css/ND6XVLnoy:default\",url:\"https://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LBte6KuGEo.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LBte6KuGEo.ttf\",weight:\"800\"}];export const css=['.framer-1UVKo .framer-styles-preset-p4sgmx:not(.rich-text-wrapper), .framer-1UVKo .framer-styles-preset-p4sgmx.rich-text-wrapper p { --framer-font-family: \"Lexend\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-weight: 800; --framer-letter-spacing: 1px; --framer-line-height: 2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-transform: uppercase; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-1UVKo .framer-styles-preset-p4sgmx:not(.rich-text-wrapper), .framer-1UVKo .framer-styles-preset-p4sgmx.rich-text-wrapper p { --framer-font-family: \"Lexend\", sans-serif; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-weight: 800; --framer-letter-spacing: 1px; --framer-line-height: 2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-transform: uppercase; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-1UVKo .framer-styles-preset-p4sgmx:not(.rich-text-wrapper), .framer-1UVKo .framer-styles-preset-p4sgmx.rich-text-wrapper p { --framer-font-family: \"Lexend\", sans-serif; --framer-font-size: 10px; --framer-font-style: normal; --framer-font-weight: 800; --framer-letter-spacing: 1px; --framer-line-height: 2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-transform: uppercase; } }'];export const className=\"framer-1UVKo\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Lexend-800\"]);export const fonts=[{family:\"Lexend\",moduleAsset:{localModuleIdentifier:\"local-module:css/pzgAh97sX:default\",url:\"https://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LBte6KuGEo.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LBte6KuGEo.ttf\",weight:\"800\"}];export const css=['.framer-QT4cx .framer-styles-preset-1b74ta:not(.rich-text-wrapper), .framer-QT4cx .framer-styles-preset-1b74ta.rich-text-wrapper p { --framer-font-family: \"Lexend\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 800; --framer-letter-spacing: 1px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-transform: uppercase; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-QT4cx .framer-styles-preset-1b74ta:not(.rich-text-wrapper), .framer-QT4cx .framer-styles-preset-1b74ta.rich-text-wrapper p { --framer-font-family: \"Lexend\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 800; --framer-letter-spacing: 1px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, #8800ff); --framer-text-decoration: none; --framer-text-transform: uppercase; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-QT4cx .framer-styles-preset-1b74ta:not(.rich-text-wrapper), .framer-QT4cx .framer-styles-preset-1b74ta.rich-text-wrapper p { --framer-font-family: \"Lexend\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 800; --framer-letter-spacing: 1px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, #8800ff); --framer-text-decoration: none; --framer-text-transform: uppercase; } }'];export const className=\"framer-QT4cx\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Lexend-500\"]);export const fonts=[{family:\"Lexend\",moduleAsset:{localModuleIdentifier:\"local-module:css/xZndidUCt:default\",url:\"https://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LBte6KuGEo.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LBte6KuGEo.ttf\",weight:\"500\"}];export const css=['.framer-DWzCi .framer-styles-preset-21ogod:not(.rich-text-wrapper), .framer-DWzCi .framer-styles-preset-21ogod.rich-text-wrapper p { --framer-font-family: \"Lexend\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 1.7em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, #666666); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-DWzCi .framer-styles-preset-21ogod:not(.rich-text-wrapper), .framer-DWzCi .framer-styles-preset-21ogod.rich-text-wrapper p { --framer-font-family: \"Lexend\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 1.7em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, #666666); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-DWzCi .framer-styles-preset-21ogod:not(.rich-text-wrapper), .framer-DWzCi .framer-styles-preset-21ogod.rich-text-wrapper p { --framer-font-family: \"Lexend\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 1.7em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, #666666); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-DWzCi\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Lexend-800\"]);export const fonts=[{family:\"Lexend\",moduleAsset:{localModuleIdentifier:\"local-module:css/YckFIlg3V:default\",url:\"https://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LBte6KuGEo.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LBte6KuGEo.ttf\",weight:\"800\"}];export const css=['.framer-jLgJI .framer-styles-preset-12lj5ox:not(.rich-text-wrapper), .framer-jLgJI .framer-styles-preset-12lj5ox.rich-text-wrapper h3 { --framer-font-family: \"Lexend\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 800; --framer-letter-spacing: -0.5px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-jLgJI\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c2f6d5d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,RichText,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/gID8iITtmoVHIbHzV0Nr/ZBQFxe1SrNy5kN9qSRcL/i59KN99_1.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/5SFFOCnSelf5fXTKoSXw/IH1LEPvqOHRppoVTfg75/ND6XVLnoy.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/46qtrRtq0Nd1QwinFQuB/Ein3GUA80G62w6UxFY7e/pzgAh97sX.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/a7tlRkmO0q47xj5oD8jK/My2OdROL8s1QmINaI6gK/QOCBLMAjr.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/oa3Y7WQCfewlmUaVLpsA/xX9elAKmYKwsyr56BcvB/xZndidUCt.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/wzcjvksrAIgaPfjQjqKD/Nlaq2YRCibBMSoT2304j/YckFIlg3V.js\";const enabledGestures={lap02oFf4:{hover:true},Nsz6JbBfs:{hover:true},T_YCCfZlJ:{hover:true},ZYZfCMMxO:{hover:true}};const cycleOrder=[\"lap02oFf4\",\"Nsz6JbBfs\",\"T_YCCfZlJ\",\"ZYZfCMMxO\"];const variantClassNames={lap02oFf4:\"framer-v-9anjsm\",Nsz6JbBfs:\"framer-v-1yuv116\",T_YCCfZlJ:\"framer-v-5mv7sj\",ZYZfCMMxO:\"framer-v-1x1smmu\"};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 humanReadableVariantMap={Default:\"lap02oFf4\",Featured:\"ZYZfCMMxO\",Fill:\"Nsz6JbBfs\",Small:\"T_YCCfZlJ\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],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 Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"lap02oFf4\",category:LFXgxuHG4=true,category1:CPMabOrfU=\"Resources\",color:cWI4CB6po='var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252)) /* {\"name\":\"Purple\"} */',image:Yo7UXCjeZ={src:new URL(\"assets/512/eDJ9tldPOOleIuY0fmuLMEtdQ.jpg\",\"https://framerusercontent.com/modules/gwZHwmdBTq5aINxSMepg/NTjHeaZbMdjvrtdufJlE/FIQUCdJNE.js\").href,srcSet:`${new URL(\"assets/512/eDJ9tldPOOleIuY0fmuLMEtdQ.jpg\",\"https://framerusercontent.com/modules/gwZHwmdBTq5aINxSMepg/NTjHeaZbMdjvrtdufJlE/FIQUCdJNE.js\").href} 512w, ${new URL(\"assets/1024/eDJ9tldPOOleIuY0fmuLMEtdQ.jpg\",\"https://framerusercontent.com/modules/gwZHwmdBTq5aINxSMepg/NTjHeaZbMdjvrtdufJlE/FIQUCdJNE.js\").href} 1024w, ${new URL(\"assets/2048/eDJ9tldPOOleIuY0fmuLMEtdQ.jpg\",\"https://framerusercontent.com/modules/gwZHwmdBTq5aINxSMepg/NTjHeaZbMdjvrtdufJlE/FIQUCdJNE.js\").href} 2048w, ${new URL(\"assets/eDJ9tldPOOleIuY0fmuLMEtdQ.jpg\",\"https://framerusercontent.com/modules/gwZHwmdBTq5aINxSMepg/NTjHeaZbMdjvrtdufJlE/FIQUCdJNE.js\").href} 3840w`},title:HDbfmLJN9=\"Building Blocks for Your Website\",description:mMXkBrQjq=false,description1:TS9IF2Dr6=\"Build a unique experience by mixing and matching components.\",date:mJ5LrnBOl=\"August 10, 2022\",link:iTLspfP7r,date1:fl_dKZrsX=true,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"lap02oFf4\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const isDisplayed=()=>{if(gestureVariant===\"ZYZfCMMxO-hover\")return true;if(baseVariant===\"ZYZfCMMxO\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"ZYZfCMMxO-hover\")return false;if(baseVariant===\"ZYZfCMMxO\")return false;return true;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-X9C6U\",sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Link,{href:iTLspfP7r,openInNewTab:true,...addPropertyOverrides({Nsz6JbBfs:{openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsxs(motion.a,{...restProps,className:`${cx(\"framer-9anjsm\",className)} framer-18ubn9u`,\"data-border\":true,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"lap02oFf4\",ref:ref,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.08)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 10px 30px -20px rgba(0, 0, 0, 0.25)\",...style},transition:transition,...addPropertyOverrides({\"lap02oFf4-hover\":{\"data-framer-name\":undefined},\"Nsz6JbBfs-hover\":{\"data-framer-name\":undefined},\"T_YCCfZlJ-hover\":{\"data-framer-name\":undefined},\"ZYZfCMMxO-hover\":{\"data-framer-name\":undefined},Nsz6JbBfs:{\"data-framer-name\":\"Fill\"},T_YCCfZlJ:{\"data-framer-name\":\"Small\"},ZYZfCMMxO:{\"data-framer-name\":\"Featured\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,pixelHeight:2160,pixelWidth:3840,sizes:\"410px\",...toResponsiveImage(Yo7UXCjeZ)},className:\"framer-1xfffwv\",layoutDependency:layoutDependency,layoutId:\"EDfAgXZ2u\",style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,opacity:1},transition:transition,variants:{\"lap02oFf4-hover\":{opacity:.5},\"Nsz6JbBfs-hover\":{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,opacity:.5},\"T_YCCfZlJ-hover\":{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,opacity:.5},\"ZYZfCMMxO-hover\":{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},Nsz6JbBfs:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},T_YCCfZlJ:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},ZYZfCMMxO:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({Nsz6JbBfs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,pixelHeight:2160,pixelWidth:3840,sizes:\"490px\",...toResponsiveImage(Yo7UXCjeZ)}},T_YCCfZlJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,pixelHeight:2160,pixelWidth:3840,sizes:\"150px\",...toResponsiveImage(Yo7UXCjeZ)}},ZYZfCMMxO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,pixelHeight:2160,pixelWidth:3840,sizes:\"505px\",...toResponsiveImage(Yo7UXCjeZ)}}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1pkwk6i\",layoutDependency:layoutDependency,layoutId:\"XlwLryRot\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%)\"},transition:transition,variants:{\"ZYZfCMMxO-hover\":{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%)\"}},children:/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-c5m28v\",layoutDependency:layoutDependency,layoutId:\"nyupRWZla\",transition:transition,children:[LFXgxuHG4&&/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Resources\"})}),className:\"framer-5c6tws\",layoutDependency:layoutDependency,layoutId:\"uAasN83l8\",style:{\"--extracted-r6o4lv\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},text:CPMabOrfU,transition:transition,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi)\"},children:\"Building Blocks for Your Website\"})}),className:\"framer-1amxh5m\",layoutDependency:layoutDependency,layoutId:\"OU4Kwj29R\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:HDbfmLJN9,transition:transition,verticalAlignment:\"top\",withExternalLayout:true}),mMXkBrQjq&&/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Build a unique experience by mixing and matching components.\"})}),className:\"framer-odkua4\",layoutDependency:layoutDependency,layoutId:\"x8rslCk7p\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:.8},text:TS9IF2Dr6,transition:transition,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"August 10, 2022\"})}),className:\"framer-1for1zv\",layoutDependency:layoutDependency,layoutId:\"C74A98HHo\",style:{\"--extracted-r6o4lv\":\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:mJ5LrnBOl,transition:transition,verticalAlignment:\"top\",withExternalLayout:true})]})})}),isDisplayed1()&&/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-1m19kp\",layoutDependency:layoutDependency,layoutId:\"vNrXRKKXX\",transition:transition,children:[LFXgxuHG4&&/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Resources\"})}),className:\"framer-15edjrp\",layoutDependency:layoutDependency,layoutId:\"gprjkWS1Q\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-cWI4CB6po-FIQUCdJNE)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-cWI4CB6po-FIQUCdJNE\":cWI4CB6po},text:CPMabOrfU,transition:transition,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({T_YCCfZlJ:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-p4sgmx\",\"data-styles-preset\":\"ND6XVLnoy\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Resources\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Building Blocks for Your Website\"})}),className:\"framer-f8w14h\",layoutDependency:layoutDependency,layoutId:\"BaWgUcDLr\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:HDbfmLJN9,transition:transition,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({T_YCCfZlJ:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h3,{className:\"framer-styles-preset-113y3p\",\"data-styles-preset\":\"QOCBLMAjr\",children:\"Building Blocks for Your Website\"})})}},baseVariant,gestureVariant)}),mMXkBrQjq&&/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Build a unique experience by mixing and matching components.\"})}),className:\"framer-1138q5t\",layoutDependency:layoutDependency,layoutId:\"W4j8FaPJG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:TS9IF2Dr6,transition:transition,verticalAlignment:\"top\",withExternalLayout:true}),fl_dKZrsX&&/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"August 10, 2022\"})}),className:\"framer-teomgx\",layoutDependency:layoutDependency,layoutId:\"BbKzaNR_9\",style:{\"--extracted-r6o4lv\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:mJ5LrnBOl,transition:transition,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({T_YCCfZlJ:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-qemwmo\",\"data-styles-preset\":\"i59KN99_1\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"August 10, 2022\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=['.framer-X9C6U [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-X9C6U .framer-18ubn9u { display: block; }\",\".framer-X9C6U .framer-9anjsm { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; text-decoration: none; width: 490px; will-change: transform; }\",\".framer-X9C6U .framer-1xfffwv { aspect-ratio: 1.4695340501792116 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 136px); overflow: hidden; position: relative; width: 100%; will-change: transform; }\",\".framer-X9C6U .framer-1pkwk6i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; right: 0px; top: calc(49.82078853046597% - 100% / 2); width: 100%; }\",\".framer-X9C6U .framer-c5m28v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-X9C6U .framer-5c6tws, .framer-X9C6U .framer-1for1zv, .framer-X9C6U .framer-15edjrp, .framer-X9C6U .framer-teomgx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-X9C6U .framer-1amxh5m, .framer-X9C6U .framer-odkua4, .framer-X9C6U .framer-f8w14h, .framer-X9C6U .framer-1138q5t { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-X9C6U .framer-1m19kp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-X9C6U .framer-v-9anjsm .framer-9anjsm, .framer-X9C6U .framer-v-1yuv116 .framer-9anjsm, .framer-X9C6U .framer-v-1x1smmu .framer-9anjsm, .framer-X9C6U .framer-v-5mv7sj .framer-9anjsm { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-X9C6U .framer-9anjsm, .framer-X9C6U .framer-1pkwk6i, .framer-X9C6U .framer-c5m28v, .framer-X9C6U .framer-1m19kp { gap: 0px; } .framer-X9C6U .framer-9anjsm > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-X9C6U .framer-9anjsm > :first-child, .framer-X9C6U .framer-1pkwk6i > :first-child, .framer-X9C6U .framer-c5m28v > :first-child, .framer-X9C6U .framer-1m19kp > :first-child { margin-top: 0px; } .framer-X9C6U .framer-9anjsm > :last-child, .framer-X9C6U .framer-1pkwk6i > :last-child, .framer-X9C6U .framer-c5m28v > :last-child, .framer-X9C6U .framer-1m19kp > :last-child { margin-bottom: 0px; } .framer-X9C6U .framer-1pkwk6i > *, .framer-X9C6U .framer-c5m28v > *, .framer-X9C6U .framer-1m19kp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-X9C6U.framer-v-1yuv116 .framer-9anjsm { gap: 0px; padding: 0px 0px 0px 0px; }\",\".framer-X9C6U.framer-v-1yuv116 .framer-1m19kp { padding: 40px 40px 40px 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-X9C6U.framer-v-1yuv116 .framer-9anjsm { gap: 0px; } .framer-X9C6U.framer-v-1yuv116 .framer-9anjsm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-X9C6U.framer-v-1yuv116 .framer-9anjsm > :first-child { margin-top: 0px; } .framer-X9C6U.framer-v-1yuv116 .framer-9anjsm > :last-child { margin-bottom: 0px; } }\",\".framer-X9C6U.framer-v-5mv7sj .framer-9anjsm { align-content: center; align-items: center; flex-direction: row; gap: 0px; padding: 0px 0px 0px 0px; width: 503px; }\",\".framer-X9C6U.framer-v-5mv7sj .framer-1xfffwv { align-self: stretch; aspect-ratio: unset; flex: 0.8 0 0px; height: auto; max-width: 150px; width: 1px; }\",\".framer-X9C6U.framer-v-5mv7sj .framer-1m19kp { flex: 1 0 0px; padding: 20px 20px 20px 20px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-X9C6U.framer-v-5mv7sj .framer-9anjsm { gap: 0px; } .framer-X9C6U.framer-v-5mv7sj .framer-9anjsm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-X9C6U.framer-v-5mv7sj .framer-9anjsm > :first-child { margin-left: 0px; } .framer-X9C6U.framer-v-5mv7sj .framer-9anjsm > :last-child { margin-right: 0px; } }\",\".framer-X9C6U.framer-v-1x1smmu .framer-9anjsm { gap: 0px; padding: 0px 0px 0px 0px; width: 505px; }\",\".framer-X9C6U.framer-v-1x1smmu .framer-1xfffwv { aspect-ratio: unset; height: 344px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-X9C6U.framer-v-1x1smmu .framer-9anjsm { gap: 0px; } .framer-X9C6U.framer-v-1x1smmu .framer-9anjsm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-X9C6U.framer-v-1x1smmu .framer-9anjsm > :first-child { margin-top: 0px; } .framer-X9C6U.framer-v-1x1smmu .framer-9anjsm > :last-child { margin-bottom: 0px; } }\",\".framer-X9C6U.framer-v-1x1smmu.hover .framer-1xfffwv, .framer-X9C6U.framer-v-5mv7sj.hover .framer-1xfffwv { aspect-ratio: unset; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 507\n * @framerIntrinsicWidth 490\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Nsz6JbBfs\":{\"layout\":[\"fixed\",\"auto\"]},\"T_YCCfZlJ\":{\"layout\":[\"fixed\",\"auto\"]},\"ZYZfCMMxO\":{\"layout\":[\"fixed\",\"auto\"]},\"lVI2gfXTo\":{\"layout\":[\"fixed\",\"auto\"]},\"g9Xik24lr\":{\"layout\":[\"fixed\",\"auto\"]},\"XT_JS2Xzi\":{\"layout\":[\"fixed\",\"auto\"]},\"uSunmDssE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"LFXgxuHG4\":\"category\",\"CPMabOrfU\":\"category1\",\"cWI4CB6po\":\"color\",\"Yo7UXCjeZ\":\"image\",\"HDbfmLJN9\":\"title\",\"mMXkBrQjq\":\"description\",\"TS9IF2Dr6\":\"description1\",\"mJ5LrnBOl\":\"date\",\"iTLspfP7r\":\"link\",\"fl_dKZrsX\":\"date1\"}\n */ const FramerFIQUCdJNE=withCSS(Component,css,\"framer-X9C6U\");export default FramerFIQUCdJNE;FramerFIQUCdJNE.displayName=\"Blog Card\";FramerFIQUCdJNE.defaultProps={height:507,width:490};addPropertyControls(FramerFIQUCdJNE,{variant:{options:[\"lap02oFf4\",\"Nsz6JbBfs\",\"T_YCCfZlJ\",\"ZYZfCMMxO\"],optionTitles:[\"Default\",\"Fill\",\"Small\",\"Featured\"],title:\"Variant\",type:ControlType.Enum},LFXgxuHG4:{defaultValue:true,title:\"Category\",type:ControlType.Boolean},CPMabOrfU:{defaultValue:\"Resources\",displayTextArea:false,title:\"Category\",type:ControlType.String},cWI4CB6po:{defaultValue:'var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252)) /* {\"name\":\"Purple\"} */',title:\"Color\",type:ControlType.Color},Yo7UXCjeZ:{__defaultAssetReference:\"data:framer/asset-reference,eDJ9tldPOOleIuY0fmuLMEtdQ.jpg?originalFilename=unknown.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},HDbfmLJN9:{defaultValue:\"Building Blocks for Your Website\",displayTextArea:true,title:\"Title\",type:ControlType.String},mMXkBrQjq:{defaultValue:false,title:\"Description\",type:ControlType.Boolean},TS9IF2Dr6:{defaultValue:\"Build a unique experience by mixing and matching components.\",displayTextArea:false,title:\"Description\",type:ControlType.String},mJ5LrnBOl:{defaultValue:\"August 10, 2022\",displayTextArea:false,title:\"Date\",type:ControlType.String},iTLspfP7r:{title:\"Link\",type:ControlType.Link},fl_dKZrsX:{defaultValue:true,title:\"Date\",type:ControlType.Boolean}});addFonts(FramerFIQUCdJNE,[...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts,...sharedStyle3.fonts,...sharedStyle4.fonts,...sharedStyle5.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFIQUCdJNE\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"LFXgxuHG4\\\":\\\"category\\\",\\\"CPMabOrfU\\\":\\\"category1\\\",\\\"cWI4CB6po\\\":\\\"color\\\",\\\"Yo7UXCjeZ\\\":\\\"image\\\",\\\"HDbfmLJN9\\\":\\\"title\\\",\\\"mMXkBrQjq\\\":\\\"description\\\",\\\"TS9IF2Dr6\\\":\\\"description1\\\",\\\"mJ5LrnBOl\\\":\\\"date\\\",\\\"iTLspfP7r\\\":\\\"link\\\",\\\"fl_dKZrsX\\\":\\\"date1\\\"}\",\"framerIntrinsicHeight\":\"507\",\"framerIntrinsicWidth\":\"490\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nsz6JbBfs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T_YCCfZlJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZYZfCMMxO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lVI2gfXTo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g9Xik24lr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XT_JS2Xzi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uSunmDssE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FIQUCdJNE.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", "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", "Input_default", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "toResponsiveImage", "value", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "LFXgxuHG4", "CPMabOrfU", "cWI4CB6po", "Yo7UXCjeZ", "HDbfmLJN9", "mMXkBrQjq", "TS9IF2Dr6", "mJ5LrnBOl", "iTLspfP7r", "fl_dKZrsX", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "Link", "u", "Image2", "RichText2", "x", "css", "FramerFIQUCdJNE", "withCSS", "FIQUCdJNE_default", "addPropertyControls", "ControlType", "addFonts", "fonts"]
}
