{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/6uOF8voLuZd1g94TOTOi/aYPR6VH1Bj6NSeO4Mlqm/StratupOnboarding.js", "ssg:https://framerusercontent.com/modules/OvKSfE4q5QF2N8WiExVU/Pj9VBD8bthMQ4oB3ad3b/Waitlist.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{motion,AnimatePresence}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const shakeKeyframes=`\n@keyframes shake {\n  0% { transform: translateX(0); }\n  20% { transform: translateX(-5px); }\n  40% { transform: translateX(5px); }\n  60% { transform: translateX(-5px); }\n  80% { transform: translateX(5px); }\n  100% { transform: translateX(0); }\n}\n`;export function OnboardingFormField(props){const{// Original props\ninputFields,gridLayout,inputRadius,inputColor,inputBorder,inputHeight,inputFont,inputPlaceholders,ctaFont,ctaTextColorDisabled,ctaTextColorActive,ctaRadius,ctaWidth,ctaHeight,ctaColorDisabled,ctaColorActive,ctaWidthType,toastRadius,toastErrorColor,toastSuccessColor,toastHeight,toastFont,toastErrorText,toastSuccessText,toastVerticalPosition,toastHorizontalPosition,googleScriptUrl,// \"submittingChild\" for the submitting phase\nsubmittingChild,// NEW: \"successChild\" for the success phase\nsuccessChild,// For the final \"submitted\" state text & font\nsuccessScreenText,successScreenFont,successScreenColor}=props;// submissionState: \"idle\", \"submitting\", \"success\"\nconst[submissionState,setSubmissionState]=React.useState(\"idle\");const initialFormData={name:\"\",email:\"\",linkedin:\"\",mobile:\"\",company:\"\",website:\"\",purpose:\"\",pdf:null};const[formData,setFormData]=React.useState(initialFormData);const[errors,setErrors]=React.useState({});const[uploadProgress,setUploadProgress]=React.useState(0);const[isSubmitting,setIsSubmitting]=React.useState(false);const[showErrorToast,setShowErrorToast]=React.useState(false);const[showSuccessToast,setShowSuccessToast]=React.useState(false);// Inject shake keyframes\nReact.useEffect(()=>{const style=document.createElement(\"style\");style.innerHTML=shakeKeyframes;document.head.appendChild(style);return()=>{document.head.removeChild(style);};},[]);// Validate the form\nconst validateForm=()=>{const newErrors={};for(let field of inputFields){if(field===\"pdf\")continue;if(!formData[field]||typeof formData[field]===\"string\"&&formData[field].trim()===\"\"){newErrors[field]=\"This field is required\";}}if(formData.email){const emailRegex=/^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$/;if(!emailRegex.test(formData.email)){newErrors.email=\"Invalid email address\";}}if(formData.mobile){const mobileRegex=/^[0-9]{7,15}$/;if(!mobileRegex.test(formData.mobile)){newErrors.mobile=\"Invalid mobile number\";}}setErrors(newErrors);return Object.keys(newErrors).length===0;};// For CTA disabled\nconst isFormValid=()=>{return inputFields.filter(field=>field!==\"pdf\").every(field=>formData[field]&&(typeof formData[field]!==\"string\"||formData[field].trim()!==\"\"));};// Convert file to Base64\nconst fileToBase64=file=>{return new Promise((resolve,reject)=>{const reader=new FileReader;reader.readAsDataURL(file);reader.onload=()=>resolve(reader.result.split(\",\")[1]);reader.onerror=error=>reject(error);});};// Update formData\nconst handleInputChange=e=>{const{name,value}=e.target;setFormData(prev=>({...prev,[name]:value}));setErrors(prev=>({...prev,[name]:\"\"}));};// PDF logic\nconst handleFileUpload=async file=>{if(file&&file.type===\"application/pdf\"){setFormData(prev=>({...prev,pdf:file}));setUploadProgress(0);let progress=0;const interval=setInterval(()=>{progress+=10;setUploadProgress(progress);if(progress>=100)clearInterval(interval);},50);}else{setErrors(prev=>({...prev,pdf:\"Please upload a valid PDF file\"}));}};const handleFileInputChange=e=>{const file=e.target.files[0];handleFileUpload(file);};const handleDragOver=e=>{e.preventDefault();};const handleDrop=e=>{e.preventDefault();const file=e.dataTransfer.files[0];handleFileUpload(file);};// 3-second min\nconst handleSubmit=async()=>{if(!validateForm()){setShowErrorToast(true);setTimeout(()=>setShowErrorToast(false),3e3);return;}setSubmissionState(\"submitting\");setIsSubmitting(true);let pdfData=null;if(formData.pdf){try{pdfData=await fileToBase64(formData.pdf);}catch(error){console.error(\"File conversion error:\",error);}}const payload={...formData,pdf:formData.pdf?{name:formData.pdf.name,type:formData.pdf.type,data:pdfData}:null};const minTime=new Promise(resolve=>setTimeout(resolve,3e3));const fetchPromise=fetch(googleScriptUrl,{method:\"POST\",mode:\"no-cors\",body:JSON.stringify(payload)});try{await Promise.all([fetchPromise,minTime]);setShowSuccessToast(true);setTimeout(()=>setShowSuccessToast(false),3e3);setFormData(initialFormData);setUploadProgress(0);setSubmissionState(\"success\");}catch(error){console.error(\"Error submitting form:\",error);setShowErrorToast(true);setTimeout(()=>setShowErrorToast(false),3e3);setSubmissionState(\"idle\");}finally{setIsSubmitting(false);}};// Submitting\nif(submissionState===\"submitting\"){return /*#__PURE__*/_jsx(\"div\",{style:{position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:{maxWidth:\"100%\",textAlign:\"center\"},children:submittingChild?submittingChild:/*#__PURE__*/_jsx(\"div\",{children:\"Processing...\"})})});}else if(submissionState===\"success\"){// Build style from successScreenFont + successScreenColor\nconst successFontStyle={fontFamily:successScreenFont.fontFamily,fontSize:successScreenFont.fontSize,fontWeight:successScreenFont.fontWeight,color:successScreenColor,textAlign:\"center\"};// Automatic line break after every period\nconst autoMultiline=successScreenText.replace(/\\.\\s*/g,\".\\n\");const lines=autoMultiline.split(/\\r\\n|\\n/);return /*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",textAlign:\"center\",padding:20},children:[successChild?/*#__PURE__*/_jsx(\"div\",{style:{maxWidth:\"100%\",marginBottom:16},children:successChild}):null,/*#__PURE__*/_jsx(\"div\",{style:successFontStyle,children:lines.map((line,i)=>/*#__PURE__*/_jsx(\"div\",{children:line},i))})]});}// Idle\nreturn /*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\",padding:20},children:[/*#__PURE__*/_jsx(\"div\",{style:{display:\"grid\",gridTemplateColumns:gridLayout===\"2x2\"?\"1fr 1fr\":\"1fr\",gap:20,marginBottom:20},children:inputFields.map(field=>{if(field===\"pdf\"){return /*#__PURE__*/_jsxs(\"div\",{onClick:()=>document.getElementById(\"pdf-upload\").click(),onDragOver:handleDragOver,onDrop:handleDrop,style:{borderRadius:inputRadius,border:inputBorder,backgroundColor:inputColor,height:inputHeight,display:\"flex\",alignItems:\"center\",padding:\"0 10px\",cursor:\"pointer\",position:\"relative\",paddingLeft:16,paddingRight:16},children:[/*#__PURE__*/_jsx(\"input\",{id:\"pdf-upload\",type:\"file\",accept:\"application/pdf\",style:{display:\"none\"},onChange:handleFileInputChange}),/*#__PURE__*/_jsx(\"span\",{style:{flex:1,...inputFont},children:formData.pdf?`${formData.pdf.name} (${uploadProgress}%)`:inputPlaceholders[\"pdf\"]}),formData.pdf?/*#__PURE__*/_jsx(\"span\",{style:{cursor:\"pointer\"},onClick:e=>{e.stopPropagation();setFormData(prev=>({...prev,pdf:null}));setUploadProgress(0);},children:\"\u2715\"}):/*#__PURE__*/_jsx(\"span\",{children:\"\uD83D\uDCCE\"}),uploadProgress>0&&uploadProgress<100&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",bottom:0,left:0,width:`${uploadProgress}%`,height:4,backgroundColor:\"#09f\"}}),errors.pdf&&/*#__PURE__*/_jsx(\"div\",{style:{color:\"red\",fontSize:12,position:\"absolute\",bottom:-18,left:0},children:errors.pdf})]},\"pdf\");}else{const hasError=!!errors[field];return /*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\"},children:[/*#__PURE__*/_jsx(\"input\",{type:\"text\",name:field,value:formData[field],onChange:handleInputChange,placeholder:inputPlaceholders[field],style:{width:\"100%\",padding:16,borderRadius:inputRadius,backgroundColor:inputColor,border:inputBorder,height:inputHeight,...inputFont,animation:hasError?\"shake 0.5s\":\"none\"}}),hasError&&/*#__PURE__*/_jsx(\"div\",{style:{color:\"red\",fontSize:12,position:\"absolute\",bottom:-18,left:0},children:errors[field]})]},field);}})}),/*#__PURE__*/_jsx(\"button\",{onClick:handleSubmit,disabled:!isFormValid()||isSubmitting,style:{width:ctaWidthType===\"fill\"?\"100%\":ctaWidth,height:ctaHeight,borderRadius:ctaRadius,backgroundColor:isFormValid()?ctaColorActive:ctaColorDisabled,color:isFormValid()?ctaTextColorActive:ctaTextColorDisabled,border:\"none\",cursor:isFormValid()?\"pointer\":\"not-allowed\",...ctaFont},children:isSubmitting?\"Submitting...\":\"Submit\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:(showErrorToast||showSuccessToast)&&/*#__PURE__*/_jsx(motion.div,{initial:{opacity:0,y:20},animate:{opacity:1,y:0},exit:{opacity:0,y:-20},transition:{duration:.3},style:{position:\"fixed\",...toastVerticalPosition===\"top\"?{top:20}:{bottom:20},...toastHorizontalPosition===\"left\"?{left:20}:toastHorizontalPosition===\"center\"?{left:\"50%\",transform:\"translateX(-50%)\"}:{right:20},borderRadius:toastRadius,backgroundColor:showErrorToast?toastErrorColor:toastSuccessColor,padding:\"10px 20px\",maxWidth:\"90%\",...toastFont},children:showErrorToast?toastErrorText:toastSuccessText})})]});}OnboardingFormField.defaultProps={inputFields:[\"name\",\"email\",\"linkedin\",\"mobile\",\"company\",\"website\",\"purpose\",\"pdf\"],gridLayout:\"2x2\",inputRadius:8,inputColor:\"#fff\",inputBorder:\"1px solid #ccc\",inputHeight:40,inputFont:{fontFamily:\"Inter\",fontSize:14,fontWeight:400,color:\"#000\"},inputPlaceholders:{name:\"Name\",email:\"Email\",linkedin:\"LinkedIn\",mobile:\"Mobile Number\",company:\"Company Name\",website:\"Website Link\",purpose:\"What's your purpose to connect?\",pdf:\"Upload PDF (Optional)\"},ctaFont:{fontFamily:\"Inter\",fontSize:16,fontWeight:500},ctaTextColorDisabled:\"#999\",ctaTextColorActive:\"#fff\",ctaRadius:8,ctaWidth:200,ctaHeight:40,ctaColorDisabled:\"#ccc\",ctaColorActive:\"#09f\",ctaWidthType:\"fill\",toastRadius:8,toastErrorColor:\"#ff4d4f\",toastSuccessColor:\"#52c41a\",toastHeight:40,toastFont:{fontFamily:\"Inter\",fontSize:14,fontWeight:400,color:\"#fff\"},toastErrorText:\"Please fill the details correctly.\",toastSuccessText:\"Successfully submitted. We'll get back to you soon.\",toastVerticalPosition:\"bottom\",toastHorizontalPosition:\"center\",googleScriptUrl:\"\",// \"submittingChild\" for the 'submitting' phase\nsubmittingChild:null,// NEW: \"successChild\" for the success phase\nsuccessChild:null,// Automatic line break after periods\nsuccessScreenText:\"Thank you for submitting. We'll get back to you soon.\",successScreenFont:{fontFamily:\"Inter\",fontSize:16,fontWeight:500},successScreenColor:\"#000\"};addPropertyControls(OnboardingFormField,{inputFields:{type:ControlType.Array,title:\"Input Fields\"},gridLayout:{type:ControlType.Enum,title:\"Grid Layout\",options:[\"2x2\",\"1x1\"],defaultValue:\"2x2\"},inputRadius:{type:ControlType.Number,title:\"Input Radius\",defaultValue:8,min:0,max:50},inputColor:{type:ControlType.Color,title:\"Input Background Color\",defaultValue:\"#fff\"},inputBorder:{type:ControlType.String,title:\"Input Border\",defaultValue:\"1px solid #ccc\"},inputHeight:{type:ControlType.Number,title:\"Input Height\",defaultValue:40,min:20,max:100},inputFont:{type:ControlType.Font,title:\"Input Font\",defaultValue:OnboardingFormField.defaultProps.inputFont,controls:\"extended\"},inputPlaceholders:{type:ControlType.Object,title:\"Input Placeholders\",controls:{name:{type:ControlType.String,title:\"Name\"},email:{type:ControlType.String,title:\"Email\"},linkedin:{type:ControlType.String,title:\"LinkedIn\"},mobile:{type:ControlType.String,title:\"Mobile\"},company:{type:ControlType.String,title:\"Company\"},website:{type:ControlType.String,title:\"Website\"},purpose:{type:ControlType.String,title:\"Purpose\"},pdf:{type:ControlType.String,title:\"PDF\"}}},ctaFont:{type:ControlType.Font,title:\"CTA Font\",defaultValue:OnboardingFormField.defaultProps.ctaFont,controls:\"extended\"},ctaTextColorDisabled:{type:ControlType.Color,title:\"CTA Text Color (Disabled)\",defaultValue:\"#999\"},ctaTextColorActive:{type:ControlType.Color,title:\"CTA Text Color (Active)\",defaultValue:\"#fff\"},ctaRadius:{type:ControlType.Number,title:\"CTA Radius\",defaultValue:8,min:0,max:50},ctaWidth:{type:ControlType.Number,title:\"CTA Width\",defaultValue:200,min:100,max:500},ctaHeight:{type:ControlType.Number,title:\"CTA Height\",defaultValue:40,min:20,max:100},ctaColorDisabled:{type:ControlType.Color,title:\"CTA Color (Disabled)\",defaultValue:\"#ccc\"},ctaColorActive:{type:ControlType.Color,title:\"CTA Color (Active)\",defaultValue:\"#09f\"},ctaWidthType:{type:ControlType.Enum,title:\"CTA Width Type\",options:[\"fill\",\"fixed\"],defaultValue:\"fill\"},toastRadius:{type:ControlType.Number,title:\"Toast Radius\",defaultValue:8,min:0,max:50},toastErrorColor:{type:ControlType.Color,title:\"Toast Error Color\",defaultValue:\"#ff4d4f\"},toastSuccessColor:{type:ControlType.Color,title:\"Toast Success Color\",defaultValue:\"#52c41a\"},toastHeight:{type:ControlType.Number,title:\"Toast Height\",defaultValue:40,min:20,max:100},toastFont:{type:ControlType.Font,title:\"Toast Font\",defaultValue:OnboardingFormField.defaultProps.toastFont,controls:\"extended\"},toastErrorText:{type:ControlType.String,title:\"Error Toast Text\",defaultValue:\"Please fill the details correctly.\"},toastSuccessText:{type:ControlType.String,title:\"Success Toast Text\",defaultValue:\"Successfully submitted. We'll get back to you soon.\"},toastVerticalPosition:{type:ControlType.Enum,title:\"Toast Vertical Position\",options:[\"top\",\"bottom\"],defaultValue:\"bottom\"},toastHorizontalPosition:{type:ControlType.Enum,title:\"Toast Horizontal Position\",options:[\"left\",\"center\",\"right\"],defaultValue:\"center\"},googleScriptUrl:{type:ControlType.String,title:\"Google Script URL\",defaultValue:\"\"},// For the 'submitting' state\nsubmittingChild:{type:ControlType.ComponentInstance,title:\"Submitting Child\"},// NEW: for the 'success' state\nsuccessChild:{type:ControlType.ComponentInstance,title:\"Success Child\"},successScreenText:{type:ControlType.String,title:\"Success Text\",defaultValue:\"Thank you for submitting. We'll get back to you soon.\"},successScreenFont:{type:ControlType.Font,title:\"Success Font\",defaultValue:{fontFamily:\"Inter\",fontSize:16,fontWeight:500},controls:\"extended\"},successScreenColor:{type:ControlType.Color,title:\"Success Text Color\",defaultValue:\"#000\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"OnboardingFormField\":{\"type\":\"reactComponent\",\"name\":\"OnboardingFormField\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./StratupOnboarding.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{motion,AnimatePresence}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";export default function WaitlistComponent(props){const{emailPlaceholder,linkedInPlaceholder,buttonText,googleScriptUrl,stackDirection,gap,inputHeight,inputFontFamily,inputFontStyle,inputFontWeight,inputFontColor,inputFontSize,inputRadius,inputHasBorder,inputBorderColor,inputContainerColorDefault,inputContainerColorActive,buttonHeight,buttonFontFamily,buttonFontStyle,buttonFontWeight,buttonFontColorDefault,buttonFontColorHover,buttonFontSize,buttonRadius,buttonHasBorder,buttonBorderColor,buttonColorDefault,buttonColorHover,toastHeight,toastFontFamily,toastFontStyle,toastFontWeight,toastFontColor,toastFontSize,toastRadius,toastHasBorder,toastBorderColor,errorToastColor,successToastColor,errorMessage,successMessage,toastTextAlign,toastPosition}=props;const[email,setEmail]=React.useState(\"\");const[linkedIn,setLinkedIn]=React.useState(\"\");const[toast,setToast]=React.useState(null);const[shaking,setShaking]=React.useState(false);const[isEmailFocused,setEmailFocused]=React.useState(false);const[isLinkedInFocused,setLinkedInFocused]=React.useState(false);const validateEmail=email=>/^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$/.test(email);const handleSubmit=async()=>{if(!email||!linkedIn){setToast({type:\"error\",message:errorMessage||\"Please fill all the details\"});triggerShake();}else if(!validateEmail(email)){setToast({type:\"error\",message:errorMessage||\"Please enter the correct email id\"});triggerShake();}else{try{// Build the URL with query parameters\nconst url=`${googleScriptUrl}?email=${encodeURIComponent(email)}&linkedIn=${encodeURIComponent(linkedIn)}`;// Send a GET request without extra headers (to avoid preflight)\nawait fetch(url,{method:\"GET\"});setToast({type:\"success\",message:successMessage||\"You have successfully joined the waitlist\"});resetForm();}catch(error){setToast({type:\"error\",message:\"An error occurred. Please try again.\"});}}};const triggerShake=()=>{setShaking(true);setTimeout(()=>setShaking(false),500);};const resetForm=()=>{setEmail(\"\");setLinkedIn(\"\");};React.useEffect(()=>{if(toast){const timer=setTimeout(()=>setToast(null),4e3);return()=>clearTimeout(timer);}},[toast]);const getToastPositionStyle=()=>{switch(toastPosition){case\"top-left\":return{top:10,left:10,transform:\"none\"};case\"top-right\":return{top:10,right:10,transform:\"none\"};case\"top-center\":return{top:10,left:\"50%\",transform:\"translateX(-50%)\"};case\"bottom-left\":return{bottom:10,left:10,transform:\"none\"};case\"bottom-right\":return{bottom:10,right:10,transform:\"none\"};case\"bottom-center\":return{bottom:10,left:\"50%\",transform:\"translateX(-50%)\"};default:return{top:10,left:\"50%\",transform:\"translateX(-50%)\"};}};return /*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",width:\"100%\",margin:\"auto\"},children:[/*#__PURE__*/_jsx(AnimatePresence,{children:toast&&/*#__PURE__*/_jsx(motion.div,{initial:{opacity:0,y:-20},animate:{opacity:1,y:0},exit:{opacity:0,y:-20},transition:{duration:1},style:{position:\"absolute\",zIndex:1e3,...getToastPositionStyle(),minHeight:toastHeight,padding:\"10px 20px\",borderRadius:toastRadius,border:toastHasBorder?`1px solid ${toastBorderColor}`:\"none\",backgroundColor:toast.type===\"success\"?successToastColor:errorToastColor,color:toastFontColor,fontFamily:toastFontFamily,fontStyle:toastFontStyle,fontWeight:toastFontWeight,fontSize:toastFontSize,textAlign:toastTextAlign,width:\"auto\",whiteSpace:\"nowrap\"},children:toast.message})}),/*#__PURE__*/_jsxs(motion.div,{style:{display:\"flex\",flexDirection:stackDirection===\"vertical\"?\"column\":\"row\",gap:gap,width:\"100%\"},animate:{x:shaking?[-10,10,-10,10,0]:0},children:[/*#__PURE__*/_jsx(\"input\",{type:\"text\",placeholder:emailPlaceholder,value:email,onChange:e=>setEmail(e.target.value),onFocus:()=>setEmailFocused(true),onBlur:()=>setEmailFocused(false),style:{height:inputHeight,flexGrow:1,borderRadius:inputRadius,border:inputHasBorder?`1px solid ${inputBorderColor}`:\"none\",backgroundColor:isEmailFocused?inputContainerColorActive:inputContainerColorDefault,fontFamily:inputFontFamily,fontStyle:inputFontStyle,fontWeight:inputFontWeight,color:inputFontColor,fontSize:inputFontSize,padding:\"5px 10px\"}}),/*#__PURE__*/_jsx(\"input\",{type:\"text\",placeholder:linkedInPlaceholder,value:linkedIn,onChange:e=>setLinkedIn(e.target.value),onFocus:()=>setLinkedInFocused(true),onBlur:()=>setLinkedInFocused(false),style:{height:inputHeight,flexGrow:1,borderRadius:inputRadius,border:inputHasBorder?`1px solid ${inputBorderColor}`:\"none\",backgroundColor:isLinkedInFocused?inputContainerColorActive:inputContainerColorDefault,fontFamily:inputFontFamily,fontStyle:inputFontStyle,fontWeight:inputFontWeight,color:inputFontColor,fontSize:inputFontSize,padding:\"5px 10px\"}}),/*#__PURE__*/_jsx(motion.button,{whileHover:{backgroundColor:buttonColorHover,color:buttonFontColorHover},onClick:handleSubmit,style:{height:buttonHeight,flexGrow:1,borderRadius:buttonRadius,border:buttonHasBorder?`1px solid ${buttonBorderColor}`:\"none\",backgroundColor:buttonColorDefault,color:buttonFontColorDefault,fontFamily:buttonFontFamily,fontStyle:buttonFontStyle,fontWeight:buttonFontWeight,fontSize:buttonFontSize,padding:\"10px 20px\"},children:buttonText})]})]});}WaitlistComponent.defaultProps={emailPlaceholder:\"Enter your email\",linkedInPlaceholder:\"Enter your LinkedIn ID\",buttonText:\"Join the waitlist for free\",stackDirection:\"horizontal\",gap:10,googleScriptUrl:\"\",inputHeight:40,inputFontFamily:\"Arial\",inputFontStyle:\"normal\",inputFontWeight:400,inputFontColor:\"#000\",inputFontSize:14,inputRadius:5,inputHasBorder:true,inputBorderColor:\"#ccc\",inputContainerColorDefault:\"#f5f5f5\",inputContainerColorActive:\"#e0e0e0\",buttonHeight:50,buttonFontFamily:\"Arial\",buttonFontStyle:\"normal\",buttonFontWeight:700,buttonFontColorDefault:\"#fff\",buttonFontColorHover:\"#fff\",buttonFontSize:16,buttonRadius:5,buttonHasBorder:true,buttonBorderColor:\"#007aff\",buttonColorDefault:\"#09f\",buttonColorHover:\"#007aff\",toastHeight:50,toastFontFamily:\"Arial\",toastFontStyle:\"normal\",toastFontWeight:600,toastFontColor:\"#fff\",toastFontSize:14,toastRadius:5,toastHasBorder:false,toastBorderColor:\"#ccc\",errorToastColor:\"#ff5252\",successToastColor:\"#4caf50\",errorMessage:\"Please fill all the details\",successMessage:\"You have successfully joined the waitlist\",toastTextAlign:\"center\",toastPosition:\"top-center\"};addPropertyControls(WaitlistComponent,{emailPlaceholder:{type:ControlType.String,title:\"Email Placeholder\"},linkedInPlaceholder:{type:ControlType.String,title:\"LinkedIn Placeholder\"},buttonText:{type:ControlType.String,title:\"Button Text\"},googleScriptUrl:{type:ControlType.String,title:\"Google Script URL\"},stackDirection:{type:ControlType.Enum,title:\"Stack Direction\",options:[\"horizontal\",\"vertical\"]},gap:{type:ControlType.Number,title:\"Gap\"},inputHeight:{type:ControlType.Number,title:\"Input Height\"},inputFontFamily:{type:ControlType.String,title:\"Input Font Family\"},inputFontStyle:{type:ControlType.String,title:\"Input Font Style\"},inputFontWeight:{type:ControlType.Enum,title:\"Input Font Weight\",options:[100,200,300,400,500,600,700,800,900]},inputFontColor:{type:ControlType.Color,title:\"Input Font Color\"},inputFontSize:{type:ControlType.Number,title:\"Input Font Size\"},inputRadius:{type:ControlType.Number,title:\"Input Radius\"},inputHasBorder:{type:ControlType.Boolean,title:\"Input Has Border\"},inputBorderColor:{type:ControlType.Color,title:\"Input Border Color\"},inputContainerColorDefault:{type:ControlType.Color,title:\"Input Container Color Default\"},inputContainerColorActive:{type:ControlType.Color,title:\"Input Container Color Active\"},buttonHeight:{type:ControlType.Number,title:\"Button Height\"},buttonFontFamily:{type:ControlType.String,title:\"Button Font Family\"},buttonFontStyle:{type:ControlType.String,title:\"Button Font Style\"},buttonFontWeight:{type:ControlType.Enum,title:\"Button Font Weight\",options:[100,200,300,400,500,600,700,800,900]},buttonFontColorDefault:{type:ControlType.Color,title:\"Button Font Color Default\"},buttonFontColorHover:{type:ControlType.Color,title:\"Button Font Color Hover\"},buttonFontSize:{type:ControlType.Number,title:\"Button Font Size\"},buttonRadius:{type:ControlType.Number,title:\"Button Radius\"},buttonHasBorder:{type:ControlType.Boolean,title:\"Button Has Border\"},buttonBorderColor:{type:ControlType.Color,title:\"Button Border Color\"},buttonColorDefault:{type:ControlType.Color,title:\"Button Color Default\"},buttonColorHover:{type:ControlType.Color,title:\"Button Color Hover\"},toastHeight:{type:ControlType.Number,title:\"Toast Height\"},toastFontFamily:{type:ControlType.String,title:\"Toast Font Family\"},toastFontStyle:{type:ControlType.String,title:\"Toast Font Style\"},toastFontWeight:{type:ControlType.Enum,title:\"Toast Font Weight\",options:[100,200,300,400,500,600,700,800,900]},toastFontColor:{type:ControlType.Color,title:\"Toast Font Color\"},toastFontSize:{type:ControlType.Number,title:\"Toast Font Size\"},toastRadius:{type:ControlType.Number,title:\"Toast Radius\"},toastHasBorder:{type:ControlType.Boolean,title:\"Toast Has Border\"},toastBorderColor:{type:ControlType.Color,title:\"Toast Border Color\"},errorToastColor:{type:ControlType.Color,title:\"Error Toast Color\"},successToastColor:{type:ControlType.Color,title:\"Success Toast Color\"},errorMessage:{type:ControlType.String,title:\"Error Message\"},successMessage:{type:ControlType.String,title:\"Success Message\"},toastTextAlign:{type:ControlType.String,title:\"Toast Text Align\"},toastPosition:{type:ControlType.Enum,title:\"Toast Position\",options:[\"top-left\",\"top-right\",\"top-center\",\"bottom-left\",\"bottom-right\",\"bottom-center\"]}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"WaitlistComponent\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Waitlist.map"],
  "mappings": "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",
  "names": ["shakeKeyframes", "OnboardingFormField", "props", "inputFields", "gridLayout", "inputRadius", "inputColor", "inputBorder", "inputHeight", "inputFont", "inputPlaceholders", "ctaFont", "ctaTextColorDisabled", "ctaTextColorActive", "ctaRadius", "ctaWidth", "ctaHeight", "ctaColorDisabled", "ctaColorActive", "ctaWidthType", "toastRadius", "toastErrorColor", "toastSuccessColor", "toastHeight", "toastFont", "toastErrorText", "toastSuccessText", "toastVerticalPosition", "toastHorizontalPosition", "googleScriptUrl", "submittingChild", "successChild", "successScreenText", "successScreenFont", "successScreenColor", "submissionState", "setSubmissionState", "ye", "initialFormData", "formData", "setFormData", "errors", "setErrors", "uploadProgress", "setUploadProgress", "isSubmitting", "setIsSubmitting", "showErrorToast", "setShowErrorToast", "showSuccessToast", "setShowSuccessToast", "ue", "style", "validateForm", "newErrors", "field", "isFormValid", "fileToBase64", "file", "resolve", "reject", "reader", "error", "handleInputChange", "name", "value", "prev", "handleFileUpload", "progress", "interval", "handleFileInputChange", "handleDragOver", "handleDrop", "handleSubmit", "pdfData", "payload", "minTime", "fetchPromise", "p", "successFontStyle", "lines", "u", "line", "i", "e", "hasError", "AnimatePresence", "motion", "addPropertyControls", "ControlType", "WaitlistComponent", "props", "emailPlaceholder", "linkedInPlaceholder", "buttonText", "googleScriptUrl", "stackDirection", "gap", "inputHeight", "inputFontFamily", "inputFontStyle", "inputFontWeight", "inputFontColor", "inputFontSize", "inputRadius", "inputHasBorder", "inputBorderColor", "inputContainerColorDefault", "inputContainerColorActive", "buttonHeight", "buttonFontFamily", "buttonFontStyle", "buttonFontWeight", "buttonFontColorDefault", "buttonFontColorHover", "buttonFontSize", "buttonRadius", "buttonHasBorder", "buttonBorderColor", "buttonColorDefault", "buttonColorHover", "toastHeight", "toastFontFamily", "toastFontStyle", "toastFontWeight", "toastFontColor", "toastFontSize", "toastRadius", "toastHasBorder", "toastBorderColor", "errorToastColor", "successToastColor", "errorMessage", "successMessage", "toastTextAlign", "toastPosition", "email", "setEmail", "ye", "linkedIn", "setLinkedIn", "toast", "setToast", "shaking", "setShaking", "isEmailFocused", "setEmailFocused", "isLinkedInFocused", "setLinkedInFocused", "validateEmail", "handleSubmit", "triggerShake", "url", "resetForm", "ue", "timer", "getToastPositionStyle", "u", "p", "AnimatePresence", "motion", "e", "addPropertyControls", "ControlType"]
}
