{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/pVNq3gPwiiJPmLV2YSlc/Embed.js", "ssg:https://framerusercontent.com/modules/dxroUwL1I76MGW0ne9GO/FnSobgbnGu5QsQ9FC2Ga/IXoDCDGJ0.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/pVNq3gPwiiJPmLV2YSlc/Embed.js\";import NavbarCopy from\"#framer/local/canvasComponent/N929mPG81/N929mPG81.js\";import Footer from\"#framer/local/canvasComponent/qovqapyDE/qovqapyDE.js\";import*as sharedStyle2 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle4 from\"#framer/local/css/Ptvs0CYzZ/Ptvs0CYzZ.js\";import*as sharedStyle3 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle1 from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import*as sharedStyle from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import metadataProvider from\"#framer/local/webPageMetadata/IXoDCDGJ0/IXoDCDGJ0.js\";const NavbarCopyFonts=getFonts(NavbarCopy);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const EmbedFonts=getFonts(Embed);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const FooterFonts=getFonts(Footer);const breakpoints={C2IyeYVRJ:\"(min-width: 1200px)\",giY3l4Z3A:\"(max-width: 809px)\",V2vf_Ui8w:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Zn4Cy\";const variantClassNames={C2IyeYVRJ:\"framer-v-1sg3hjd\",giY3l4Z3A:\"framer-v-1yin3y5\",V2vf_Ui8w:\"framer-v-1acjbaz\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:20};const transition2={damping:40,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:20};const transition3={damping:40,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:20};const transition4={damping:40,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:20};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition5={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:150};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition6={damping:40,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:80};const transition7={damping:40,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:80};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"C2IyeYVRJ\",Phone:\"giY3l4Z3A\",Tablet:\"V2vf_Ui8w\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"C2IyeYVRJ\"};};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);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"C2IyeYVRJ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1sg3hjd\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7b02p1-container\",nodeId:\"Iz4bFkC6r\",scopeId:\"IXoDCDGJ0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{giY3l4Z3A:{variant:\"w98Hrd3XJ\"},V2vf_Ui8w:{variant:\"SP4IUcNac\"}},children:/*#__PURE__*/_jsx(NavbarCopy,{height:\"100%\",id:\"Iz4bFkC6r\",layoutId:\"Iz4bFkC6r\",style:{width:\"100%\"},variant:\"KhsM4hC1q\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mxdxu9\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"rgba(34, 34, 34, 0.6)\"},children:\"UX/UI Design\"})}),className:\"framer-12o8c3p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:\"Handshake\"})}),className:\"framer-x6xgzb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4g9arl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{giY3l4Z3A:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:421,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+250.39999999999998+0+0),pixelHeight:421,pixelWidth:1200,src:\"https://framerusercontent.com/images/hO3L1N9kTZoHJgF97BudqRv8A.svg\"}},V2vf_Ui8w:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:421,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+290.4+40+0),pixelHeight:421,pixelWidth:1200,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hO3L1N9kTZoHJgF97BudqRv8A.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:421,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+306.4+48+0),pixelHeight:421,pixelWidth:1200,src:\"https://framerusercontent.com/images/hO3L1N9kTZoHJgF97BudqRv8A.svg\"},className:\"framer-f2kh8r\",\"data-framer-name\":\"Hero\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z6qik5\",\"data-framer-name\":\"Overview\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Overview\"})}),className:\"framer-7v23q4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kmgw84\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dn4437\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Code for Chicago is a volunteer-led digital consultancy that facilitates probono tech projects for not-for-profits and civic organizations. As a branch of Code for America, the team at Code for Chicago took on the challenge of creating a design system that would align all Code for America brigades on design best practices, accessibility standards, and CfA branding.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"I was knee-deep with this team through the whole process \u2014 from defining problems to scoping down the work, executing visual design, building prototypes, and working with engineers to polish the final product. The team included three engineers, a product manager, and two designers (including me). \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"em\",{children:\"Note: Since my time at CfC, the org has separated from Code for America and is now known as Code312.\"})})]}),className:\"framer-1bofrd2\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jsls43\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-whk5j1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Role\"})}),className:\"framer-vt9hsg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"UX/UI Design\"})}),className:\"framer-1pxt56q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ra8hw4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Organization\"})}),className:\"framer-1mbk0db\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Code for Chicago\"})}),className:\"framer-enpdat\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a29as4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Timeline\"})}),className:\"framer-cfq8oe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"August 2022 \u2013 February 2023\"})}),className:\"framer-qr79jb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m0u60l\",\"data-framer-name\":\"User Problems\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"User Problems\"})}),className:\"framer-eremuu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Onboarding new volunteers to the internal projects team requires a lot of effort to do it right. New developers will unknowingly create code bloat. New designers may deviate from the original design because no standards have been established. Additionally, a brigade's website often falls by the wayside when allocating bandwidth. In the past, Code for Chicago has prioritized partner projects over internal ones. Hence, while partner projects have prospered, it has been challenging to scale and grow our internal processes.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Internally, this design system aims to make building the Code for Chicago website easier. It will help onboard incoming developers and designers. It will also help scale and maintain the project. Externally, the design system aims to help newer brigades get started faster. Code for Chicago knows that internal projects don't get the attention they deserve, even though these tools are necessary to recruit incoming volunteers and partners.\"})]}),className:\"framer-1d7wpn5\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y3vweq\",\"data-framer-name\":\"Measuring Success\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Measuring Success \"})}),className:\"framer-1eo9ivp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Handshake is a collaborative tool that will be used to make our website and brand easy to build, manage, and scale. With so many volunteers working on it at the same time, this design system's goal is to reduce code bloat and ensure components and patterns remain consistent. We will measure if this is a successful tool based on: \"})}),className:\"framer-1moorwv\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Team adoption (measured through user interviews)\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Handoff (measured through developer interviews)\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Onboarding (measured by the time it takes a new volunteer to start contributing to a project) \"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Product scalability (measured by the number of website updates)\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Organization scalability (measured by the number of new partners) \"})})]})}),className:\"framer-tlzi4v\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jszyt\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15i7gne-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"rxSR5mHR6\",scopeId:\"IXoDCDGJ0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{giY3l4Z3A:{html:'<iframe style=\"border: 1px solid rgba(0, 0, 0, 0.1);\" width=\"320\\n\" height=\"450\" src=\"https://www.figma.com/embed?embed_host=share&url=https%3A%2F%2Fwww.figma.com%2Ffile%2Fww79NbNMT0xOVpJ0cv13Ek%2FWebsite%3Fnode-id%3D0%253A1%26t%3DmkMIKCBSRZMyTwHk-1\" allowfullscreen></iframe>'},V2vf_Ui8w:{html:'<iframe style=\"border: 1px solid rgba(0, 0, 0, 0.1);\"  width=710, height=400, src=\"https://www.figma.com/embed?embed_host=share&url=https%3A%2F%2Fwww.figma.com%2Ffile%2Fww79NbNMT0xOVpJ0cv13Ek%2FWebsite%3Fnode-id%3D0%253A1%26t%3DmkMIKCBSRZMyTwHk-1\" allowfullscreen></iframe>'}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe style=\"border: 1px solid rgba(0, 0, 0, 0.1);\" width=\"1100\" height=\"450\" src=\"https://www.figma.com/embed?embed_host=share&url=https%3A%2F%2Fwww.figma.com%2Ffile%2Fww79NbNMT0xOVpJ0cv13Ek%2FWebsite%3Fnode-id%3D0%253A1%26t%3DmkMIKCBSRZMyTwHk-1\" allowfullscreen></iframe>',id:\"rxSR5mHR6\",layoutId:\"rxSR5mHR6\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"right\"},children:\"Original design file (i.e. chaos)\"})}),className:\"framer-6xv9tz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16k93s3\",\"data-framer-name\":\"The Process\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"The Process\"})}),className:\"framer-1ipxs8d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:[\"Executing this project began with an abundance of \",/*#__PURE__*/_jsx(\"strong\",{children:\"research\"}),\" \u2014 looking at existing examples, understanding what makes for a good design system and what to avoid. After we concluded our research and felt like we could see a solid path forward, we began to get organized. We took stock of every component we currently used on the CfC website (i.e. we conducted an \",/*#__PURE__*/_jsx(\"strong\",{children:\"interface inventory\"}),\"). This proved that we had a nightmare on our hands when we uncovered inconsistent fonts and spacing all over the place. At this point we decided to take this opportunity to redesign the whole dang thing, from typeface to card patterns.\"]})}),className:\"framer-11dbz49\",fonts:[\"Inter\",\"Inter-Bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xxnz9b\",\"data-framer-name\":\"Deesign Foundations\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Design Foundations\"})}),className:\"framer-1kcl8lv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"First things first, we decided on Source Sans Pro as our typeface since it is a versatile font with many weights, can be used in all caps, character width is average, and allows for a reasonable amount of characters per line. We set font sizes for mobile and desktop. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"To determine our color palette going forward, we began with the colors of the Chicago flag and created tints as needed from there. \"})]}),className:\"framer-jpzcuy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n67pm0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{giY3l4Z3A:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:470,intrinsicWidth:1311,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5336.000000000001+24+-3),pixelHeight:470,pixelWidth:1311,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/alOLJUywG5oo6P93HYLzi5zSs.svg\"}},V2vf_Ui8w:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:470,intrinsicWidth:1311,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5009.200000000001+50+0),pixelHeight:470,pixelWidth:1311,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/alOLJUywG5oo6P93HYLzi5zSs.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation9,background:{alt:\"\",fit:\"fit\",intrinsicHeight:470,intrinsicWidth:1311,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5273.200000000001+0+0),pixelHeight:470,pixelWidth:1311,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/alOLJUywG5oo6P93HYLzi5zSs.svg\"},className:\"framer-jbsn06\",\"data-framer-appear-id\":\"jbsn06\",initial:animation10,optimized:true,style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1iiks14\",\"data-framer-name\":\"Components\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Components\"})}),className:\"framer-mifg3e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"We followed the principles of atomic design in this project, so the next step was to build components with the design foundations we had set. This was the biggest lift of the whole project and I was responsible for redesigning a vast majority of the components we would use going forward. Here are a few examples.\"})}),className:\"framer-dgh94p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gyj872\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e8nv4f\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{giY3l4Z3A:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:171,intrinsicWidth:672,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5785.600000000001+0+0+0+-2),pixelHeight:171,pixelWidth:672,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ztjdobFhG4ktncKSlZ46k38YM.svg\"}},V2vf_Ui8w:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:171,intrinsicWidth:672,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5681.800000000001+0+0+0+0),pixelHeight:171,pixelWidth:672,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ztjdobFhG4ktncKSlZ46k38YM.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:171,intrinsicWidth:672,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6050.800000000001+0+0+0+18),pixelHeight:171,pixelWidth:672,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ztjdobFhG4ktncKSlZ46k38YM.svg\"},className:\"framer-sdxje5\",\"data-framer-name\":\"iPhone_12_Pro_Mockups\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-toxdpc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{giY3l4Z3A:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:999,intrinsicWidth:672,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5785.600000000001+0+156+0+0),pixelHeight:999,pixelWidth:672,src:\"https://framerusercontent.com/images/Hl2xLH6CPRMCuD7NjV4JulQTM.svg\"}},V2vf_Ui8w:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:999,intrinsicWidth:672,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5681.800000000001+0+310+0+0),pixelHeight:999,pixelWidth:672,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Hl2xLH6CPRMCuD7NjV4JulQTM.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:999,intrinsicWidth:672,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6050.800000000001+0+471+0+18),pixelHeight:999,pixelWidth:672,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Hl2xLH6CPRMCuD7NjV4JulQTM.svg\"},className:\"framer-1dg0l67\",\"data-framer-name\":\"iPhone_12_Pro_Mockups\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xi0hb7\",\"data-framer-name\":\"Patterns\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Patterns\"})}),className:\"framer-1bdz2i5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"After we got every component refreshed and pixel-perfect, we arranged them into commonly used page patterns (eg. content sections, headers, and footers). The content section is the workhorse that drives the page and communicates ideas. A lot of thought went into the cognitive load of these sections and there were times we went back and adjusted components that just weren't working.\"})}),className:\"framer-1r2qx92\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3y6ohj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jmra67-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gGOX31rb0\",scopeId:\"IXoDCDGJ0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{giY3l4Z3A:{html:'<iframe style=\"border: 1px solid rgba(0, 0, 0, 0.1);\" width=\"320\" height=\"300\" src=\"https://www.figma.com/embed?embed_host=share&url=https%3A%2F%2Fwww.figma.com%2Ffile%2F6ipIKBMMJL2TgWBzztA6lg%2FHandshake---Brigade-Design-System%3Fnode-id%3D3%253A2%26t%3DmkMIKCBSRZMyTwHk-1\" allowfullscreen></iframe>'},V2vf_Ui8w:{html:'<iframe style=\"border: 1px solid rgba(0, 0, 0, 0.1);\" width=\"710\" height=\"400\" src=\"https://www.figma.com/embed?embed_host=share&url=https%3A%2F%2Fwww.figma.com%2Ffile%2F6ipIKBMMJL2TgWBzztA6lg%2FHandshake---Brigade-Design-System%3Fnode-id%3D3%253A2%26t%3DmkMIKCBSRZMyTwHk-1\" allowfullscreen></iframe>'}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe style=\"border: 1px solid rgba(0, 0, 0, 0.1);\" width=\"1100\" height=\"450\" src=\"https://www.figma.com/embed?embed_host=share&url=https%3A%2F%2Fwww.figma.com%2Ffile%2F6ipIKBMMJL2TgWBzztA6lg%2FHandshake---Brigade-Design-System%3Fnode-id%3D3%253A2%26t%3DmkMIKCBSRZMyTwHk-1\" allowfullscreen></iframe>',id:\"gGOX31rb0\",layoutId:\"gGOX31rb0\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"right\"},children:\"Final Figma file\"})}),className:\"framer-4jjove\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-k54h3w\",\"data-framer-name\":\"Documentation\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Documentation\"})}),className:\"framer-1pe21or\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"The final task after months of design work was writing usage guidelines to provide a better understanding of our patterns and structure so that designers and developers can easily create and replicate designs. I did an abundance of research on this stage of the process alone, learning how best to display documentation, pulling from great examples like Material Design, Spectrum, and Carbon. Our design system is now hosted on GitBook and has been passed off to developers to work on the code reference. \"})}),className:\"framer-1vvlvhh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-l7hh5a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Key Takeaways\"})}),className:\"framer-xfui5q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Throughout this project, I grew by leaps and bounds as a designer. It pushed me to carefully balance usability, accessibility, aesthetics, AND the needs of the organization. It also showed me that the design process is not a linear path, but rather requires constant iteration. The phases of the process cycle back on themselves when new needs or use cases are discovered. If I could start over, one thing I would do differently is write documentation as we went along rather than at the end. This would have helped us to level set with the team and ensure we were all on the same page before moving on to the next step. For example, I would write all of the documentation for the design foundations before moving on to building components. Not to say it couldn't be changed later. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Handshake has already helped me to build designs in half the time as we redesign codeforchicago.org. Stay tuned for when our hard work finally goes live. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"P.S.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"We named our design system Handshake after the infamous Chicago Handshake.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"(n.) A drink order comprised of a shot of Mal\\xf6rt and an Old Style beer.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"em\",{children:\"Let's get a round of Chicago Handshakes!\"})})]}),className:\"framer-1ra04tl\",fonts:[\"Inter\",\"Inter-Italic\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e2o7yb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{giY3l4Z3A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(34, 34, 34, 0.75)\"},children:\"Like what you see?\"})})},V2vf_Ui8w:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(34, 34, 34, 0.75)\"},children:\"Like what you see?\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(34, 34, 34, 0.75)\"},children:\"Like what you see?\"})}),className:\"framer-8p5ml9\",fonts:[\"GF;Manrope-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{giY3l4Z3A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:lokarkat@gmail.com\",motionChild:true,nodeId:\"mZS2xtCpO\",openInNewTab:true,scopeId:\"IXoDCDGJ0\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-rqhj4s\",\"data-styles-preset\":\"Ptvs0CYzZ\",children:\"Get in touch.\"})})})})},V2vf_Ui8w:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:lokarkat@gmail.com\",motionChild:true,nodeId:\"mZS2xtCpO\",openInNewTab:true,scopeId:\"IXoDCDGJ0\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-rqhj4s\",\"data-styles-preset\":\"Ptvs0CYzZ\",children:\"Get in touch.\"})})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:lokarkat@gmail.com\",motionChild:true,nodeId:\"mZS2xtCpO\",openInNewTab:true,scopeId:\"IXoDCDGJ0\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-rqhj4s\",\"data-styles-preset\":\"Ptvs0CYzZ\",children:\"Get in touch.\"})})})}),className:\"framer-cu1wix\",fonts:[\"GF;Manrope-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{giY3l4Z3A:{y:(componentViewport?.y||0)+0+9149.200000000003},V2vf_Ui8w:{y:(componentViewport?.y||0)+0+10157.000000000002}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:113,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+11329.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sknam6-container\",nodeId:\"zoqUrSYN6\",scopeId:\"IXoDCDGJ0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{giY3l4Z3A:{variant:\"Ks8or_WJl\"},V2vf_Ui8w:{variant:\"LOB1YyYJa\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"zoqUrSYN6\",layoutId:\"zoqUrSYN6\",QvO6DUj_Z:\"\\xa9 Kathryn Lokar 2023\",style:{width:\"100%\"},variant:\"go_Rw9Z2h\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Zn4Cy.framer-6pmxxv, .framer-Zn4Cy .framer-6pmxxv { display: block; }\",\".framer-Zn4Cy.framer-1sg3hjd { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-Zn4Cy .framer-7b02p1-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Zn4Cy .framer-1mxdxu9, .framer-Zn4Cy .framer-m0u60l, .framer-Zn4Cy .framer-y3vweq, .framer-Zn4Cy .framer-16k93s3, .framer-Zn4Cy .framer-1iiks14, .framer-Zn4Cy .framer-xi0hb7, .framer-Zn4Cy .framer-k54h3w, .framer-Zn4Cy .framer-l7hh5a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 48px; position: relative; width: 100%; }\",\".framer-Zn4Cy .framer-12o8c3p, .framer-Zn4Cy .framer-7v23q4, .framer-Zn4Cy .framer-vt9hsg, .framer-Zn4Cy .framer-1mbk0db, .framer-Zn4Cy .framer-cfq8oe, .framer-Zn4Cy .framer-eremuu, .framer-Zn4Cy .framer-1eo9ivp, .framer-Zn4Cy .framer-1ipxs8d, .framer-Zn4Cy .framer-1kcl8lv, .framer-Zn4Cy .framer-mifg3e, .framer-Zn4Cy .framer-1bdz2i5, .framer-Zn4Cy .framer-1pe21or, .framer-Zn4Cy .framer-xfui5q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-Zn4Cy .framer-x6xgzb, .framer-Zn4Cy .framer-1bofrd2, .framer-Zn4Cy .framer-1pxt56q, .framer-Zn4Cy .framer-enpdat, .framer-Zn4Cy .framer-qr79jb, .framer-Zn4Cy .framer-1d7wpn5, .framer-Zn4Cy .framer-1moorwv, .framer-Zn4Cy .framer-tlzi4v, .framer-Zn4Cy .framer-11dbz49, .framer-Zn4Cy .framer-jpzcuy, .framer-Zn4Cy .framer-dgh94p, .framer-Zn4Cy .framer-1r2qx92, .framer-Zn4Cy .framer-4jjove, .framer-Zn4Cy .framer-1vvlvhh, .framer-Zn4Cy .framer-1ra04tl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Zn4Cy .framer-4g9arl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 48px; position: relative; width: 100%; }\",\".framer-Zn4Cy .framer-f2kh8r { flex: none; height: 385px; overflow: visible; position: relative; width: 1100px; }\",\".framer-Zn4Cy .framer-z6qik5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 48px; position: relative; width: 1200px; }\",\".framer-Zn4Cy .framer-1kmgw84 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Zn4Cy .framer-dn4437 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 60%; }\",\".framer-Zn4Cy .framer-jsls43 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Zn4Cy .framer-whk5j1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Zn4Cy .framer-ra8hw4, .framer-Zn4Cy .framer-1a29as4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 422px; }\",\".framer-Zn4Cy .framer-jszyt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 48px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-Zn4Cy .framer-15i7gne-container { flex: none; height: 465px; position: relative; width: 100%; }\",\".framer-Zn4Cy .framer-6xv9tz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1100px; word-break: break-word; word-wrap: break-word; }\",\".framer-Zn4Cy .framer-1xxnz9b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 48px 24px 48px; position: relative; width: 100%; }\",\".framer-Zn4Cy .framer-1n67pm0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 452px; justify-content: flex-start; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Zn4Cy .framer-jbsn06 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: 1 0 0px; height: 1px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Zn4Cy .framer-gyj872 { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 48px 0px 48px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Zn4Cy .framer-e8nv4f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 423px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1100px; }\",\".framer-Zn4Cy .framer-sdxje5 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 387px; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Zn4Cy .framer-toxdpc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1639px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1100px; }\",\".framer-Zn4Cy .framer-1dg0l67 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1603px; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Zn4Cy .framer-3y6ohj { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 48px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Zn4Cy .framer-1jmra67-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-Zn4Cy .framer-e2o7yb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 48px; position: relative; width: 1200px; }\",\".framer-Zn4Cy .framer-8p5ml9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 660px; min-width: 300px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Zn4Cy .framer-cu1wix { flex: none; height: auto; max-width: 660px; min-width: 300px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Zn4Cy .framer-sknam6-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Zn4Cy.framer-1sg3hjd, .framer-Zn4Cy .framer-1mxdxu9, .framer-Zn4Cy .framer-4g9arl, .framer-Zn4Cy .framer-z6qik5, .framer-Zn4Cy .framer-1kmgw84, .framer-Zn4Cy .framer-dn4437, .framer-Zn4Cy .framer-jsls43, .framer-Zn4Cy .framer-whk5j1, .framer-Zn4Cy .framer-ra8hw4, .framer-Zn4Cy .framer-1a29as4, .framer-Zn4Cy .framer-m0u60l, .framer-Zn4Cy .framer-y3vweq, .framer-Zn4Cy .framer-jszyt, .framer-Zn4Cy .framer-16k93s3, .framer-Zn4Cy .framer-1xxnz9b, .framer-Zn4Cy .framer-1n67pm0, .framer-Zn4Cy .framer-1iiks14, .framer-Zn4Cy .framer-gyj872, .framer-Zn4Cy .framer-e8nv4f, .framer-Zn4Cy .framer-sdxje5, .framer-Zn4Cy .framer-toxdpc, .framer-Zn4Cy .framer-1dg0l67, .framer-Zn4Cy .framer-xi0hb7, .framer-Zn4Cy .framer-3y6ohj, .framer-Zn4Cy .framer-k54h3w, .framer-Zn4Cy .framer-l7hh5a, .framer-Zn4Cy .framer-e2o7yb { gap: 0px; } .framer-Zn4Cy.framer-1sg3hjd > *, .framer-Zn4Cy .framer-4g9arl > *, .framer-Zn4Cy .framer-sdxje5 > *, .framer-Zn4Cy .framer-1dg0l67 > *, .framer-Zn4Cy .framer-e2o7yb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Zn4Cy.framer-1sg3hjd > :first-child, .framer-Zn4Cy .framer-1mxdxu9 > :first-child, .framer-Zn4Cy .framer-4g9arl > :first-child, .framer-Zn4Cy .framer-z6qik5 > :first-child, .framer-Zn4Cy .framer-dn4437 > :first-child, .framer-Zn4Cy .framer-jsls43 > :first-child, .framer-Zn4Cy .framer-whk5j1 > :first-child, .framer-Zn4Cy .framer-ra8hw4 > :first-child, .framer-Zn4Cy .framer-1a29as4 > :first-child, .framer-Zn4Cy .framer-m0u60l > :first-child, .framer-Zn4Cy .framer-y3vweq > :first-child, .framer-Zn4Cy .framer-jszyt > :first-child, .framer-Zn4Cy .framer-16k93s3 > :first-child, .framer-Zn4Cy .framer-1xxnz9b > :first-child, .framer-Zn4Cy .framer-1n67pm0 > :first-child, .framer-Zn4Cy .framer-1iiks14 > :first-child, .framer-Zn4Cy .framer-gyj872 > :first-child, .framer-Zn4Cy .framer-e8nv4f > :first-child, .framer-Zn4Cy .framer-sdxje5 > :first-child, .framer-Zn4Cy .framer-toxdpc > :first-child, .framer-Zn4Cy .framer-1dg0l67 > :first-child, .framer-Zn4Cy .framer-xi0hb7 > :first-child, .framer-Zn4Cy .framer-3y6ohj > :first-child, .framer-Zn4Cy .framer-k54h3w > :first-child, .framer-Zn4Cy .framer-l7hh5a > :first-child, .framer-Zn4Cy .framer-e2o7yb > :first-child { margin-top: 0px; } .framer-Zn4Cy.framer-1sg3hjd > :last-child, .framer-Zn4Cy .framer-1mxdxu9 > :last-child, .framer-Zn4Cy .framer-4g9arl > :last-child, .framer-Zn4Cy .framer-z6qik5 > :last-child, .framer-Zn4Cy .framer-dn4437 > :last-child, .framer-Zn4Cy .framer-jsls43 > :last-child, .framer-Zn4Cy .framer-whk5j1 > :last-child, .framer-Zn4Cy .framer-ra8hw4 > :last-child, .framer-Zn4Cy .framer-1a29as4 > :last-child, .framer-Zn4Cy .framer-m0u60l > :last-child, .framer-Zn4Cy .framer-y3vweq > :last-child, .framer-Zn4Cy .framer-jszyt > :last-child, .framer-Zn4Cy .framer-16k93s3 > :last-child, .framer-Zn4Cy .framer-1xxnz9b > :last-child, .framer-Zn4Cy .framer-1n67pm0 > :last-child, .framer-Zn4Cy .framer-1iiks14 > :last-child, .framer-Zn4Cy .framer-gyj872 > :last-child, .framer-Zn4Cy .framer-e8nv4f > :last-child, .framer-Zn4Cy .framer-sdxje5 > :last-child, .framer-Zn4Cy .framer-toxdpc > :last-child, .framer-Zn4Cy .framer-1dg0l67 > :last-child, .framer-Zn4Cy .framer-xi0hb7 > :last-child, .framer-Zn4Cy .framer-3y6ohj > :last-child, .framer-Zn4Cy .framer-k54h3w > :last-child, .framer-Zn4Cy .framer-l7hh5a > :last-child, .framer-Zn4Cy .framer-e2o7yb > :last-child { margin-bottom: 0px; } .framer-Zn4Cy .framer-1mxdxu9 > *, .framer-Zn4Cy .framer-z6qik5 > *, .framer-Zn4Cy .framer-jsls43 > *, .framer-Zn4Cy .framer-m0u60l > *, .framer-Zn4Cy .framer-y3vweq > *, .framer-Zn4Cy .framer-jszyt > *, .framer-Zn4Cy .framer-16k93s3 > *, .framer-Zn4Cy .framer-1xxnz9b > *, .framer-Zn4Cy .framer-1iiks14 > *, .framer-Zn4Cy .framer-xi0hb7 > *, .framer-Zn4Cy .framer-k54h3w > *, .framer-Zn4Cy .framer-l7hh5a > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Zn4Cy .framer-1kmgw84 > * { margin: 0px; margin-left: calc(72px / 2); margin-right: calc(72px / 2); } .framer-Zn4Cy .framer-1kmgw84 > :first-child { margin-left: 0px; } .framer-Zn4Cy .framer-1kmgw84 > :last-child { margin-right: 0px; } .framer-Zn4Cy .framer-dn4437 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Zn4Cy .framer-whk5j1 > *, .framer-Zn4Cy .framer-ra8hw4 > *, .framer-Zn4Cy .framer-1a29as4 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Zn4Cy .framer-1n67pm0 > *, .framer-Zn4Cy .framer-e8nv4f > *, .framer-Zn4Cy .framer-toxdpc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Zn4Cy .framer-gyj872 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Zn4Cy .framer-3y6ohj > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Zn4Cy.framer-1sg3hjd { width: 810px; } .framer-Zn4Cy .framer-7b02p1-container { order: 0; } .framer-Zn4Cy .framer-1mxdxu9 { order: 1; padding: 40px; } .framer-Zn4Cy .framer-4g9arl { order: 2; padding: 40px; } .framer-Zn4Cy .framer-f2kh8r { height: 250px; width: 100%; } .framer-Zn4Cy .framer-z6qik5 { order: 3; padding: 40px; width: 100%; } .framer-Zn4Cy .framer-1kmgw84 { gap: 32px; } .framer-Zn4Cy .framer-dn4437 { gap: 33px; width: 64%; } .framer-Zn4Cy .framer-m0u60l { max-width: 100%; order: 4; padding: 40px; } .framer-Zn4Cy .framer-y3vweq { max-width: 100%; order: 5; padding: 40px; } .framer-Zn4Cy .framer-jszyt { order: 6; overflow: visible; padding: 40px; } .framer-Zn4Cy .framer-15i7gne-container { height: 400px; } .framer-Zn4Cy .framer-6xv9tz { width: 100%; } .framer-Zn4Cy .framer-16k93s3 { max-width: 100%; order: 7; padding: 40px; } .framer-Zn4Cy .framer-1xxnz9b { max-width: 100%; order: 8; padding: 0px 40px 24px 40px; } .framer-Zn4Cy .framer-1n67pm0 { height: 363px; order: 9; padding: 50px; } .framer-Zn4Cy .framer-1iiks14 { max-width: 100%; order: 10; padding: 40px; } .framer-Zn4Cy .framer-gyj872 { gap: 40px; order: 11; padding: 0px 40px 0px 40px; } .framer-Zn4Cy .framer-e8nv4f { height: min-content; width: 100%; } .framer-Zn4Cy .framer-sdxje5 { align-content: center; align-items: center; height: 270px; } .framer-Zn4Cy .framer-toxdpc { height: 1118px; width: 100%; } .framer-Zn4Cy .framer-1dg0l67 { align-content: center; align-items: center; flex: 1 0 0px; height: 1px; } .framer-Zn4Cy .framer-xi0hb7 { max-width: 100%; order: 12; padding: 40px; } .framer-Zn4Cy .framer-3y6ohj { gap: 16px; order: 13; padding: 40px; } .framer-Zn4Cy .framer-k54h3w { max-width: 100%; order: 14; padding: 40px; } .framer-Zn4Cy .framer-l7hh5a { order: 15; padding: 40px; } .framer-Zn4Cy .framer-e2o7yb { order: 16; padding: 40px; } .framer-Zn4Cy .framer-sknam6-container { order: 17; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Zn4Cy .framer-1kmgw84, .framer-Zn4Cy .framer-dn4437, .framer-Zn4Cy .framer-gyj872, .framer-Zn4Cy .framer-3y6ohj { gap: 0px; } .framer-Zn4Cy .framer-1kmgw84 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-Zn4Cy .framer-1kmgw84 > :first-child { margin-left: 0px; } .framer-Zn4Cy .framer-1kmgw84 > :last-child { margin-right: 0px; } .framer-Zn4Cy .framer-dn4437 > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-Zn4Cy .framer-dn4437 > :first-child, .framer-Zn4Cy .framer-gyj872 > :first-child, .framer-Zn4Cy .framer-3y6ohj > :first-child { margin-top: 0px; } .framer-Zn4Cy .framer-dn4437 > :last-child, .framer-Zn4Cy .framer-gyj872 > :last-child, .framer-Zn4Cy .framer-3y6ohj > :last-child { margin-bottom: 0px; } .framer-Zn4Cy .framer-gyj872 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Zn4Cy .framer-3y6ohj > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\",\"@media (max-width: 809px) { .framer-Zn4Cy.framer-1sg3hjd { width: 390px; } .framer-Zn4Cy .framer-1mxdxu9, .framer-Zn4Cy .framer-3y6ohj, .framer-Zn4Cy .framer-l7hh5a { gap: 8px; padding: 24px; } .framer-Zn4Cy .framer-x6xgzb { overflow: visible; } .framer-Zn4Cy .framer-4g9arl { padding: 0px 24px 0px 24px; } .framer-Zn4Cy .framer-f2kh8r { height: 118px; width: 100%; } .framer-Zn4Cy .framer-z6qik5 { gap: 8px; padding: 24px; width: 100%; } .framer-Zn4Cy .framer-1kmgw84 { flex-direction: column; gap: 24px; } .framer-Zn4Cy .framer-dn4437, .framer-Zn4Cy .framer-ra8hw4, .framer-Zn4Cy .framer-6xv9tz { width: 100%; } .framer-Zn4Cy .framer-jsls43 { flex: none; width: 100%; } .framer-Zn4Cy .framer-m0u60l, .framer-Zn4Cy .framer-y3vweq, .framer-Zn4Cy .framer-16k93s3, .framer-Zn4Cy .framer-1xxnz9b, .framer-Zn4Cy .framer-1iiks14, .framer-Zn4Cy .framer-xi0hb7, .framer-Zn4Cy .framer-k54h3w { gap: 8px; max-width: 100%; padding: 24px; } .framer-Zn4Cy .framer-jszyt { gap: 8px; padding: 24px; width: 390px; } .framer-Zn4Cy .framer-15i7gne-container { height: 450px; } .framer-Zn4Cy .framer-1n67pm0 { gap: 0px; height: 180px; justify-content: center; padding: 24px; } .framer-Zn4Cy .framer-jbsn06 { flex: none; height: 138px; } .framer-Zn4Cy .framer-gyj872 { gap: 24px; padding: 0px 24px 24px 24px; } .framer-Zn4Cy .framer-e8nv4f { height: 132px; width: 100%; } .framer-Zn4Cy .framer-sdxje5 { height: 136px; } .framer-Zn4Cy .framer-toxdpc { height: min-content; width: 100%; } .framer-Zn4Cy .framer-1dg0l67 { height: 494px; } .framer-Zn4Cy .framer-1jmra67-container { height: 256px; } .framer-Zn4Cy .framer-e2o7yb { padding: 24px; width: 100%; } .framer-Zn4Cy .framer-8p5ml9 { max-width: 250px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Zn4Cy .framer-1mxdxu9, .framer-Zn4Cy .framer-z6qik5, .framer-Zn4Cy .framer-1kmgw84, .framer-Zn4Cy .framer-m0u60l, .framer-Zn4Cy .framer-y3vweq, .framer-Zn4Cy .framer-jszyt, .framer-Zn4Cy .framer-16k93s3, .framer-Zn4Cy .framer-1xxnz9b, .framer-Zn4Cy .framer-1n67pm0, .framer-Zn4Cy .framer-1iiks14, .framer-Zn4Cy .framer-gyj872, .framer-Zn4Cy .framer-xi0hb7, .framer-Zn4Cy .framer-3y6ohj, .framer-Zn4Cy .framer-k54h3w, .framer-Zn4Cy .framer-l7hh5a { gap: 0px; } .framer-Zn4Cy .framer-1mxdxu9 > *, .framer-Zn4Cy .framer-z6qik5 > *, .framer-Zn4Cy .framer-m0u60l > *, .framer-Zn4Cy .framer-y3vweq > *, .framer-Zn4Cy .framer-jszyt > *, .framer-Zn4Cy .framer-16k93s3 > *, .framer-Zn4Cy .framer-1xxnz9b > *, .framer-Zn4Cy .framer-1iiks14 > *, .framer-Zn4Cy .framer-xi0hb7 > *, .framer-Zn4Cy .framer-3y6ohj > *, .framer-Zn4Cy .framer-k54h3w > *, .framer-Zn4Cy .framer-l7hh5a > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Zn4Cy .framer-1mxdxu9 > :first-child, .framer-Zn4Cy .framer-z6qik5 > :first-child, .framer-Zn4Cy .framer-1kmgw84 > :first-child, .framer-Zn4Cy .framer-m0u60l > :first-child, .framer-Zn4Cy .framer-y3vweq > :first-child, .framer-Zn4Cy .framer-jszyt > :first-child, .framer-Zn4Cy .framer-16k93s3 > :first-child, .framer-Zn4Cy .framer-1xxnz9b > :first-child, .framer-Zn4Cy .framer-1n67pm0 > :first-child, .framer-Zn4Cy .framer-1iiks14 > :first-child, .framer-Zn4Cy .framer-gyj872 > :first-child, .framer-Zn4Cy .framer-xi0hb7 > :first-child, .framer-Zn4Cy .framer-3y6ohj > :first-child, .framer-Zn4Cy .framer-k54h3w > :first-child, .framer-Zn4Cy .framer-l7hh5a > :first-child { margin-top: 0px; } .framer-Zn4Cy .framer-1mxdxu9 > :last-child, .framer-Zn4Cy .framer-z6qik5 > :last-child, .framer-Zn4Cy .framer-1kmgw84 > :last-child, .framer-Zn4Cy .framer-m0u60l > :last-child, .framer-Zn4Cy .framer-y3vweq > :last-child, .framer-Zn4Cy .framer-jszyt > :last-child, .framer-Zn4Cy .framer-16k93s3 > :last-child, .framer-Zn4Cy .framer-1xxnz9b > :last-child, .framer-Zn4Cy .framer-1n67pm0 > :last-child, .framer-Zn4Cy .framer-1iiks14 > :last-child, .framer-Zn4Cy .framer-gyj872 > :last-child, .framer-Zn4Cy .framer-xi0hb7 > :last-child, .framer-Zn4Cy .framer-3y6ohj > :last-child, .framer-Zn4Cy .framer-k54h3w > :last-child, .framer-Zn4Cy .framer-l7hh5a > :last-child { margin-bottom: 0px; } .framer-Zn4Cy .framer-1kmgw84 > *, .framer-Zn4Cy .framer-gyj872 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Zn4Cy .framer-1n67pm0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8382.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"V2vf_Ui8w\":{\"layout\":[\"fixed\",\"auto\"]},\"giY3l4Z3A\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerIXoDCDGJ0=withCSS(Component,css,\"framer-Zn4Cy\");export default FramerIXoDCDGJ0;FramerIXoDCDGJ0.displayName=\"Handshake\";FramerIXoDCDGJ0.defaultProps={height:8382.5,width:1200};addFonts(FramerIXoDCDGJ0,[{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\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"}]},...NavbarCopyFonts,...EmbedFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIXoDCDGJ0\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"V2vf_Ui8w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"giY3l4Z3A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"8382.5\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "NavbarCopyFonts", "getFonts", "N929mPG81_default", "RichTextWithFX", "withFX", "RichText2", "MotionDivWithFX", "motion", "EmbedFonts", "Embed", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "FooterFonts", "qovqapyDE_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "animation5", "transition5", "animation6", "animation7", "animation8", "animation9", "animation10", "animation11", "animation12", "animation13", "transition6", "animation14", "transition7", "animation15", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "N929mPG81_default", "RichTextWithFX", "x", "getLoadingLazyAtYPosition", "Image2", "RichText2", "MotionDivWithFX", "Embed", "ImageWithOptimizedAppearEffect", "Link", "qovqapyDE_default", "css", "FramerIXoDCDGJ0", "withCSS", "IXoDCDGJ0_default", "addFonts", "NavbarCopyFonts", "EmbedFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
