{"version":3,"file":"NzLMjeAIQ.C4wjjuAK.mjs","names":["useStore","Component","props","Feather","props","className","Image","css","fonts","fonts","css","className","fonts","css","className","fonts","css","className","fonts","css","className"],"sources":["https:/framer.com/m/framer/store.js@^1.0.0","https:/framer.com/m/framer/utils.js@^0.9.0","https:/framerusercontent.com/modules/rQw2LVeyR4vGCOsTh96c/NOY0bffTYUuWjp0B5zCB/Character.js","https:/framerusercontent.com/modules/Jr4q6SzhVTxYYk2oz5zJ/yQZSjCjmoqrHnIqBEBwQ/CTw3KISp_.js","https:/framerusercontent.com/modules/qpWodGI6UE0zufWobaSz/wb4fFPxEA5I3YuAbQCbc/componentPresets.js","https:/framerusercontent.com/modules/QTyOYllsaQGkhD3mj6zB/u8PTLg13qzL9lXLjEFuI/A9wDnt8uI.js","https:/framerusercontent.com/modules/biVfgcpPQwsHPw9aHxsV/B4sSV7xc3TExAWeIKeSh/mvGwnpJfZ.js","https:/framerusercontent.com/modules/FuSMON7LBJGjVPBNxeBS/yJgwFxpxzFYmOvqIoFFK/mwUIGWRce.js","https:/framerusercontent.com/modules/r03x0wKjHHm9WnanSeuv/IeDFHYBfH24Mdkp0hs6d/NzLMjeAIQ.js"],"sourcesContent":["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map","export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}// Setting Maximum Text Character Limit in Framer CMS by Doruk Kavcioglu\n// Framer.guide | Framer Course - Coming Soon\nexport function withCharacterLimit(Component){return props=>{// Extract text property\nconst{text,...otherProps}=props;const limit=58// Set character limit\n;// Check if text is longer than limit, if so, trim it\nlet trimmedText=text;if((text===null||text===void 0?void 0:text.length)>limit){trimmedText=text.slice(0,limit).trim()// Trim extra spaces\n;// Check if trimmed text ends with dot\nif(trimmedText.endsWith(\".\")){trimmedText=trimmedText.slice(0,-1).trim()// Remove extra dot if it ends with a dot\n;}trimmedText+=\"...\"// Add three dots\n;}return /*#__PURE__*/_jsx(Component,{...otherProps,text:trimmedText});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withCharacterLimit\":{\"type\":\"reactHoc\",\"name\":\"withCharacterLimit\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Character.map","// Generated by Framer (f76946f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{withCharacterLimit}from\"https://framerusercontent.com/modules/rQw2LVeyR4vGCOsTh96c/NOY0bffTYUuWjp0B5zCB/Character.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/kH0lokxOcLuiYPIBkZcm/AVst5XCMTIeKmMB5tTvK/qdo3vjZUA.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/MKRPr6vS23ZHeX1zdatl/oC0q7IfAOhND1Euvefxr/t09ZYiHKR.js\";const FeatherFonts=getFonts(Feather);const RichTextWithCharacterLimit8lj0cm=withCodeBoundaryForOverrides(RichText,{nodeId:\"tGhJJU8Bx\",override:withCharacterLimit,scopeId:\"CTw3KISp_\"});const cycleOrder=[\"QOe_BlGre\",\"H0kdH6iDr\",\"VbBuYXy62\",\"UbFim3TM2\"];const serializationHash=\"framer-B3PxC\";const variantClassNames={H0kdH6iDr:\"framer-v-50s19j\",QOe_BlGre:\"framer-v-4t2k1t\",UbFim3TM2:\"framer-v-o7orxr\",VbBuYXy62:\"framer-v-gy1w7u\"};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 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={\"Mobile Next\":\"UbFim3TM2\",\"Mobile Prev\":\"VbBuYXy62\",Next:\"H0kdH6iDr\",Prev:\"QOe_BlGre\"};const getProps=({briefIntro,height,id,image,title,width,...props})=>{return{...props,AID6Oo7Au:image??props.AID6Oo7Au,EBWsb_YZI:title??props.EBWsb_YZI??\"Prev Assignment\",JLAsAE47l:briefIntro??props.JLAsAE47l??\"Prev Assignment\",variant:humanReadableVariantMap[props.variant]??props.variant??\"QOe_BlGre\"};};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,EBWsb_YZI,AID6Oo7Au,JLAsAE47l,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QOe_BlGre\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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-4t2k1t\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Prev\",layoutDependency:layoutDependency,layoutId:\"QOe_BlGre\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.5)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 2px 12px 0px rgba(40, 10, 74, 0.08)\",WebkitBackdropFilter:\"blur(5px)\",...style},...addPropertyOverrides({H0kdH6iDr:{\"data-framer-name\":\"Next\"},UbFim3TM2:{\"data-framer-name\":\"Mobile Next\"},VbBuYXy62:{\"data-framer-name\":\"Mobile Prev\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-778env\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"zyHFkBMjX\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-61f2c496-e947-41c2-afa9-47c0fa742d0d, rgb(242, 233, 247))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+(((componentViewport?.height||200)-20-307)/2+0+0)+0+-46.5),sizes:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,...toResponsiveImage(AID6Oo7Au),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-167lt3u\",\"data-framer-name\":\"Frame BG\",layoutDependency:layoutDependency,layoutId:\"EgqX0HUnj\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({UbFim3TM2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(10+((componentViewport?.height||200)-20-57)/2)+0+-46.5),sizes:`max((${componentViewport?.width||\"100vw\"} - 40px) / 2, 1px)`,...toResponsiveImage(AID6Oo7Au),...{positionX:\"center\",positionY:\"center\"}}},VbBuYXy62:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(10+((componentViewport?.height||200)-20-57)/2)+0+-46.5),sizes:`max((${componentViewport?.width||\"100vw\"} - 40px) / 2, 1px)`,...toResponsiveImage(AID6Oo7Au),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ncm4b8\",layoutDependency:layoutDependency,layoutId:\"RlbaFz7Km\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15bqhl\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"UcnJIHxgI\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vconyz-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"OBrvKEoaG-container\",nodeId:\"OBrvKEoaG\",rendersWithMotion:true,scopeId:\"CTw3KISp_\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-78c01051-2497-49bd-888e-8c5831a30467, rgb(13, 0, 13))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-left\",id:\"OBrvKEoaG\",layoutId:\"OBrvKEoaG\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({H0kdH6iDr:{iconSelection:\"arrow-right\"},UbFim3TM2:{iconSelection:\"arrow-right\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1y76yto\",\"data-styles-preset\":\"t09ZYiHKR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(51, 51, 51)))\"},children:\"Prev Assignment\"})}),className:\"framer-1lbcj93\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LmrrcJhPx\",style:{\"--extracted-r6o4lv\":\"var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(51, 51, 51))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:EBWsb_YZI,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithCharacterLimit8lj0cm,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pj6hvb\",\"data-styles-preset\":\"qdo3vjZUA\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-baf22446-be71-4eb5-9108-e27fb7b5c670, rgb(143, 143, 143)))\"},children:\"Prev Assignment\"})}),className:\"framer-8lj0cm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tGhJJU8Bx\",style:{\"--extracted-r6o4lv\":\"var(--token-baf22446-be71-4eb5-9108-e27fb7b5c670, rgb(143, 143, 143))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:JLAsAE47l,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-B3PxC.framer-1asgxn5, .framer-B3PxC .framer-1asgxn5 { display: block; }\",\".framer-B3PxC.framer-4t2k1t { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 280px; will-change: var(--framer-will-change-override, transform); }\",\".framer-B3PxC .framer-778env { align-content: center; align-items: center; aspect-ratio: 1.7666666666666666 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: var(--framer-aspect-ratio-supported, 113px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-B3PxC .framer-167lt3u { aspect-ratio: 1.7666666666666666 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: -1; }\",\".framer-B3PxC .framer-1ncm4b8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px 10px 10px 10px; position: relative; width: 100%; }\",\".framer-B3PxC .framer-15bqhl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-B3PxC .framer-1vconyz-container { flex: none; height: 20px; position: relative; width: 20px; z-index: 1; }\",\".framer-B3PxC .framer-1lbcj93 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3PxC .framer-8lj0cm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-B3PxC.framer-v-50s19j .framer-1vconyz-container, .framer-B3PxC.framer-v-o7orxr .framer-1vconyz-container { order: 1; }\",\".framer-B3PxC.framer-v-50s19j .framer-1lbcj93, .framer-B3PxC.framer-v-o7orxr .framer-1lbcj93 { order: 0; }\",\".framer-B3PxC.framer-v-gy1w7u.framer-4t2k1t { flex-direction: row; padding: 10px 10px 10px 20px; width: 350px; }\",\".framer-B3PxC.framer-v-gy1w7u .framer-778env { flex: 1 0 0px; order: 1; width: 1px; }\",\".framer-B3PxC.framer-v-gy1w7u .framer-1ncm4b8 { flex: 1 0 0px; justify-content: flex-start; order: 0; padding: 0px; width: 1px; }\",\".framer-B3PxC.framer-v-o7orxr.framer-4t2k1t { flex-direction: row; padding: 10px 20px 10px 10px; width: 350px; }\",\".framer-B3PxC.framer-v-o7orxr .framer-778env { flex: 1 0 0px; width: 1px; }\",\".framer-B3PxC.framer-v-o7orxr .framer-1ncm4b8 { flex: 1 0 0px; justify-content: flex-start; padding: 0px; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-B3PxC[data-border=\"true\"]::after, .framer-B3PxC [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 226\n * @framerIntrinsicWidth 260\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"H0kdH6iDr\":{\"layout\":[\"fixed\",\"auto\"]},\"VbBuYXy62\":{\"layout\":[\"fixed\",\"auto\"]},\"UbFim3TM2\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"EBWsb_YZI\":\"title\",\"AID6Oo7Au\":\"image\",\"JLAsAE47l\":\"briefIntro\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerCTw3KISp_=withCSS(Component,css,\"framer-B3PxC\");export default FramerCTw3KISp_;FramerCTw3KISp_.displayName=\"Article Preview\";FramerCTw3KISp_.defaultProps={height:226,width:260};addPropertyControls(FramerCTw3KISp_,{variant:{options:[\"QOe_BlGre\",\"H0kdH6iDr\",\"VbBuYXy62\",\"UbFim3TM2\"],optionTitles:[\"Prev\",\"Next\",\"Mobile Prev\",\"Mobile Next\"],title:\"Variant\",type:ControlType.Enum},EBWsb_YZI:{defaultValue:\"Prev Assignment\",displayTextArea:false,title:\"Title\",type:ControlType.String},AID6Oo7Au:{title:\"Image\",type:ControlType.ResponsiveImage},JLAsAE47l:{defaultValue:\"Prev Assignment\",displayTextArea:false,placeholder:\"\",title:\"Brief Intro\",type:ControlType.String}});addFonts(FramerCTw3KISp_,[{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/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\"}]},...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCTw3KISp_\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"260\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"226\",\"framerVariables\":\"{\\\"EBWsb_YZI\\\":\\\"title\\\",\\\"AID6Oo7Au\\\":\\\"image\\\",\\\"JLAsAE47l\\\":\\\"briefIntro\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"H0kdH6iDr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VbBuYXy62\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UbFim3TM2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (d65f646)\nexport const props={LWd_NMy27:{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,isMixedBorderRadius:false,isRed:true,topLeftRadius:10,topRightRadius:10}};export const fonts={};\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (f76946f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-italic\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MPIFA4B3XXRNY2MJDGP6GOOOAF6EOCLO/W5E4ZFYPJ3V6JKMBGHB6YMITK6EWS2XA/QOMBWPST76ICDYF6WOBS7SQ7RBT67QW2.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"}]}];export const css=['.framer-ookge .framer-styles-preset-1gfdvgn:not(.rich-text-wrapper), .framer-ookge .framer-styles-preset-1gfdvgn.rich-text-wrapper blockquote { --framer-blockquote-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-blockquote-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-blockquote-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-blockquote-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-blockquote-font-size: 20px; --framer-blockquote-font-style: italic; --framer-blockquote-font-style-bold: italic; --framer-blockquote-font-style-bold-italic: italic; --framer-blockquote-font-style-italic: italic; --framer-blockquote-font-variation-axes: normal; --framer-blockquote-font-weight: 400; --framer-blockquote-font-weight-bold: 700; --framer-blockquote-font-weight-bold-italic: 700; --framer-blockquote-font-weight-italic: 400; --framer-blockquote-letter-spacing: 0em; --framer-blockquote-line-height: 1.5em; --framer-blockquote-paragraph-spacing: 20px; --framer-blockquote-text-color: #9a84a1; --framer-blockquote-text-stroke-color: initial; --framer-blockquote-text-stroke-width: initial; --framer-font-open-type-features: normal; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; padding: 10px 10px 10px 12px; position: relative; }','.framer-ookge .framer-styles-preset-1gfdvgn:not(.rich-text-wrapper)::before, .framer-ookge .framer-styles-preset-1gfdvgn.rich-text-wrapper blockquote::before { background-color: #c8bacf; border-radius: 1px; content: \" \"; display: block; height: 100%; left: 0px; position: absolute; top: 0px; width: 2px; }'];export const className=\"framer-ookge\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (8f9ffef)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Sen-500\",\"GF;Sen-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Sen\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sen/v11/6xK0dSxYI9_dkN18-vZKK2EISBi5H4vKlD9q78A.woff2\",weight:\"500\"},{family:\"Sen\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sen/v11/6xK0dSxYI9_dkN18-vZKK2EISM2-H4vKlD9q78A.woff2\",weight:\"700\"}]}];export const css=['.framer-29FJW .framer-styles-preset-3csfch:not(.rich-text-wrapper), .framer-29FJW .framer-styles-preset-3csfch.rich-text-wrapper h6 { --framer-font-family: \"Sen\", \"Sen Placeholder\", sans-serif; --framer-font-family-bold: \"Sen\", \"Sen Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 24px; --framer-text-alignment: start; --framer-text-color: var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, #333333); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-29FJW\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (f76946f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}];export const css=['.framer-TyA5w .framer-styles-preset-15rspy5:not(.rich-text-wrapper), .framer-TyA5w .framer-styles-preset-15rspy5.rich-text-wrapper code { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, #333333); --framer-font-size-scale: 1; background-color: var(--token-944e6e23-5e66-46fa-ab94-6d6230e806af, rgba(172, 113, 240, 0.08)); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-TyA5w\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (f76946f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-Kd4f5 .framer-styles-preset-1ohsvu { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-bottom-width: 1px; border-color: var(--token-52dc39f0-b261-4575-808d-17d924bc7fc6, rgba(172, 113, 240, 0.16)); border-left-width: 1px; border-right-width: 1px; border-style: solid; border-top-left-radius: 10px; border-top-right-radius: 10px; border-top-width: 1px; }\"];export const className=\"framer-Kd4f5\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}