{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/pVz85dvA31SfQ8SuSJ61/pmZP3qIPp5B1ywxRzBcL/GetStartedFlow.js", "ssg:https://framerusercontent.com/modules/ztHU5fG3Zii39B3rxcbm/k5qe7ATJlZHnMiUnbwDU/tCR5a2w2l.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\n/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Form(){const[contact,setContact]=useState(\"\");const[heardAboutFrom,setHeardAboutFrom]=useState(\"\");const[communityPlatform,setCommunityPlatform]=useState(\"Discord\");const[acceptedTerms,setAcceptedTerms]=useState(false);const[hover,setHover]=useState(false);const handleMouseEnter=()=>{setHover(true);};const handleMouseLeave=()=>{setHover(false);};const formIsValid=contact.length>0&&heardAboutFrom.length>0&&acceptedTerms;const handleSubmit=async event=>{event.preventDefault();if(formIsValid){const submittedValues=JSON.stringify({contact:contact,heard_about_from:heardAboutFrom,community_platform:communityPlatform});// save contact info\nconst saveContactUrl=\"https://app.pluno.ai/api/submit-landing-page-info?value=\"+encodeURIComponent(submittedValues);await fetch(saveContactUrl);if(communityPlatform===\"Discord\"){// redirect user to add the bot to Discord\nlet contactBase64=btoa(submittedValues);window.location.href=\"https://discord.com/api/oauth2/authorize?client_id=955744627481255976&permissions=274877990912&redirect_uri=https%3A%2F%2Fapp.pluno.ai%2Fgetting-started&response_type=code&scope=bot%20guilds&state=\"+contactBase64;}else{window.location.href=\"https://pluno.ai/blog/user-guide-pluno#2\";}}};return /*#__PURE__*/_jsxs(\"form\",{onSubmit:handleSubmit,style:{display:\"flex\",flexDirection:\"column\",alignItems:\"left\",fontFamily:\"Sofia Sans\",fontSize:\"18px\",color:\"white\",padding:\"24px\",backgroundColor:\"black\",borderRadius:\"8px\",boxShadow:\"rgba(78,69,181, 0.6) 0px 0px 8px\"},children:[/*#__PURE__*/_jsx(\"label\",{style:{marginBottom:\"8px\"},children:\"Please enter your personal Discord username or Telegram handle so we can help you get started with Pluno :)\"}),/*#__PURE__*/_jsx(\"input\",{type:\"text\",placeholder:\"Your personal Discord username or Telegram handle\",value:contact,onChange:e=>setContact(e.target.value),required:true,maxLength:120,style:{width:\"100%\",padding:\"16px\",marginBottom:\"24px\",border:\"1px solid #ccc\",borderRadius:\"4px\"}}),/*#__PURE__*/_jsx(\"label\",{style:{marginBottom:\"8px\"},children:\"Where did you hear about us?\"}),/*#__PURE__*/_jsx(\"input\",{type:\"text\",placeholder:\"Share specific source please\",value:heardAboutFrom,required:true,onChange:e=>setHeardAboutFrom(e.target.value),style:{width:\"100%\",padding:\"16px\",marginBottom:\"24px\",border:\"1px solid #ccc\",borderRadius:\"4px\"}}),/*#__PURE__*/_jsxs(\"div\",{style:{marginBottom:\"16px\"},children:[/*#__PURE__*/_jsxs(\"label\",{style:{marginRight:\"16px\"},children:[/*#__PURE__*/_jsx(\"input\",{type:\"radio\",value:\"Discord\",checked:communityPlatform===\"Discord\",onChange:e=>setCommunityPlatform(e.target.value),style:{marginRight:\"8px\"}}),\"Discord\"]}),/*#__PURE__*/_jsxs(\"label\",{children:[/*#__PURE__*/_jsx(\"input\",{type:\"radio\",value:\"Telegram\",checked:communityPlatform===\"Telegram\",onChange:e=>setCommunityPlatform(e.target.value),style:{marginRight:\"8px\"}}),\"Telegram\"]})]}),/*#__PURE__*/_jsxs(\"label\",{style:{marginBottom:\"24px\"},children:[/*#__PURE__*/_jsx(\"input\",{type:\"checkbox\",value:acceptedTerms,onChange:e=>setAcceptedTerms(e.target.value),required:true,style:{marginRight:\"8px\"}}),\"I accept the\",\" \",/*#__PURE__*/_jsx(\"a\",{href:\"https://pluno.ai/terms\",target:\"_blank\",rel:\"noreferrer\",style:{color:\"white\"},children:\"Terms and Conditions\"})]}),/*#__PURE__*/_jsx(\"input\",{type:\"submit\",value:\"Invite bot to \"+communityPlatform,onMouseEnter:handleMouseEnter,onMouseLeave:handleMouseLeave,style:{fontSize:\"16px\",fontFamily:\"Sofia Sans\",width:\"100%\",padding:\"16px\",backgroundImage:hover?\"linear-gradient(rgb(93, 80, 195) 0%, rgba(190, 90, 255, 0.7) 0%)\":\"linear-gradient(rgb(93, 80, 195) 0%, rgba(190, 90, 255, 0.7) 100%)\",backgroundColor:\"#000000\",color:\"white\",fontWeight:\"bold\",border:\"none\",borderRadius:\"100px\",cursor:formIsValid?\"pointer\":\"default\"}})]});}const useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withGetQuoteLink(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,onClick:e=>{window.location.href=\"mailto:hi@pluno.ai?subject=Get Quote for Pluno Pro&body=Hi Pluno Team,%0D%0A%0D%0AMy community: <Insert community name here>%0D%0A%0D%0AI discovered Pluno: <Share specific source please>%0D%0A%0D%0AI'd love to learn more about your pricing plans.%0D%0ACan you give me more information please?%0D%0A%0D%0ACheers%0D%0A%0D%0A%0D%0ANote: If you haven't received a reply after 24 hours, please check your spam.\";e.preventDefault();}});};}export function withDuplicate(Component){return props=>{return /*#__PURE__*/_jsxs(\"div\",{children:[/*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}}),/*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}})]});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withDuplicate\":{\"type\":\"reactHoc\",\"name\":\"withDuplicate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withGetQuoteLink\":{\"type\":\"reactHoc\",\"name\":\"withGetQuoteLink\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Form\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GetStartedFlow.map", "// Generated by Framer (ea5544a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Form from\"https://framerusercontent.com/modules/pVz85dvA31SfQ8SuSJ61/pmZP3qIPp5B1ywxRzBcL/GetStartedFlow.js\";const FormFonts=getFonts(Form);const cycleOrder=[\"UH7KGPHwm\",\"tpBY37ZnX\"];const variantClassNames={tpBY37ZnX:\"framer-v-7mncmf\",UH7KGPHwm:\"framer-v-1rzwfq1\"};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 transitions={default:{delay:0,duration:.15,ease:[.5,0,.88,.77],type:\"tween\"}};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 humanReadableVariantMap={\"Desktop/Table\":\"UH7KGPHwm\",Mobile:\"tpBY37ZnX\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"UH7KGPHwm\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"UH7KGPHwm\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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-QFi6g\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-1rzwfq1\",className),\"data-framer-name\":\"Desktop/Table\",layoutDependency:layoutDependency,layoutId:\"UH7KGPHwm\",ref:ref,style:{...style},...addPropertyOverrides({tpBY37ZnX:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o3pefd-container\",layoutDependency:layoutDependency,layoutId:\"nQF_vhUxb-container\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"nQF_vhUxb\",layoutId:\"nQF_vhUxb\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})});});const css=['.framer-QFi6g [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-QFi6g .framer-fmdxzk { display: block; }\",\".framer-QFi6g .framer-1rzwfq1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 404px; }\",\".framer-QFi6g .framer-o3pefd-container { flex: none; height: 370px; position: relative; width: 399px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QFi6g .framer-1rzwfq1 { gap: 0px; } .framer-QFi6g .framer-1rzwfq1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QFi6g .framer-1rzwfq1 > :first-child { margin-left: 0px; } .framer-QFi6g .framer-1rzwfq1 > :last-child { margin-right: 0px; } }\",\".framer-QFi6g.framer-v-7mncmf .framer-1rzwfq1 { width: 314px; }\",\".framer-QFi6g.framer-v-7mncmf .framer-o3pefd-container { height: 461px; width: 314px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 370\n * @framerIntrinsicWidth 404\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tpBY37ZnX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n */const FramertCR5a2w2l=withCSS(Component,css,\"framer-QFi6g\");export default FramertCR5a2w2l;FramertCR5a2w2l.displayName=\"Getting Started Form\";FramertCR5a2w2l.defaultProps={height:370,width:404};addPropertyControls(FramertCR5a2w2l,{variant:{options:[\"UH7KGPHwm\",\"tpBY37ZnX\"],optionTitles:[\"Desktop/Table\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramertCR5a2w2l,[...FormFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertCR5a2w2l\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"370\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tpBY37ZnX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"404\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "Form", "contact", "setContact", "ye", "heardAboutFrom", "setHeardAboutFrom", "communityPlatform", "setCommunityPlatform", "acceptedTerms", "setAcceptedTerms", "hover", "setHover", "handleMouseEnter", "handleMouseLeave", "formIsValid", "u", "event", "submittedValues", "saveContactUrl", "contactBase64", "window", "p", "e", "useStore", "createStore", "FormFonts", "getFonts", "Form", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "css", "FramertCR5a2w2l", "withCSS", "tCR5a2w2l_default", "addPropertyControls", "ControlType", "addFonts"]
}
