{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/p2C94CwZDjXxBCOPGhOT/6EN5qTiKImdUQq9P11sE/Gratitude.js", "ssg:https://framerusercontent.com/modules/pAznDYQX48iUthPyJrGV/hsdiXjrbx1nxd1GW4Zkw/EFn_wg2qH.js", "ssg:https://framerusercontent.com/modules/tHETar6gbUjLisW3urVs/z2w2HN8PnrGIwOcv5NWG/kwGRCq5c4-0.js", "ssg:https://framerusercontent.com/modules/tHETar6gbUjLisW3urVs/z2w2HN8PnrGIwOcv5NWG/kwGRCq5c4.js", "ssg:https://framerusercontent.com/modules/78qDiHxBGhlFZAGGOn6g/RPkBGET7Pb9Sd0QpVoeW/kwGRCq5c4.js", "ssg:https://framerusercontent.com/modules/41OfTVUKpCtMwwiNWB0D/YIer8xIzfe83RJDzhPYW/oSVyqwyCq-0.js", "ssg:https://framerusercontent.com/modules/41OfTVUKpCtMwwiNWB0D/YIer8xIzfe83RJDzhPYW/oSVyqwyCq.js", "ssg:https://framerusercontent.com/modules/vFJU67li9LpxZENNsfDg/yhzNJqS1oNGtPAJMn5Qa/oSVyqwyCq.js"],
  "sourcesContent": ["// Gratitude Wall Component for Framer\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";// This is the main component you'll add to your Framer page\nexport default function GratitudeWall(){const[gratitude,setGratitude]=useState(\"\");const[entries,setEntries]=useState([]);const[isDiscountActive,setIsDiscountActive]=useState(false);// Load existing entries when component mounts\nuseEffect(()=>{// Real gratitude messages\nconst realGratitudeEntries=[\"having one more day of my life to enjoy, sunlight, my loved ones\",\"I'm greatful for the gift of life and that God is carrying me out through everything, I'm also greatful for my mom\",\"My life\",\"My wife\",\"To be alive\",\"it's sunny outside!!\",\"I'm Alive!\",\"I'm grateful for making new friends today!\",\"I'm grateful for the opportunity to learn something new. Every day brings a chance to grow.\",\"it's 2am right now, and I'm grateful that I've studied the major thing i wanted to study before going to bed.\",\"I am grateful for Dr. Ryan for recommending this AI tool\",\"the app haha i have upcoming inorganic quiz\",\"discovering Jungle\",\"Almost being done with today's classes\",\"jungle helping me learn\",\"waking up\",\"Jungle !!!!\",\"To be healthy in the body and mind!\",\"Meeting new people :)\",\"My family and friends!\",\"I cooked & ate the best tacos for taco tuesday. Topped with lettuce, tomato, and queso fresca. Today its tacos!\",\"My girlfriend\",\"The way that technology gives me more free time\",\"That i get to study something i am intrested in\",\"finding jungle\",\"Factor meals lol\",\"to having a healthy body and mind.\",\"being able to write my exams smoothly\",\"That I'm trying to be a better student, little by little, but I'm trying and i think, I'm doing a good job\",\"Jungle, honestly \uD83D\uDE05\",\"free drink from dunkin\",\"Mmm, maybe that I'm trying to be a better student, and i found this app (first the website) that i actually like, and i wanna be better so my dad can be proud of me\",\"Waking up to see another day\",\"Helpful creators like thr creators of jungle. Making academics a more efficient and helpful place.\",\"Jungle has helped me with my exams, I have one today and I'm confident!\",\"To have an amazing girlfriend.\",\"Having the opportunity to make this day possibly the best yet.\",\"Being able to study with this tool !!!!!\",\"I think in general I'm grateful that I have a team or support system that has my back because they want me to succeed in what I want to accomplish and that's something I really want to do strive in the end.\",\"I am grateful for my family and the support they've always shown.\",\"my cat, olive!\",\"I finally got over my jet-lag and had my first good day of classes\",\"Being resilient even when so many things feel like they're going wrong\",\"I am grateful for my support system holding me down as I go through a tough breakup\",\"The architecture in my building. I freaking love it\",\"grateful for the ability to study and understand\",\"The crazy good food my roommate made last night\",\"the farmer's market!! just met the sweetest lady and bought a delicious from her\",\"vibing to podcasts on my walk to campus everyday\",\"the new friends i made this week\",\"my brand new PUPPY !!! his name is mochi\",\"my professor being understanding of a tough time I'm going through and also challenging me to do my best work\",\"cotton candy sunset tn\u263A\uFE0F\uD83C\uDF05\",\"the dining hall, even if the food is kinda musty\",\"grateful that my bio professor tells such inspiring stories from her time doing research!\",\"a good banana ( a little brown, not too brown tho)\",\"good plumbing \uD83D\uDE33\",\"grateful for how much time jungle saves me. i started being able to consistently make it to the gym for the first time\",\"I'm grateful for how kind people have been in helping me catch back up for our exam\",\"I'm grateful for ai helping me study better. even if ai is a bit scaryyy\"];// Shuffle the array and pick 20 random entries\nconst shuffleArray=array=>{// Create a copy of the array to avoid modifying the original\nconst newArray=[...array];for(let i=newArray.length-1;i>0;i--){const j=Math.floor(Math.random()*(i+1));[newArray[i],newArray[j]]=[newArray[j],newArray[i]];}return newArray;};const randomEntries=shuffleArray(realGratitudeEntries).slice(0,20);setEntries(randomEntries);},[]);// Handle form submission\nconst handleSubmit=e=>{e.preventDefault();if(gratitude.trim()){// Add new entry to the beginning of the array\nsetEntries([gratitude,...entries]);setGratitude(\"\");setIsDiscountActive(true);// In a real implementation, you would save this to a database\n// and generate a discount code\n}};return /*#__PURE__*/_jsxs(\"div\",{className:\"gratitude-container\",style:{fontFamily:\"Inter, sans-serif\",color:\"#3D3E3D\",width:\"100%\",maxWidth:\"1000px\",margin:\"0 auto\",padding:\"20px\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",width:\"728px\",flexDirection:\"column\",alignItems:\"center\",borderRadius:\"16px\",border:\"2px solid #EDF7F1\",margin:\"0 auto 40px auto\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",padding:\"12px 16px\",justifyContent:\"flex-start\",alignItems:\"center\",gap:\"10px\",alignSelf:\"stretch\",borderRadius:\"16px 16px 0px 0px\",background:\"#F3FCF7\",fontSize:\"16px\",color:\"#3D3E3D\"},children:[/*#__PURE__*/_jsx(\"span\",{role:\"img\",\"aria-label\":\"smiling face\",children:\"\uD83D\uDE0A\"}),\" \",\"share something you're grateful for and unlock 5% off\"]}),/*#__PURE__*/_jsxs(\"form\",{onSubmit:handleSubmit,style:{display:\"flex\",padding:\"12px 16px\",justifyContent:\"space-between\",alignItems:\"flex-end\",alignSelf:\"stretch\",borderRadius:\"0px 0px 16px 16px\",background:\"#FFF\",width:\"100%\"},children:[/*#__PURE__*/_jsx(\"textarea\",{value:gratitude,onChange:e=>setGratitude(e.target.value),placeholder:\"I'm grateful for\u2026\",rows:1,style:{flex:1,border:\"none\",outline:\"none\",fontSize:\"16px\",padding:\"8px 0\",color:\"#3D3E3D\",resize:\"none\",overflow:\"hidden\",minHeight:\"24px\",fontFamily:\"inherit\"},onInput:e=>{// Auto-resize the textarea based on content\ne.target.style.height=\"auto\";e.target.style.height=e.target.scrollHeight+\"px\";},onKeyDown:e=>{// Submit the form when Enter is pressed without Shift\nif(e.key===\"Enter\"&&!e.shiftKey){e.preventDefault()// Prevent default behavior (new line)\n;if(gratitude.trim()){handleSubmit(e);}}}}),/*#__PURE__*/_jsx(\"button\",{type:\"submit\",disabled:!gratitude.trim(),style:{display:\"flex\",padding:\"8px 16px\",justifyContent:\"center\",alignItems:\"flex-end\",background:\"transparent\",color:gratitude.trim()?\"#258548\":\"rgba(22, 163, 74, 0.44)\",border:\"none\",cursor:gratitude.trim()?\"pointer\":\"default\",fontWeight:\"600\",fontSize:\"16px\",textTransform:\"lowercase\",alignSelf:\"flex-end\"},children:\"submit\"})]})]}),isDiscountActive&&/*#__PURE__*/_jsx(\"div\",{style:{textAlign:\"center\",margin:\"0 auto 30px auto\",padding:\"16px\",background:\"#E3FCEF\",borderRadius:\"8px\",maxWidth:\"728px\"},children:/*#__PURE__*/_jsxs(\"p\",{style:{margin:0,fontSize:\"16px\",color:\"#3D3E3D\"},children:[\"You're amazing. Use the code\",\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"StayBlessed\"}),\" at checkout for 5% off.\"]})}),/*#__PURE__*/_jsx(\"h2\",{style:{textAlign:\"center\",margin:\"0 0 24px 0\",fontSize:\"24px\",fontWeight:\"600\",color:\"#3D3E3D\"},children:\"gratitude wall\"}),/*#__PURE__*/_jsx(\"div\",{style:{display:\"grid\",gridTemplateColumns:\"repeat(3, 240px)\",gap:\"16px\",width:\"100%\",justifyContent:\"center\",gridAutoFlow:\"row\",alignItems:\"start\"},children:entries.map((entry,index)=>/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",width:\"240px\",padding:\"16px\",flexDirection:\"column\",alignItems:\"flex-start\",gap:\"8px\",borderRadius:\"12px\",background:\"#F3FCF3\",height:\"auto\",alignSelf:\"flex-start\"},children:/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontSize:\"16px\",color:\"#3D3E3D\",wordWrap:\"break-word\",overflowWrap:\"break-word\",wordBreak:\"break-word\",maxWidth:\"208px\",whiteSpace:\"pre-wrap\"},children:entry})},index))})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"GratitudeWall\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Gratitude.map", "// Generated by Framer (46f1e3d)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={flAjaaNUs:{hover:true},kmz6XlA4X:{hover:true},mhJ7z77rP:{hover:true},MPe9BmeSR:{hover:true}};const cycleOrder=[\"mhJ7z77rP\",\"MPe9BmeSR\",\"flAjaaNUs\",\"kmz6XlA4X\"];const serializationHash=\"framer-oPMRw\";const variantClassNames={flAjaaNUs:\"framer-v-1hw8len\",kmz6XlA4X:\"framer-v-hsaiuv\",mhJ7z77rP:\"framer-v-vegd3j\",MPe9BmeSR:\"framer-v-ncp3y\"};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 transition1={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 Variants=motion(React.Fragment);const humanReadableVariantMap={\"monthly desktop\":\"flAjaaNUs\",\"monthly tablet\":\"kmz6XlA4X\",\"Variant 1\":\"mhJ7z77rP\",tablet:\"MPe9BmeSR\"};const getProps=({height,id,monthly,title,width,yearly,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;return{...props,B233fnQvR:monthly!==null&&monthly!==void 0?monthly:props.B233fnQvR,JPnAHyOjh:yearly!==null&&yearly!==void 0?yearly:props.JPnAHyOjh,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"mhJ7z77rP\",Xei6qxKWM:(_ref1=title!==null&&title!==void 0?title:props.Xei6qxKWM)!==null&&_ref1!==void 0?_ref1:\"Upgrade to Super Learner\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,JPnAHyOjh,Xei6qxKWM,B233fnQvR,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mhJ7z77rP\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:JPnAHyOjh,openInNewTab:true,...addPropertyOverrides({\"kmz6XlA4X-hover\":{href:B233fnQvR},flAjaaNUs:{href:B233fnQvR}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-vegd3j\",className,classNames)} framer-1jx0xgp`,\"data-framer-name\":\"Variant 1\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"mhJ7z77rP\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(22, 163, 74)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"flAjaaNUs-hover\":{backgroundColor:\"rgb(16, 117, 53)\"},\"kmz6XlA4X-hover\":{backgroundColor:\"rgb(16, 117, 53)\"},\"mhJ7z77rP-hover\":{backgroundColor:\"rgb(16, 117, 53)\"},\"MPe9BmeSR-hover\":{backgroundColor:\"rgb(16, 117, 53)\"}},...addPropertyOverrides({\"flAjaaNUs-hover\":{\"data-framer-name\":undefined},\"kmz6XlA4X-hover\":{\"data-framer-name\":undefined},\"mhJ7z77rP-hover\":{\"data-framer-name\":undefined},\"MPe9BmeSR-hover\":{\"data-framer-name\":undefined},flAjaaNUs:{\"data-framer-name\":\"monthly desktop\"},kmz6XlA4X:{\"data-framer-name\":\"monthly tablet\"},MPe9BmeSR:{\"data-framer-name\":\"tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Upgrade to Super Learner\"})}),className:\"framer-2h4im6\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"S6IKgTF4A\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Xei6qxKWM,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kmz6XlA4X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Upgrade to Super Learner\"})})},MPe9BmeSR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Upgrade to Super Learner\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oPMRw.framer-1jx0xgp, .framer-oPMRw .framer-1jx0xgp { display: block; }\",\".framer-oPMRw.framer-vegd3j { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; text-decoration: none; width: 264px; }\",\".framer-oPMRw .framer-2h4im6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oPMRw.framer-vegd3j { gap: 0px; } .framer-oPMRw.framer-vegd3j > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oPMRw.framer-vegd3j > :first-child { margin-left: 0px; } .framer-oPMRw.framer-vegd3j > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 51\n * @framerIntrinsicWidth 264\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MPe9BmeSR\":{\"layout\":[\"fixed\",\"auto\"]},\"flAjaaNUs\":{\"layout\":[\"fixed\",\"auto\"]},\"kmz6XlA4X\":{\"layout\":[\"fixed\",\"auto\"]},\"FRNXQoKbI\":{\"layout\":[\"fixed\",\"auto\"]},\"NVMKtGNX0\":{\"layout\":[\"fixed\",\"auto\"]},\"QPE94CcF7\":{\"layout\":[\"fixed\",\"auto\"]},\"mIA6zrUF_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"JPnAHyOjh\":\"yearly\",\"Xei6qxKWM\":\"title\",\"B233fnQvR\":\"monthly\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEFn_wg2qH=withCSS(Component,css,\"framer-oPMRw\");export default FramerEFn_wg2qH;FramerEFn_wg2qH.displayName=\"Upgrade to Super Learner\";FramerEFn_wg2qH.defaultProps={height:51,width:264};addPropertyControls(FramerEFn_wg2qH,{variant:{options:[\"mhJ7z77rP\",\"MPe9BmeSR\",\"flAjaaNUs\",\"kmz6XlA4X\"],optionTitles:[\"Variant 1\",\"tablet\",\"monthly desktop\",\"monthly tablet\"],title:\"Variant\",type:ControlType.Enum},JPnAHyOjh:{title:\"Yearly\",type:ControlType.Link},Xei6qxKWM:{defaultValue:\"Upgrade to Super Learner\",displayTextArea:false,title:\"Title\",type:ControlType.String},B233fnQvR:{title:\"Monthly\",type:ControlType.Link}});addFonts(FramerEFn_wg2qH,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEFn_wg2qH\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"JPnAHyOjh\\\":\\\"yearly\\\",\\\"Xei6qxKWM\\\":\\\"title\\\",\\\"B233fnQvR\\\":\\\"monthly\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"264\",\"framerIntrinsicHeight\":\"51\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MPe9BmeSR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"flAjaaNUs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kmz6XlA4X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FRNXQoKbI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NVMKtGNX0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QPE94CcF7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mIA6zrUF_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EFn_wg2qH.map", "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\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Actualiza a Super Aprendiz\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport*as localizedValues from\"./kwGRCq5c4-0.js\";const valuesByLocaleId={LYsJOZ8X_: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\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import getLocalizedValue from\"https://framerusercontent.com/modules/tHETar6gbUjLisW3urVs/z2w2HN8PnrGIwOcv5NWG/kwGRCq5c4.js\";const enabledGestures={lS5g6c29c:{hover:true}};const serializationHash=\"framer-lZ3zY\";const variantClassNames={lS5g6c29c:\"framer-v-dptqsb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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 getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"lS5g6c29c\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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__*/_jsx(Link,{href:\"https://app.wisdolia.com/upgrade?subscription_period_type=monthly&subscription_plan_type=super_learner\",motionChild:true,nodeId:\"lS5g6c29c\",openInNewTab:true,scopeId:\"kwGRCq5c4\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-dptqsb\",className,classNames)} framer-u4z79w`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"lS5g6c29c\",ref:refBinding,style:{backgroundColor:\"rgb(22, 163, 74)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"lS5g6c29c-hover\":{backgroundColor:\"rgb(8, 117, 48)\"}},...addPropertyOverrides({\"lS5g6c29c-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"start my 7-day trial\"})}),className:\"framer-jnvmqh\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"KxBxZsKRB\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lZ3zY.framer-u4z79w, .framer-lZ3zY .framer-u4z79w { display: block; }\",\".framer-lZ3zY.framer-dptqsb { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-lZ3zY .framer-jnvmqh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lZ3zY.framer-dptqsb { gap: 0px; } .framer-lZ3zY.framer-dptqsb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-lZ3zY.framer-dptqsb > :first-child { margin-top: 0px; } .framer-lZ3zY.framer-dptqsb > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 49\n * @framerIntrinsicWidth 160\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"NJ2U6Bg94\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkwGRCq5c4=withCSS(Component,css,\"framer-lZ3zY\");export default FramerkwGRCq5c4;FramerkwGRCq5c4.displayName=\"Tablet - Upgrade to Super Learner\";FramerkwGRCq5c4.defaultProps={height:49,width:160};addFonts(FramerkwGRCq5c4,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkwGRCq5c4\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"160\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"49\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NJ2U6Bg94\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"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\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Actualiza a Super Aprendiz\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport*as localizedValues from\"./oSVyqwyCq-0.js\";const valuesByLocaleId={LYsJOZ8X_: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\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import getLocalizedValue from\"https://framerusercontent.com/modules/41OfTVUKpCtMwwiNWB0D/YIer8xIzfe83RJDzhPYW/oSVyqwyCq.js\";const enabledGestures={KnVv2YCX2:{hover:true}};const serializationHash=\"framer-7whrL\";const variantClassNames={KnVv2YCX2:\"framer-v-r91klj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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 getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"KnVv2YCX2\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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__*/_jsx(Link,{href:\"https://app.wisdolia.com/upgrade?subscription_period_type=monthly&subscription_plan_type=super_learner\",motionChild:true,nodeId:\"KnVv2YCX2\",openInNewTab:true,scopeId:\"oSVyqwyCq\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-r91klj\",className,classNames)} framer-1f591bb`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"KnVv2YCX2\",ref:refBinding,style:{backgroundColor:\"rgb(22, 163, 74)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"KnVv2YCX2-hover\":{backgroundColor:\"rgb(8, 117, 48)\"}},...addPropertyOverrides({\"KnVv2YCX2-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"start my 7-day trial\"})}),className:\"framer-9b2ket\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"x5dQqdZ4r\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7whrL.framer-1f591bb, .framer-7whrL .framer-1f591bb { display: block; }\",\".framer-7whrL.framer-r91klj { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-7whrL .framer-9b2ket { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7whrL.framer-r91klj { gap: 0px; } .framer-7whrL.framer-r91klj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7whrL.framer-r91klj > :first-child { margin-top: 0px; } .framer-7whrL.framer-r91klj > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 49\n * @framerIntrinsicWidth 160\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"AxEePjuT9\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroSVyqwyCq=withCSS(Component,css,\"framer-7whrL\");export default FrameroSVyqwyCq;FrameroSVyqwyCq.displayName=\"Mobile - Upgrade to Super Learner\";FrameroSVyqwyCq.defaultProps={height:49,width:160};addFonts(FrameroSVyqwyCq,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroSVyqwyCq\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"160\",\"framerIntrinsicHeight\":\"49\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AxEePjuT9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["GratitudeWall", "gratitude", "setGratitude", "ye", "entries", "setEntries", "isDiscountActive", "setIsDiscountActive", "ue", "randomEntries", "array", "newArray", "i", "j", "handleSubmit", "e", "u", "p", "entry", "index", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "monthly", "title", "width", "yearly", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "JPnAHyOjh", "Xei6qxKWM", "B233fnQvR", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerEFn_wg2qH", "withCSS", "EFn_wg2qH_default", "addPropertyControls", "ControlType", "addFonts", "kwGRCq5c4_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "p", "x", "motion", "__FramerMetadata__", "valuesByLocaleId", "kwGRCq5c4_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "getLocalizedValue", "css", "FramerkwGRCq5c4", "withCSS", "kwGRCq5c4_default", "addFonts", "oSVyqwyCq_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "p", "x", "motion", "__FramerMetadata__", "valuesByLocaleId", "oSVyqwyCq_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "getLocalizedValue", "css", "FrameroSVyqwyCq", "withCSS", "oSVyqwyCq_default", "addFonts"]
}
