{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/q4jtkp8KC0d42RxxC50y/hOqsaWaXrFaoT3Jj06wu/Scroll.js", "ssg:https://framerusercontent.com/modules/lHx3JTuwpHUVFU2cJ7sW/erVyiWGGVO1FrTrGHThs/vSuFNxfvB.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", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({activeVariant:\"Variant 1\"});export function featureFrame(Component){return props=>{const[store]=useStore();return /*#__PURE__*/_jsx(Component,{...props,variant:store.activeVariant});};}function createCardOverride(featureName,Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,viewport:{margin:\"-30% 0px -70% 0px\"},onViewportEnter:()=>{setStore({activeVariant:featureName});},style:{...props.style,opacity:store.activeVariant===featureName?1:.5}});};}export function card1(Component){return createCardOverride(\"Variant 1\",Component);}export function card2(Component){return createCardOverride(\"Variant 2\",Component);}export function card3(Component){return createCardOverride(\"Variant 3\",Component);}export function card4(Component){return createCardOverride(\"Variant 4\",Component);}export function card5(Component){return createCardOverride(\"Variant 5\",Component);}export function card6(Component){return createCardOverride(\"Variant 6\",Component);}export function card7(Component){return createCardOverride(\"Variant 7\",Component);}export function JobCount(Component){return props=>{//console.log(props)\n// State to hold the data from the API\nconst[apiData,setApiData]=React.useState(\"\");// Fetch data when the component mounts\nReact.useEffect(()=>{async function fetchData(){try{var jobCount=\"30,657\";const response=await fetch(\"https://remotive.com/api/accelerator/jobs/count\");if(response.ok){const data=await response.json();jobCount=data.job_count.toLocaleString(\"en-US\");}// Assuming the data you want is in a field named 'jobCount'\nsetApiData(jobCount);}catch(error){console.error(\"Error fetching data:\",error);}}fetchData();},[]);// Function to recursively replace placeholders in props\n// Function to recursively replace placeholders in props\nfunction replacePlaceholders(obj){if(typeof obj===\"boolean\"){return obj// Return boolean values as-is\n;}if(typeof obj===\"string\"){return obj.replace(\"12,657\",apiData).replace(\"2,431\",Math.round(parseInt(apiData.replace(/,/g,\"\"))/20).toLocaleString(\"en-US\"));}else if(Array.isArray(obj)){return obj.map(replacePlaceholders);}else if(/*#__PURE__*/React.isValidElement(obj)){return /*#__PURE__*/React.cloneElement(obj,replacePlaceholders(obj.props),replacePlaceholders(React.Children.toArray(obj.props.children)));}else if(typeof obj===\"object\"&&obj!==null){const newObj={};for(const key in obj){newObj[key]=replacePlaceholders(obj[key]);}return newObj;}return obj;}// Replace placeholders in all props\nconst newProps=replacePlaceholders(props);// Return the modified component\nreturn /*#__PURE__*/_jsx(Component,{...newProps});};}export function ReplaceThisMonth(Component){return props=>{// State to hold the current month and year\nconst[currentMonth,setCurrentMonth]=React.useState(\"\");// Calculate and set the current month and year when the component mounts\nReact.useEffect(()=>{const date=new Date;const options={month:\"long\",year:\"numeric\"};const formattedDate=`in ${date.toLocaleDateString(undefined,options)}`;setCurrentMonth(formattedDate);},[]);// Function to recursively replace placeholders in props\nfunction replacePlaceholders(obj){if(typeof obj===\"boolean\"){return obj// Return boolean values as-is\n;}if(typeof obj===\"string\"){return obj.replace(\"this month\",currentMonth);}else if(Array.isArray(obj)){return obj.map(replacePlaceholders);}else if(/*#__PURE__*/React.isValidElement(obj)){return /*#__PURE__*/React.cloneElement(obj,replacePlaceholders(obj.props),replacePlaceholders(React.Children.toArray(obj.props.children)));}else if(typeof obj===\"object\"&&obj!==null){const newObj={};for(const key in obj){newObj[key]=replacePlaceholders(obj[key]);}return newObj;}return obj;}// Replace placeholders in all props\nconst newProps=replacePlaceholders(props);// Return the modified component\nreturn /*#__PURE__*/_jsx(Component,{...newProps});};}\nexport const __FramerMetadata__ = {\"exports\":{\"card3\":{\"type\":\"reactHoc\",\"name\":\"card3\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"card4\":{\"type\":\"reactHoc\",\"name\":\"card4\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"card1\":{\"type\":\"reactHoc\",\"name\":\"card1\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"card6\":{\"type\":\"reactHoc\",\"name\":\"card6\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"JobCount\":{\"type\":\"reactHoc\",\"name\":\"JobCount\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"card2\":{\"type\":\"reactHoc\",\"name\":\"card2\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"card5\":{\"type\":\"reactHoc\",\"name\":\"card5\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"card7\":{\"type\":\"reactHoc\",\"name\":\"card7\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"featureFrame\":{\"type\":\"reactHoc\",\"name\":\"featureFrame\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ReplaceThisMonth\":{\"type\":\"reactHoc\",\"name\":\"ReplaceThisMonth\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Scroll.map", "// Generated by Framer (f4b44ab)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"OIVz3ekq3\"];const serializationHash=\"framer-vsbgG\";const variantClassNames={OIVz3ekq3:\"framer-v-si3xnj\"};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:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};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 getProps=({bodyText,cardTitle,height,id,opacity,width,...props})=>{var _ref,_ref1,_ref2;return{...props,QZxrU8Far:(_ref=cardTitle!==null&&cardTitle!==void 0?cardTitle:props.QZxrU8Far)!==null&&_ref!==void 0?_ref:\"Remote Bootcamp course\",T0416SltD:(_ref1=opacity!==null&&opacity!==void 0?opacity:props.T0416SltD)!==null&&_ref1!==void 0?_ref1:1,XFrumXhPJ:(_ref2=bodyText!==null&&bodyText!==void 0?bodyText:props.XFrumXhPJ)!==null&&_ref2!==void 0?_ref2:\"New to working remotely or just looking to increase your chances of acing your next application? In this quick, but actionable 4-module video course, you\u2019ll get the tactics you can use each step of the way, with real-world examples.\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,QZxrU8Far,XFrumXhPJ,T0416SltD,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"OIVz3ekq3\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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-vsbgG\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-si3xnj\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"OIVz3ekq3\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomRightRadius:10,borderTopRightRadius:10,boxShadow:\"0px 20px 40px 0px rgba(0, 0, 0, 0.05)\",opacity:T0416SltD,...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mf7eu2\",\"data-border\":true,\"data-framer-name\":\"feature 1\",layoutDependency:layoutDependency,layoutId:\"uLIADqNLn\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(255, 135, 26)\",\"--border-left-width\":\"4px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pk1xvx\",\"data-framer-name\":\"Text and supporting text\",layoutDependency:layoutDependency,layoutId:\"EQKPruIIe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlbGljYSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Gelica SemiBold\", serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.24px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(83, 42, 33))\"},children:\"Remote Bootcamp course\"})}),className:\"framer-1gohp1n\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;Gelica SemiBold\"],layoutDependency:layoutDependency,layoutId:\"ijazTBAQl\",style:{\"--extracted-r6o4lv\":\"rgb(83, 42, 33)\",\"--framer-paragraph-spacing\":\"0px\"},text:QZxrU8Far,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2FucyBDb25kZW5zZWQtcmVndWxhcg==\",\"--framer-font-family\":'\"IBM Plex Sans Condensed\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(114, 114, 114, 1))\"},children:\"New to working remotely or just looking to increase your chances of acing your next application? In this quick, but actionable 4-module video course, you\u2019ll get the tactics you can use each step of the way, with real-world examples.\"})})}),className:\"framer-1k2650w\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;IBM Plex Sans Condensed-regular\"],layoutDependency:layoutDependency,layoutId:\"dCwdipRyc\",style:{\"--extracted-1w3ko1f\":\"rgba(114, 114, 114, 1)\",\"--framer-paragraph-spacing\":\"0px\"},text:XFrumXhPJ,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})});});const css=['.framer-vsbgG [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-vsbgG .framer-1wh0pih { display: block; }\",\".framer-vsbgG .framer-si3xnj { align-content: start; align-items: start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vsbgG .framer-1mf7eu2 { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 40px 32px 40px; position: relative; width: 100%; }\",\".framer-vsbgG .framer-1pk1xvx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-vsbgG .framer-1gohp1n, .framer-vsbgG .framer-1k2650w { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vsbgG .framer-si3xnj, .framer-vsbgG .framer-1mf7eu2, .framer-vsbgG .framer-1pk1xvx { gap: 0px; } .framer-vsbgG .framer-si3xnj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-vsbgG .framer-si3xnj > :first-child, .framer-vsbgG .framer-1mf7eu2 > :first-child, .framer-vsbgG .framer-1pk1xvx > :first-child { margin-top: 0px; } .framer-vsbgG .framer-si3xnj > :last-child, .framer-vsbgG .framer-1mf7eu2 > :last-child, .framer-vsbgG .framer-1pk1xvx > :last-child { margin-bottom: 0px; } .framer-vsbgG .framer-1mf7eu2 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-vsbgG .framer-1pk1xvx > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 298\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"QZxrU8Far\":\"cardTitle\",\"XFrumXhPJ\":\"bodyText\",\"T0416SltD\":\"opacity\"}\n * @framerImmutableVariables true\n */const FramervSuFNxfvB=withCSS(Component,css,\"framer-vsbgG\");export default FramervSuFNxfvB;FramervSuFNxfvB.displayName=\"Feature Card\";FramervSuFNxfvB.defaultProps={height:298,width:320};addPropertyControls(FramervSuFNxfvB,{QZxrU8Far:{defaultValue:\"Remote Bootcamp course\",displayTextArea:false,title:\"Card title\",type:ControlType.String},XFrumXhPJ:{defaultValue:\"New to working remotely or just looking to increase your chances of acing your next application? In this quick, but actionable 4-module video course, you\u2019ll get the tactics you can use each step of the way, with real-world examples.\",displayTextArea:false,title:\"Body text\",type:ControlType.String},T0416SltD:{defaultValue:1,max:1,min:0,step:.01,title:\"Opacity\",type:ControlType.Number}});addFonts(FramervSuFNxfvB,[{family:\"Gelica SemiBold\",url:\"https://framerusercontent.com/assets/x2yafmhQPRyk5KYM4SbugkUGCUA.woff\"},{family:\"IBM Plex Sans Condensed\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbarwq_jhJsM.woff2\",weight:\"400\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervSuFNxfvB\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"320\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"298\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"QZxrU8Far\\\":\\\"cardTitle\\\",\\\"XFrumXhPJ\\\":\\\"bodyText\\\",\\\"T0416SltD\\\":\\\"opacity\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vSuFNxfvB.map"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useStore", "createStore", "featureFrame", "Component", "props", "store", "p", "createCardOverride", "featureName", "setStore", "card1", "card2", "card3", "card4", "card5", "card6", "JobCount", "Component", "props", "apiData", "setApiData", "ye", "ue", "fetchData", "jobCount", "response", "error", "replacePlaceholders", "obj", "J", "q", "j", "newObj", "key", "newProps", "p", "ReplaceThisMonth", "currentMonth", "setCurrentMonth", "date", "options", "formattedDate", "vSuFNxfvB_exports", "__export", "__FramerMetadata__", "vSuFNxfvB_default", "cycleOrder", "variantClassNames", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "bodyText", "cardTitle", "height", "id", "opacity", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "QZxrU8Far", "XFrumXhPJ", "T0416SltD", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "css", "FramervSuFNxfvB", "withCSS", "vSuFNxfvB_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__"]
}
