{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/zMmwGo5K3m9mA48JAfwG/ZWoRvyiEP3wyIbMad0sU/Counter1.js", "ssg:https://framerusercontent.com/modules/bNwDKpBZupRThxYOHqFo/4D81dLSfXFdqkeZEtBFe/mFgaU7eoj.js", "ssg:https://framerusercontent.com/modules/6SDAOuSnCtExTNMjBMFB/pO1zEXf35phJFbZHqDjb/mFgaU7eoj.js", "ssg:https://framerusercontent.com/modules/6SDAOuSnCtExTNMjBMFB/pO1zEXf35phJFbZHqDjb/mFgaU7eoj-0.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const CounterStyles={container:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"}};const applyGradient=(text,gradientEnabled,angle,color1,color2)=>{if(gradientEnabled){const gradient=`linear-gradient(${angle}deg, ${color1}, ${color2})`;return /*#__PURE__*/_jsx(\"span\",{style:{backgroundImage:gradient,WebkitBackgroundClip:\"text\",WebkitTextFillColor:\"transparent\",display:\"inline-block\"},children:text});}else{return text;}};export function Counter(props){const{start,end,speed,gapSize,prefixEnabled,prefixText,prefixFont,prefixColor,prefixGradientEnabled,prefixGradientAngle,prefixGradientColor1,prefixGradientColor2,suffixEnabled,suffixText,suffixFont,suffixColor,suffixGradientEnabled,suffixGradientAngle,suffixGradientColor1,suffixGradientColor2,textGradientEnabled,textGradientAngle,textGradientColor1,textGradientColor2,loop,decimalSeparatorType,textSize,selectedFont,textColor,startOnViewport,restartOnViewport,incrementType}=props;const[count,setCount]=useState(start);const[isVisible,setIsVisible]=useState(false);const containerRef=useRef(null);useEffect(()=>{const observer=new IntersectionObserver(entries=>{const entry=entries[0];setIsVisible(entry.isIntersecting);});if(containerRef.current){observer.observe(containerRef.current);}return()=>{if(containerRef.current){observer.unobserve(containerRef.current);}};},[]);useEffect(()=>{const updateCount=()=>{const increment=incrementType===\"integer\"?1:.1;if(count<end){setCount(prevCount=>parseFloat((prevCount+increment).toFixed(1)));}else if(loop){setCount(start);}};if(isVisible||!startOnViewport&&start!==end){const intervalId=setInterval(updateCount,speed);return()=>{clearInterval(intervalId);};}else if(startOnViewport&&isVisible){setCount(start);}},[count,start,end,loop,isVisible,speed,startOnViewport,incrementType]);useEffect(()=>{if(restartOnViewport&&isVisible){setCount(start)// Restart the animation when re-entering the viewport\n;}},[isVisible,restartOnViewport,start]);const formatNumber=number=>{if(decimalSeparatorType===\"comma\"){return number.toLocaleString(\"en-US\");}else if(decimalSeparatorType===\"period\"){return number.toLocaleString(\"en-US\").replace(/,/g,\".\");}else{return number.toFixed(incrementType===\"integer\"?0:1);}};return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{...CounterStyles.container,gap:`${gapSize}px`,flexDirection:\"row\",alignItems:\"center\",fontSize:`${textSize}px`,fontFamily:selectedFont.fontFamily,fontWeight:selectedFont.fontWeight,color:textColor},children:[prefixEnabled&&applyGradient(/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:prefixFont.fontFamily,fontWeight:prefixFont.fontWeight,color:prefixGradientEnabled?\"transparent\":prefixColor},children:prefixText}),prefixGradientEnabled,prefixGradientAngle,prefixGradientColor1,prefixGradientColor2),applyGradient(formatNumber(count),textGradientEnabled,textGradientAngle,textGradientColor1,textGradientColor2),suffixEnabled&&applyGradient(/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:suffixFont.fontFamily,fontWeight:suffixFont.fontWeight,color:suffixGradientEnabled?\"transparent\":suffixColor},children:suffixText}),suffixGradientEnabled,suffixGradientAngle,suffixGradientColor1,suffixGradientColor2)]});}Counter.defaultProps={start:0,end:100,speed:100,prefixEnabled:false,suffixEnabled:false,loop:false,decimalSeparatorType:\"comma\",textSize:36,selectedFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},textColor:\"#D3D3D3\",startOnViewport:false,incrementType:\"integer\",textGradientEnabled:false,textGradientAngle:90,textGradientColor1:\"#000\",textGradientColor2:\"#fff\",prefixText:\"\",prefixFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},prefixColor:\"#000\",prefixGradientEnabled:false,prefixGradientAngle:90,prefixGradientColor1:\"#000\",prefixGradientColor2:\"#fff\",suffixText:\"\",suffixFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},suffixColor:\"#000\",suffixGradientEnabled:false,suffixGradientAngle:90,suffixGradientColor1:\"#000\",suffixGradientColor2:\"#fff\"};addPropertyControls(Counter,{startOnViewport:{type:ControlType.Boolean,title:\"Viewport\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},restartOnViewport:{type:ControlType.Boolean,title:\"Replay\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},selectedFont:{title:\"Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},textSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:240,step:1},textColor:{type:ControlType.Color,title:\"Font Color\"},textGradientEnabled:{type:ControlType.Boolean,title:\"Text Gradient\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},textGradientAngle:{type:ControlType.Number,title:\"Text Gradient Angle\",min:0,max:360,defaultValue:90,hidden:props=>!props.textGradientEnabled},textGradientColor1:{type:ControlType.Color,title:\"Text Gradient Color 1\",defaultValue:\"#000\",hidden:props=>!props.textGradientEnabled},textGradientColor2:{type:ControlType.Color,title:\"Text Gradient Color 2\",defaultValue:\"#fff\",hidden:props=>!props.textGradientEnabled},start:{type:ControlType.Number,title:\"Start Number\",defaultValue:0,displayStepper:true},end:{type:ControlType.Number,title:\"End Number\",defaultValue:10,displayStepper:true},decimalSeparatorType:{type:ControlType.Enum,title:\"Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"],optionTitles:[\"Comma (1,000)\",\"Decimal (1.000)\",\"None\"]},incrementType:{type:ControlType.Enum,title:\"Increment Type\",defaultValue:\"integer\",options:[\"integer\",\"decimal\"],optionTitles:[\"Integer\",\"Decimal\"]},prefixEnabled:{type:ControlType.Boolean,title:\"Prefix\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},prefixText:{type:ControlType.String,title:\"Prefix Text\",defaultValue:\"\",hidden:props=>!props.prefixEnabled},prefixFont:{title:\"Prefix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},hidden:props=>!props.prefixEnabled},prefixColor:{type:ControlType.Color,title:\"Prefix Color\",hidden:props=>!props.prefixEnabled},prefixGradientEnabled:{type:ControlType.Boolean,title:\"Prefix Gradient\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",hidden:props=>!props.prefixEnabled},prefixGradientAngle:{type:ControlType.Number,title:\"Prefix Gradient Angle\",min:0,max:360,defaultValue:90,hidden:props=>!props.prefixEnabled||!props.prefixGradientEnabled},prefixGradientColor1:{type:ControlType.Color,title:\"Prefix Gradient Color 1\",defaultValue:\"#000\",hidden:props=>!props.prefixEnabled||!props.prefixGradientEnabled},prefixGradientColor2:{type:ControlType.Color,title:\"Prefix Gradient Color 2\",defaultValue:\"#fff\",hidden:props=>!props.prefixEnabled||!props.prefixGradientEnabled},suffixEnabled:{type:ControlType.Boolean,title:\"Suffix\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},suffixText:{type:ControlType.String,title:\"Suffix Text\",defaultValue:\"\",hidden:props=>!props.suffixEnabled},suffixFont:{title:\"Suffix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},hidden:props=>!props.suffixEnabled},suffixColor:{type:ControlType.Color,title:\"Suffix Color\",hidden:props=>!props.suffixEnabled},suffixGradientEnabled:{type:ControlType.Boolean,title:\"Suffix Gradient\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",hidden:props=>!props.suffixEnabled},suffixGradientAngle:{type:ControlType.Number,title:\"Suffix Gradient Angle\",min:0,max:360,defaultValue:90,hidden:props=>!props.suffixEnabled||!props.suffixGradientEnabled},suffixGradientColor1:{type:ControlType.Color,title:\"Suffix Gradient Color 1\",defaultValue:\"#000\",hidden:props=>!props.suffixEnabled||!props.suffixGradientEnabled},suffixGradientColor2:{type:ControlType.Color,title:\"Suffix Gradient Color 2\",defaultValue:\"#fff\",hidden:props=>!props.suffixEnabled||!props.suffixGradientEnabled},gapSize:{type:ControlType.Number,title:\"Gap Size\",defaultValue:4,min:0,max:100,step:4},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:2e3,step:10},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",description:\"[Built by Asif Kabir](https://www.youtube.com/channel/UCujbStV-Rp-QGfiHOKA9AvA)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"Counter\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter1.map", "// Generated by Framer (3266cfb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/6SDAOuSnCtExTNMjBMFB/pO1zEXf35phJFbZHqDjb/mFgaU7eoj.js\";import LinkedInButton from\"https://framerusercontent.com/modules/lQZr2FPqBfZuWMDiQ2qB/K3sPQjRcQ2tibQgq1ZnC/GJ0YDEj5x.js\";const EmbedFonts=getFonts(Embed);const LinkedInButtonFonts=getFonts(LinkedInButton);const cycleOrder=[\"bZMuXJ9Yq\",\"dMbsEoEIG\",\"aI8nqdrhD\"];const serializationHash=\"framer-FDHvl\";const variantClassNames={aI8nqdrhD:\"framer-v-9ohbn7\",bZMuXJ9Yq:\"framer-v-siigo5\",dMbsEoEIG:\"framer-v-qmo6qq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"bZMuXJ9Yq\",\"Variant 2\":\"dMbsEoEIG\",\"Variant 3\":\"aI8nqdrhD\"};const getProps=({frase,height,hTML,id,image,link,linkedInButtonVisible,nombre,subtitulo,width,...props})=>{return{...props,aqG82lCwQ:linkedInButtonVisible??props.aqG82lCwQ??true,I3ET_Zc2q:subtitulo??props.I3ET_Zc2q??\"Curso de Dise\\xf1o UX UI\",KrGfmQtkk:hTML??props.KrGfmQtkk??'<img src=\"https://flagcdn.com/ar.svg\" width=\"32\" alt=\"Argentina\">',l3P8mcUpd:nombre??props.l3P8mcUpd??\"Maria Paula Spinelli\",m9uJqMtHL:image??props.m9uJqMtHL??{alt:\"\",pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/8d1LuzJkbhGs0SWdlqn2eX6yBs.webp\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"bZMuXJ9Yq\",VBHYLwQug:frase??props.VBHYLwQug??'\"Este curso me permiti\\xf3 aprender sobre dise\\xf1o de soluciones digitales centradas en el cliente, desde la investigaci\\xf3n hasta la evaluaci\\xf3n final, creando experiencias excepcionales. Fue una experiencia incre\\xedble con compa\\xf1eros y docentes excelentes.\"',ZpfZ6WfGG:link??props.ZpfZ6WfGG};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,l3P8mcUpd,I3ET_Zc2q,VBHYLwQug,ZpfZ6WfGG,KrGfmQtkk,m9uJqMtHL,aqG82lCwQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bZMuXJ9Yq\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterlymelz=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"aI8nqdrhD\");});const onMouseLeave187o8wt=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"dMbsEoEIG\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-siigo5\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"bZMuXJ9Yq\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0e8881df-0fbd-413d-80f5-329456324f5b, rgb(226, 232, 240))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-44a0a9a4-0390-48be-ad51-663f096aa2a7, rgb(255, 255, 255))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},variants:{aI8nqdrhD:{backgroundColor:\"var(--token-4eb70d9e-cecf-4ffc-a539-d8291d8e7dbb, rgb(255, 255, 255))\"}},...addPropertyOverrides({aI8nqdrhD:{\"data-framer-name\":\"Variant 3\",\"data-highlight\":true,onMouseLeave:onMouseLeave187o8wt},dMbsEoEIG:{\"data-framer-name\":\"Variant 2\",\"data-highlight\":true,onMouseEnter:onMouseEnterlymelz}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1avt8bv\",layoutDependency:layoutDependency,layoutId:\"pimCQSsQd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nkvvs1\",\"data-framer-name\":\"avatar + flag\",layoutDependency:layoutDependency,layoutId:\"RnD86FdH9\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+0+0+0),pixelHeight:100,pixelWidth:100,sizes:\"48px\",...toResponsiveImage(m9uJqMtHL),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-ashffg\",\"data-framer-name\":\"avatar\",layoutDependency:layoutDependency,layoutId:\"OyH1frNwo\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hoimvw\",layoutDependency:layoutDependency,layoutId:\"KoHTLi_1B\",style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1u72wa8-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"r1KJ0VtiP-container\",nodeId:\"r1KJ0VtiP\",rendersWithMotion:true,scopeId:\"mFgaU7eoj\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:KrGfmQtkk,id:\"r1KJ0VtiP\",layoutId:\"r1KJ0VtiP\",radius:\"0px\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\",zoom:1})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15omif\",\"data-framer-name\":\"nombre + rol\",layoutDependency:layoutDependency,layoutId:\"Qsu9BzPn3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-23fa3ee4-0007-43cc-9fd5-176c4475b5ba, rgb(2, 8, 23)))\"},children:\"Maria Paula Spinelli\"})}),className:\"framer-oodz0d\",\"data-framer-name\":\"Susana Garc\\xeda\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"bkxFIBcS_\",style:{\"--extracted-r6o4lv\":\"var(--token-23fa3ee4-0007-43cc-9fd5-176c4475b5ba, rgb(2, 8, 23))\",\"--framer-paragraph-spacing\":\"0px\"},text:l3P8mcUpd,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-23fa3ee4-0007-43cc-9fd5-176c4475b5ba, rgb(2, 8, 23)))\"},children:\"Curso de Dise\\xf1o UX UI\"})}),className:\"framer-1k8zbpk\",\"data-framer-name\":\"Carrera de Dise\\xf1o UX/UI\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ttqx0uYqT\",style:{\"--extracted-r6o4lv\":\"var(--token-23fa3ee4-0007-43cc-9fd5-176c4475b5ba, rgb(2, 8, 23))\",\"--framer-paragraph-spacing\":\"0px\"},text:I3ET_Zc2q,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rv22c1\",\"data-framer-name\":\"comilla + texto + boton\",layoutDependency:layoutDependency,layoutId:\"oHIJRhrMs\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-31050c\",layoutDependency:layoutDependency,layoutId:\"QZBQIQ6fh\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pugj4p\",\"data-framer-name\":\"Quotes\",layoutDependency:layoutDependency,layoutId:\"rdaA6EAb_\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lhjlk1\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"HulfDC_AR\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 10\"><path d=\"M 6.25 1.5 L 6.25 7 C 6.249 7.795 5.933 8.558 5.37 9.12 C 4.808 9.683 4.045 9.999 3.25 10 C 3.117 10 2.99 9.947 2.896 9.854 C 2.803 9.76 2.75 9.633 2.75 9.5 C 2.75 9.367 2.803 9.24 2.896 9.146 C 2.99 9.053 3.117 9 3.25 9 C 3.78 9 4.289 8.789 4.664 8.414 C 5.039 8.039 5.25 7.53 5.25 7 L 5.25 6.5 L 1.5 6.5 C 1.235 6.5 0.98 6.395 0.793 6.207 C 0.605 6.02 0.5 5.765 0.5 5.5 L 0.5 1.5 C 0.5 1.235 0.605 0.98 0.793 0.793 C 0.98 0.605 1.235 0.5 1.5 0.5 L 5.25 0.5 C 5.515 0.5 5.77 0.605 5.957 0.793 C 6.145 0.98 6.25 1.235 6.25 1.5 Z M 12.5 0.5 L 8.75 0.5 C 8.485 0.5 8.23 0.605 8.043 0.793 C 7.855 0.98 7.75 1.235 7.75 1.5 L 7.75 5.5 C 7.75 5.765 7.855 6.02 8.043 6.207 C 8.23 6.395 8.485 6.5 8.75 6.5 L 12.5 6.5 L 12.5 7 C 12.5 7.53 12.289 8.039 11.914 8.414 C 11.539 8.789 11.03 9 10.5 9 C 10.367 9 10.24 9.053 10.146 9.146 C 10.053 9.24 10 9.367 10 9.5 C 10 9.633 10.053 9.76 10.146 9.854 C 10.24 9.947 10.367 10 10.5 10 C 11.295 9.999 12.058 9.683 12.62 9.12 C 13.183 8.558 13.499 7.795 13.5 7 L 13.5 1.5 C 13.5 1.235 13.395 0.98 13.207 0.793 C 13.02 0.605 12.765 0.5 12.5 0.5 Z\" fill=\"var(--token-23fa3ee4-0007-43cc-9fd5-176c4475b5ba, rgb(2, 8, 23)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></svg>',svgContentId:10423537196,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-23fa3ee4-0007-43cc-9fd5-176c4475b5ba, rgb(2, 8, 23)))\"},children:'\"Este curso me permiti\\xf3 aprender sobre dise\\xf1o de soluciones digitales centradas en el cliente, desde la investigaci\\xf3n hasta la evaluaci\\xf3n final, creando experiencias excepcionales. Fue una experiencia incre\\xedble con compa\\xf1eros y docentes excelentes.\"'})}),className:\"framer-12887on\",\"data-framer-name\":\"Mi experiencia en Coderhouse fue incre\\xedble. Aprend\\xed habilidades t\\xe9cnicas y resoluci\\xf3n de problemas, y encontr\\xe9 un trabajo en mi campo gracias a su apoyo y comunidad acogedora.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ixzbiU3ac\",style:{\"--extracted-r6o4lv\":\"var(--token-23fa3ee4-0007-43cc-9fd5-176c4475b5ba, rgb(2, 8, 23))\",\"--framer-paragraph-spacing\":\"0px\"},text:VBHYLwQug,verticalAlignment:\"top\",withExternalLayout:true})]}),aqG82lCwQ&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+24+226+0+(0+146+(Math.max(0,((componentViewport?.height||450)-48-226)/1)*1-0-182)/1*1),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zz2kdw-container\",layoutDependency:layoutDependency,layoutId:\"flnncfeiW-container\",nodeId:\"flnncfeiW\",rendersWithMotion:true,scopeId:\"mFgaU7eoj\",children:/*#__PURE__*/_jsx(LinkedInButton,{height:\"100%\",id:\"flnncfeiW\",layoutId:\"flnncfeiW\",style:{height:\"100%\",width:\"100%\"},v7nbzf0iA:\"var(--token-44a0a9a4-0390-48be-ad51-663f096aa2a7, rgb(255, 255, 255))\",variant:\"N7hsGctL9\",Vq3GCpXDj:ZpfZ6WfGG,width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FDHvl.framer-1n1zsos, .framer-FDHvl .framer-1n1zsos { display: block; }\",\".framer-FDHvl.framer-siigo5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 450px; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 296px; }\",\".framer-FDHvl .framer-1avt8bv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FDHvl .framer-nkvvs1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FDHvl .framer-ashffg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 48px; }\",\".framer-FDHvl .framer-1hoimvw { align-content: center; align-items: center; aspect-ratio: 1.6 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 20px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FDHvl .framer-1u72wa8-container { flex: none; height: 20px; position: relative; width: 32px; }\",\".framer-FDHvl .framer-15omif { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FDHvl .framer-oodz0d, .framer-FDHvl .framer-12887on { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 248px; word-break: break-word; word-wrap: break-word; }\",\".framer-FDHvl .framer-1k8zbpk { flex: none; height: 20px; position: relative; white-space: pre-wrap; width: 248px; word-break: break-word; word-wrap: break-word; }\",\".framer-FDHvl .framer-1rv22c1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FDHvl .framer-31050c { 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; position: relative; width: 100%; }\",\".framer-FDHvl .framer-pugj4p { flex: none; gap: 0px; height: 16px; overflow: visible; position: relative; width: 16px; }\",\".framer-FDHvl .framer-1lhjlk1 { flex: none; height: 10px; left: 1px; position: absolute; top: 3px; width: 14px; }\",\".framer-FDHvl .framer-zz2kdw-container { flex: none; height: 36px; position: relative; width: 100%; }\",'.framer-FDHvl[data-border=\"true\"]::after, .framer-FDHvl [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 450\n * @framerIntrinsicWidth 296\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"dMbsEoEIG\":{\"layout\":[\"fixed\",\"fixed\"]},\"aI8nqdrhD\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"l3P8mcUpd\":\"nombre\",\"I3ET_Zc2q\":\"subtitulo\",\"VBHYLwQug\":\"frase\",\"ZpfZ6WfGG\":\"link\",\"KrGfmQtkk\":\"hTML\",\"m9uJqMtHL\":\"image\",\"aqG82lCwQ\":\"linkedInButtonVisible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramermFgaU7eoj=withCSS(Component,css,\"framer-FDHvl\");export default FramermFgaU7eoj;FramermFgaU7eoj.displayName=\"AR1\";FramermFgaU7eoj.defaultProps={height:450,width:296};addPropertyControls(FramermFgaU7eoj,{variant:{options:[\"bZMuXJ9Yq\",\"dMbsEoEIG\",\"aI8nqdrhD\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},l3P8mcUpd:{defaultValue:\"Maria Paula Spinelli\",displayTextArea:false,title:\"Nombre\",type:ControlType.String},I3ET_Zc2q:{defaultValue:\"Curso de Dise\\xf1o UX UI\",displayTextArea:false,title:\"Subtitulo\",type:ControlType.String},VBHYLwQug:{defaultValue:'\"Este curso me permiti\\xf3 aprender sobre dise\\xf1o de soluciones digitales centradas en el cliente, desde la investigaci\\xf3n hasta la evaluaci\\xf3n final, creando experiencias excepcionales. Fue una experiencia incre\\xedble con compa\\xf1eros y docentes excelentes.\"',displayTextArea:false,title:\"Frase\",type:ControlType.String},ZpfZ6WfGG:{title:\"Link\",type:ControlType.Link},KrGfmQtkk:{defaultValue:'<img src=\"https://flagcdn.com/ar.svg\" width=\"32\" alt=\"Argentina\">',displayTextArea:true,title:\"HTML\",type:ControlType.String},m9uJqMtHL:{__defaultAssetReference:\"data:framer/asset-reference,8d1LuzJkbhGs0SWdlqn2eX6yBs.webp?originalFilename=Maria+Spinelli+Coderhouse.webp&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,8d1LuzJkbhGs0SWdlqn2eX6yBs.webp?originalFilename=Maria+Spinelli+Coderhouse.webp&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},aqG82lCwQ:{defaultValue:true,title:\"LinkedIn Button Visible\",type:ControlType.Boolean}});addFonts(FramermFgaU7eoj,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...EmbedFonts,...LinkedInButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermFgaU7eoj\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dMbsEoEIG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aI8nqdrhD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"450\",\"framerVariables\":\"{\\\"l3P8mcUpd\\\":\\\"nombre\\\",\\\"I3ET_Zc2q\\\":\\\"subtitulo\\\",\\\"VBHYLwQug\\\":\\\"frase\\\",\\\"ZpfZ6WfGG\\\":\\\"link\\\",\\\"KrGfmQtkk\\\":\\\"hTML\\\",\\\"m9uJqMtHL\\\":\\\"image\\\",\\\"aqG82lCwQ\\\":\\\"linkedInButtonVisible\\\"}\",\"framerIntrinsicWidth\":\"296\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3266cfb)\nimport*as localizedValues from\"./mFgaU7eoj-0.js\";const valuesByLocaleId={nmtVjfgrF:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-23fa3ee4-0007-43cc-9fd5-176c4475b5ba, rgb(2, 8, 23)))\"},children:\"Maria Paula Spinelli\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-23fa3ee4-0007-43cc-9fd5-176c4475b5ba, rgb(2, 8, 23)))\"},children:\"Curso de Design UX UI\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-23fa3ee4-0007-43cc-9fd5-176c4475b5ba, rgb(2, 8, 23)))\"},children:'\"Este curso me permitiu aprender sobre design de solu\\xe7\\xf5es digitais centradas no cliente, desde a pesquisa at\\xe9 a avalia\\xe7\\xe3o final, criando experi\\xeancias excepcionais. Foi uma experi\\xeancia incr\\xedvel com colegas e professores excelentes.\"'})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["init_ssg_sandbox_shims", "CounterStyles", "applyGradient", "text", "gradientEnabled", "angle", "color1", "color2", "gradient", "p", "Counter", "props", "start", "end", "speed", "gapSize", "prefixEnabled", "prefixText", "prefixFont", "prefixColor", "prefixGradientEnabled", "prefixGradientAngle", "prefixGradientColor1", "prefixGradientColor2", "suffixEnabled", "suffixText", "suffixFont", "suffixColor", "suffixGradientEnabled", "suffixGradientAngle", "suffixGradientColor1", "suffixGradientColor2", "textGradientEnabled", "textGradientAngle", "textGradientColor1", "textGradientColor2", "loop", "decimalSeparatorType", "textSize", "selectedFont", "textColor", "startOnViewport", "restartOnViewport", "incrementType", "count", "setCount", "ye", "isVisible", "setIsVisible", "containerRef", "pe", "ue", "observer", "entries", "entry", "updateCount", "increment", "prevCount", "intervalId", "formatNumber", "number", "u", "motion", "addPropertyControls", "ControlType", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "mFgaU7eoj_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "init_ssg_sandbox_shims", "v0", "p", "x", "motion", "v1", "v2", "__FramerMetadata__", "valuesByLocaleId", "mFgaU7eoj_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "EmbedFonts", "getFonts", "Embed", "LinkedInButtonFonts", "GJ0YDEj5x_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "frase", "height", "hTML", "id", "image", "link", "linkedInButtonVisible", "nombre", "subtitulo", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "l3P8mcUpd", "I3ET_Zc2q", "VBHYLwQug", "ZpfZ6WfGG", "KrGfmQtkk", "m9uJqMtHL", "aqG82lCwQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterlymelz", "args", "onMouseLeave187o8wt", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "getLocalizedValue", "SVG", "css", "FramermFgaU7eoj", "withCSS", "mFgaU7eoj_default", "addPropertyControls", "ControlType", "addFonts"]
}
