{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/1K1MLU6gGFgPKBHhjQVG/aIe5N9NeKvR0DZ7SCFR0/ro7OPezbn.js", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/UadvwMxxmeOWSFPXNQv6/5WlcxHzMoFcUTRTviO19/Examples.js", "ssg:https://framerusercontent.com/modules/xipPrT3qNVjyvcSY7f1E/M0KK64QFbzlNOjb2iWWb/WwJ6mxqa9.js", "ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.53", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/xAqQJJMKulaAU8gK10ZA/Phosphor.js", "ssg:https://framerusercontent.com/modules/BfW5jG66L76u20lJogOC/uQGlKfqQAzgIPd4mrQlf/XfbmoHDKZ.js"],
  "sourcesContent": ["import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=['.framer-tTMb6 .framer-styles-preset-1wicq5s:not(.rich-text-wrapper), .framer-tTMb6 .framer-styles-preset-1wicq5s.rich-text-wrapper a { --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-43084a0d-1302-4404-b823-172c2213564b, #ffa65a) /* {\"name\":\"Mandarine\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78)); --framer-link-text-decoration: none; }'];export const className=\"framer-tTMb6\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "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 appendingSegmentId(Component): ComponentType {\n//     return (props) => {\n//         const href =\n//             props.href && window.analytics.user().anonymousId()\n//                 ? props.href + \"?u=\" + window.analytics.user().anonymousId()\n//                 : \"\"\n//         console.log(\"trying\")\n//         console.log(href)\n//         return <Component {...props} href={href} />\n//     }\n// }\nexport function withSaturatedBlurryBackground(Component){return props=>{const style={...props.style,WebkitBackdropFilter:\"blur(20px) saturate(2.5)\",backdropFilter:\"blur(20px) saturate(2.5)\"};return /*#__PURE__*/ _jsx(Component,{...props,style:style});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/ _jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withSaturatedBlurryBackground\":{\"type\":\"reactHoc\",\"name\":\"withSaturatedBlurryBackground\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Examples.map", "// Generated by Framer (d6b3045)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withSaturatedBlurryBackground}from\"https://framerusercontent.com/modules/UadvwMxxmeOWSFPXNQv6/5WlcxHzMoFcUTRTviO19/Examples.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/1K1MLU6gGFgPKBHhjQVG/aIe5N9NeKvR0DZ7SCFR0/ro7OPezbn.js\";const MotionAWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.a));const MotionDivWithSaturatedBlurryBackground=withSaturatedBlurryBackground(motion.div);const cycleOrder=[\"YETlseuGb\",\"nSeW8UuVx\",\"TJDKRCjbn\",\"Bv__MuBPo\"];const serializationHash=\"framer-YJu3s\";const variantClassNames={Bv__MuBPo:\"framer-v-1ped12\",nSeW8UuVx:\"framer-v-ks1ln9\",TJDKRCjbn:\"framer-v-10fky4e\",YETlseuGb:\"framer-v-1bjq6ug\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const transition3={damping:10,delay:.5,mass:3,stiffness:1e3,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const transition4={delay:1.5,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone Open\":\"Bv__MuBPo\",Desktop:\"YETlseuGb\",Phone:\"TJDKRCjbn\",Tablet:\"nSeW8UuVx\"};const getProps=({bannerDecorator,bannerLink,bannerTitle,height,id,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,F735wmjeZ:(_ref=bannerTitle!==null&&bannerTitle!==void 0?bannerTitle:props.F735wmjeZ)!==null&&_ref!==void 0?_ref:\"We just launched something huge!\",FrIdapwzh:(_ref1=bannerDecorator!==null&&bannerDecorator!==void 0?bannerDecorator:props.FrIdapwzh)!==null&&_ref1!==void 0?_ref1:\"NEW\",sZoULOZht:bannerLink!==null&&bannerLink!==void 0?bannerLink:props.sZoULOZht,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"YETlseuGb\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,sZoULOZht,F735wmjeZ,FrIdapwzh,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YETlseuGb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapv966xa=activeVariantCallback(async(...args)=>{setVariant(\"Bv__MuBPo\");});const onTap192juz6=activeVariantCallback(async(...args)=>{setVariant(\"TJDKRCjbn\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"TJDKRCjbn\",\"Bv__MuBPo\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"Bv__MuBPo\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"TJDKRCjbn\")return false;return true;};const visible=isSet(sZoULOZht);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(MotionDivWithSaturatedBlurryBackground,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1bjq6ug\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"YETlseuGb\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-0d1a111e-0958-4695-8c60-4864eb9116e3, rgb(255, 252, 250))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-414efc37-27d1-46a3-8eba-63a8994285da, rgba(255, 252, 250, 0.85))\",...style},...addPropertyOverrides({Bv__MuBPo:{\"data-framer-name\":\"Phone Open\"},nSeW8UuVx:{\"data-framer-name\":\"Tablet\"},TJDKRCjbn:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l7x6ca\",layoutDependency:layoutDependency,layoutId:\"fokFNaGAZ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-90boqu\",\"data-framer-name\":\"Title and Icon\",layoutDependency:layoutDependency,layoutId:\"g4thNnNpN\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"deOQLb85N\"},nodeId:\"Tqqku5ugJ\",openInNewTab:false,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1ha5izu framer-gbgg00\",\"data-framer-name\":\"$SigmaOS_Logo_Horizontal\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Tqqku5ugJ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 132 24\"><g><defs><linearGradient id=\"idss8949148717_1g-1621205006\" x1=\"5.551115123125783e-17\" x2=\"1\" y1=\"0.6783844911555117\" y2=\"0.3216155088444883\"><stop offset=\"0\" stop-color=\"rgb(255,166,90)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(255,83,122)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 20.835 22.78 C 16.194 24.426 10.992 23.14 7.715 19.537 C 7.335 19.1 6.818 18.797 6.244 18.674 C 5.949 18.609 5.647 18.576 5.344 18.575 C 5.01 18.574 4.675 18.594 4.344 18.636 C 4.111 18.664 3.868 18.703 3.631 18.739 C 2.928 18.849 2.2 18.961 1.578 18.852 C 1.425 18.826 1.276 18.782 1.133 18.723 C 0.991 18.664 0.859 18.586 0.739 18.49 C 0.611 18.386 0.498 18.266 0.406 18.132 C 0.298 17.974 0.211 17.803 0.147 17.624 L 0.147 17.621 C 0.077 17.443 0.033 17.258 0.01 17.07 C -0.007 16.908 -0.001 16.747 0.028 16.586 C 0.056 16.439 0.107 16.294 0.176 16.16 C 0.248 16.025 0.332 15.898 0.433 15.782 C 0.836 15.308 1.468 14.939 2.081 14.582 C 2.286 14.462 2.498 14.339 2.695 14.215 C 2.977 14.04 3.247 13.846 3.502 13.635 C 3.733 13.444 3.942 13.23 4.126 12.995 C 4.484 12.541 4.679 11.984 4.684 11.412 C 4.749 9.06 5.538 6.781 6.949 4.872 C 8.36 2.963 10.327 1.512 12.595 0.707 C 14.863 -0.098 17.327 -0.219 19.667 0.36 C 22.007 0.938 24.113 2.189 25.715 3.95 C 26.094 4.387 26.612 4.69 27.186 4.813 C 27.481 4.878 27.784 4.911 28.086 4.911 C 28.42 4.913 28.755 4.893 29.086 4.851 C 29.319 4.823 29.562 4.784 29.798 4.748 C 30.501 4.638 31.229 4.525 31.851 4.635 C 32.003 4.661 32.153 4.705 32.296 4.764 C 32.438 4.823 32.57 4.901 32.69 4.997 C 32.818 5.101 32.93 5.221 33.022 5.357 C 33.129 5.514 33.217 5.685 33.282 5.863 L 33.282 5.866 C 33.35 6.043 33.396 6.228 33.418 6.416 C 33.436 6.577 33.43 6.74 33.4 6.899 C 33.372 7.047 33.322 7.191 33.252 7.326 C 33.181 7.46 33.095 7.586 32.996 7.703 C 32.592 8.177 31.96 8.546 31.348 8.903 C 31.143 9.023 30.931 9.147 30.734 9.272 C 30.452 9.447 30.182 9.64 29.927 9.852 C 29.696 10.042 29.486 10.256 29.303 10.492 C 28.944 10.946 28.748 11.502 28.745 12.075 C 28.618 16.89 25.478 21.138 20.832 22.78 Z M 14.25 5.143 C 13.791 5.306 13.351 5.513 12.935 5.761 C 12.132 6.242 11.435 6.872 10.882 7.615 C 10.06 8.718 9.583 10.029 9.51 11.39 C 9.437 12.786 9.793 14.172 10.533 15.37 C 11.273 16.568 12.364 17.522 13.664 18.111 C 14.507 18.495 15.418 18.716 16.347 18.762 C 16.82 18.785 17.295 18.762 17.764 18.695 C 18.732 18.554 19.66 18.224 20.496 17.727 C 21.298 17.246 21.995 16.616 22.548 15.873 C 23.371 14.77 23.848 13.459 23.92 12.098 C 23.944 11.637 23.922 11.176 23.852 10.719 C 23.708 9.776 23.37 8.871 22.858 8.059 C 22.61 7.666 22.323 7.298 22.001 6.96 C 20.028 4.891 16.974 4.175 14.252 5.144 Z\" fill=\"url(#idss8949148717_1g-1621205006)\"></path></g><path d=\"M 47.955 11.855 C 47.303 11.377 46.526 11.027 45.625 10.807 L 42.999 10.135 C 42.856 10.099 42.719 10.06 42.592 10.016 L 42.59 10.016 C 42.204 9.886 41.893 9.723 41.654 9.528 C 41.334 9.267 41.175 8.92 41.175 8.487 C 41.175 8.198 41.267 7.934 41.454 7.696 C 41.639 7.457 41.894 7.269 42.221 7.132 C 42.547 6.995 42.925 6.925 43.355 6.925 C 44.052 6.925 44.646 7.089 45.135 7.414 C 45.625 7.739 45.929 8.198 46.047 8.79 L 48.914 7.773 C 48.717 7.055 48.395 6.453 47.95 5.961 C 47.379 5.332 46.704 4.877 45.926 4.595 C 45.147 4.313 44.334 4.171 43.489 4.171 C 42.48 4.171 41.565 4.359 40.742 4.735 C 39.919 5.111 39.269 5.643 38.795 6.33 C 38.32 7.016 38.083 7.8 38.083 8.682 C 38.083 9.785 38.4 10.651 39.033 11.279 C 39.065 11.312 39.096 11.342 39.128 11.371 C 39.825 12.007 40.73 12.455 41.843 12.716 L 43.999 13.259 L 44 13.259 L 44.512 13.388 C 45.091 13.533 45.547 13.747 45.881 14.028 C 46.215 14.31 46.381 14.689 46.381 15.166 C 46.381 15.542 46.273 15.875 46.059 16.164 C 45.843 16.453 45.539 16.677 45.147 16.836 C 44.754 16.995 44.29 17.075 43.756 17.075 C 42.762 17.075 41.983 16.848 41.42 16.392 C 40.856 15.937 40.515 15.318 40.396 14.537 L 37.444 15.586 C 37.614 16.327 37.92 16.982 38.362 17.552 C 38.931 18.289 39.68 18.853 40.609 19.243 C 41.534 19.634 42.584 19.829 43.756 19.829 C 44.927 19.829 45.906 19.624 46.781 19.212 C 47.656 18.8 48.331 18.228 48.806 17.498 C 49.28 16.768 49.518 15.947 49.518 15.036 C 49.518 13.851 49.151 12.918 48.417 12.239 C 48.27 12.103 48.116 11.975 47.955 11.855 Z M 130.917 12.239 C 130.77 12.103 130.616 11.975 130.455 11.855 C 129.803 11.377 129.026 11.027 128.125 10.807 L 125.499 10.135 C 125.356 10.099 125.219 10.06 125.092 10.016 L 125.09 10.016 C 124.704 9.886 124.393 9.723 124.154 9.528 C 123.834 9.267 123.675 8.92 123.675 8.487 C 123.675 8.198 123.767 7.934 123.954 7.696 C 124.139 7.457 124.394 7.269 124.721 7.132 C 125.047 6.995 125.425 6.925 125.855 6.925 C 126.552 6.925 127.146 7.089 127.635 7.414 C 128.125 7.739 128.429 8.198 128.547 8.79 L 131.414 7.773 C 131.217 7.055 130.895 6.453 130.45 5.961 C 129.879 5.332 129.204 4.877 128.426 4.595 C 127.647 4.313 126.834 4.171 125.989 4.171 C 124.98 4.171 124.065 4.359 123.242 4.735 C 122.419 5.111 121.769 5.643 121.295 6.33 C 120.82 7.016 120.583 7.8 120.583 8.682 C 120.583 9.785 120.9 10.651 121.533 11.279 C 121.565 11.312 121.596 11.342 121.628 11.371 C 122.325 12.007 123.23 12.455 124.343 12.716 L 126.499 13.259 L 126.5 13.259 L 127.012 13.388 C 127.591 13.533 128.047 13.747 128.381 14.028 C 128.715 14.31 128.881 14.689 128.881 15.166 C 128.881 15.542 128.773 15.875 128.559 16.164 C 128.343 16.453 128.039 16.677 127.647 16.836 C 127.254 16.995 126.79 17.075 126.256 17.075 C 125.262 17.075 124.483 16.848 123.92 16.392 C 123.356 15.937 123.015 15.318 122.896 14.537 L 119.944 15.586 C 120.114 16.327 120.42 16.982 120.862 17.552 C 121.431 18.289 122.18 18.853 123.109 19.243 C 124.034 19.634 125.084 19.829 126.256 19.829 C 127.427 19.829 128.406 19.624 129.281 19.212 C 130.156 18.8 130.831 18.228 131.306 17.498 C 131.78 16.768 132.018 15.947 132.018 15.036 C 132.018 13.851 131.651 12.918 130.917 12.239 Z M 51.035 7.923 L 53.816 7.923 L 53.816 19.59 L 51.035 19.59 Z M 52.425 2.889 C 51.465 2.889 50.688 3.648 50.688 4.583 C 50.688 5.519 51.465 6.278 52.425 6.278 C 53.384 6.278 54.163 5.519 54.163 4.583 C 54.163 3.648 53.386 2.889 52.425 2.889 Z M 64.997 9.547 C 64.621 9.056 64.164 8.659 63.628 8.357 C 62.835 7.908 61.912 7.684 60.859 7.684 C 59.806 7.684 58.823 7.934 57.955 8.433 C 57.088 8.932 56.41 9.614 55.921 10.482 C 55.431 11.349 55.186 12.311 55.186 13.366 C 55.186 14.422 55.431 15.383 55.921 16.251 C 56.41 17.118 57.092 17.805 57.967 18.311 C 58.842 18.817 59.806 19.07 60.859 19.07 C 61.912 19.07 62.839 18.843 63.64 18.387 C 64.033 18.163 64.382 17.893 64.686 17.573 L 64.686 18.246 C 64.686 18.94 64.541 19.533 64.251 20.024 C 63.962 20.516 63.559 20.889 63.04 21.142 C 62.521 21.393 61.898 21.52 61.171 21.52 C 60.281 21.52 59.55 21.337 58.979 20.968 C 58.408 20.6 58.034 20.154 57.856 19.634 L 55.186 20.61 C 55.468 21.275 55.898 21.86 56.477 22.366 C 57.055 22.872 57.755 23.258 58.578 23.527 C 59.401 23.795 60.281 23.928 61.215 23.928 C 62.476 23.928 63.577 23.701 64.518 23.245 C 65.46 22.79 66.187 22.128 66.699 21.26 C 67.21 20.393 67.467 19.366 67.467 18.181 L 67.467 11.176 C 67.467 10.41 67.492 9.749 67.544 9.192 C 67.596 8.636 67.674 8.212 67.778 7.923 L 64.997 7.923 Z M 64.229 15.058 C 63.94 15.549 63.536 15.94 63.017 16.229 C 62.498 16.518 61.912 16.663 61.26 16.663 C 60.607 16.663 60.066 16.515 59.547 16.219 C 59.028 15.922 58.62 15.525 58.323 15.026 C 58.027 14.527 57.878 13.973 57.878 13.366 C 57.878 12.759 58.027 12.202 58.323 11.696 C 58.62 11.19 59.028 10.793 59.547 10.504 C 60.066 10.214 60.637 10.07 61.26 10.07 C 61.883 10.07 62.494 10.212 63.006 10.493 C 63.517 10.775 63.922 11.169 64.219 11.675 C 64.515 12.181 64.664 12.745 64.664 13.366 C 64.664 13.988 64.518 14.566 64.229 15.058 Z M 85.489 8.26 C 84.814 7.877 84.04 7.684 83.164 7.684 C 82.289 7.684 81.466 7.877 80.784 8.26 C 80.102 8.643 79.56 9.145 79.16 9.766 C 78.834 9.116 78.377 8.607 77.791 8.238 C 77.205 7.869 76.49 7.684 75.645 7.684 C 74.933 7.684 74.291 7.819 73.72 8.086 C 73.149 8.354 72.686 8.718 72.33 9.181 C 72.134 9.436 71.97 9.712 71.841 10.005 L 71.841 7.923 L 69.371 7.923 L 69.371 19.59 L 72.152 19.59 L 72.152 13.28 C 72.152 12.643 72.266 12.101 72.496 11.653 C 72.726 11.205 73.035 10.865 73.42 10.634 C 73.806 10.402 74.221 10.287 74.666 10.287 C 75.111 10.287 75.519 10.392 75.89 10.602 C 76.26 10.812 76.553 11.125 76.768 11.545 C 76.983 11.964 77.091 12.47 77.091 13.063 L 77.091 19.59 L 79.872 19.59 L 79.872 13.063 C 79.872 12.455 79.986 11.942 80.216 11.523 C 80.446 11.104 80.754 10.793 81.14 10.59 C 81.526 10.388 81.941 10.287 82.386 10.287 C 83.127 10.287 83.716 10.537 84.154 11.036 C 84.591 11.534 84.811 12.21 84.811 13.063 L 84.811 19.59 L 87.592 19.59 L 87.592 12.434 C 87.592 11.465 87.409 10.624 87.046 9.908 C 86.682 9.192 86.163 8.643 85.489 8.26 Z M 101.643 16.337 L 101.643 7.923 L 98.862 7.923 L 98.862 9.354 C 98.732 9.202 98.589 9.062 98.439 8.932 C 97.98 8.534 97.449 8.227 96.848 8.01 C 96.247 7.793 95.577 7.684 94.835 7.684 C 93.767 7.684 92.784 7.952 91.887 8.487 C 90.99 9.022 90.288 9.752 89.785 10.677 C 89.279 11.602 89.029 12.629 89.029 13.757 C 89.029 14.884 89.279 15.893 89.785 16.826 C 90.288 17.759 90.99 18.492 91.887 19.027 C 92.784 19.561 93.767 19.829 94.835 19.829 C 95.903 19.829 96.907 19.59 97.716 19.113 C 98.29 18.775 98.769 18.337 99.151 17.8 L 99.151 19.59 L 101.954 19.59 C 101.834 19.287 101.754 18.857 101.71 18.301 C 101.665 17.744 101.643 17.089 101.643 16.337 Z M 98.405 15.535 C 98.101 16.07 97.683 16.489 97.149 16.793 C 96.615 17.096 96.006 17.248 95.325 17.248 C 94.687 17.248 94.101 17.093 93.567 16.783 C 93.033 16.472 92.611 16.048 92.299 15.513 C 91.988 14.978 91.832 14.386 91.832 13.735 C 91.832 13.084 91.988 12.513 92.299 11.978 C 92.611 11.443 93.036 11.021 93.578 10.71 C 94.119 10.4 94.709 10.243 95.347 10.243 C 95.985 10.243 96.615 10.4 97.149 10.71 C 97.683 11.021 98.101 11.44 98.405 11.968 C 98.709 12.496 98.862 13.092 98.862 13.757 C 98.862 14.422 98.709 15 98.405 15.535 Z M 115.516 5.19 C 114.293 4.511 112.931 4.171 111.433 4.171 C 109.935 4.171 108.556 4.511 107.34 5.19 C 106.124 5.87 105.162 6.81 104.459 8.01 C 103.753 9.21 103.402 10.533 103.402 11.978 C 103.402 13.424 103.753 14.787 104.459 15.98 C 105.162 17.173 106.124 18.113 107.34 18.8 C 108.556 19.486 109.92 19.829 111.433 19.829 C 112.946 19.829 114.293 19.486 115.516 18.8 C 116.74 18.113 117.702 17.173 118.408 15.98 C 119.111 14.787 119.464 13.453 119.464 11.978 C 119.464 10.504 119.111 9.21 118.408 8.01 C 117.702 6.81 116.74 5.87 115.516 5.19 Z M 115.806 14.571 C 115.367 15.344 114.758 15.954 113.98 16.402 C 113.201 16.851 112.353 17.075 111.433 17.075 C 110.514 17.075 109.646 16.851 108.875 16.402 C 108.104 15.954 107.495 15.344 107.051 14.571 C 106.606 13.797 106.383 12.933 106.383 11.978 C 106.383 11.024 106.606 10.186 107.051 9.419 C 107.495 8.653 108.104 8.046 108.875 7.598 C 109.646 7.149 110.499 6.925 111.433 6.925 C 112.368 6.925 113.198 7.149 113.969 7.598 C 114.741 8.046 115.349 8.653 115.794 9.419 C 116.239 10.186 116.461 11.039 116.461 11.978 C 116.461 12.918 116.242 13.797 115.806 14.571 Z\" fill=\"var(--token-f9376adb-fe94-4614-8108-c32dbf90bd1c, rgba(35, 38, 43, 0.95)) /* {&quot;name&quot;:&quot;Uno&quot;} */\"></path></svg>',svgContentId:8949148717,withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-199njjk\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"EYe5rb_iS\",...addPropertyOverrides({Bv__MuBPo:{\"data-highlight\":true,onTap:onTap192juz6},TJDKRCjbn:{\"data-highlight\":true,onTap:onTapv966xa}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c1hudq\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"muhsdGYTo\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{Bv__MuBPo:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yg1ynd\",\"data-framer-name\":\"Mid\",layoutDependency:layoutDependency,layoutId:\"i6vL4apZZ\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-23s0v7\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"Gr5EGcC5d\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{Bv__MuBPo:{rotate:45}}})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0pva2tlciBNZWRpdW0=\",\"--framer-font-family\":'\"Jokker Medium\", \"Jokker Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0f33ba96-8de9-405b-bba7-73d27af3dee4, rgba(73, 76, 80, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r0boZnQs9\"},nodeId:\"aU4RSMLwO\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Airis\"})})})}),className:\"framer-1ivzmvf\",fonts:[\"CUSTOM;Jokker Medium\"],layoutDependency:layoutDependency,layoutId:\"aU4RSMLwO\",style:{\"--extracted-r6o4lv\":\"var(--token-0f33ba96-8de9-405b-bba7-73d27af3dee4, rgba(73, 76, 80, 0.9))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0pva2tlciBNZWRpdW0=\",\"--framer-font-family\":'\"Jokker Medium\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0f33ba96-8de9-405b-bba7-73d27af3dee4, rgba(73, 76, 80, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://sigmaos.com/community\",nodeId:\"UTKepfy_e\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Community\"})})})}),className:\"framer-g7y3c7\",fonts:[\"CUSTOM;Jokker Medium\"],layoutDependency:layoutDependency,layoutId:\"UTKepfy_e\",style:{\"--extracted-r6o4lv\":\"var(--token-0f33ba96-8de9-405b-bba7-73d27af3dee4, rgba(73, 76, 80, 0.9))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Wym1AFzQw\"},nodeId:\"WEJgwu6Hc\",openInNewTab:false,...addPropertyOverrides({Bv__MuBPo:{href:{webPageId:\"By3H7ZXQy\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionAWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-15pkvlw framer-gbgg00\",\"data-framer-appear-id\":\"15pkvlw\",\"data-framer-name\":\"Button\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"WEJgwu6Hc\",optimized:true,style:{background:\"linear-gradient(270deg, rgb(255,83,122) 0%, rgb(255,166,90) 100%)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,transformPerspective:1200},whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0pva2tlciBTZW1pYm9sZA==\",\"--framer-font-family\":'\"Jokker Semibold\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0d1a111e-0958-4695-8c60-4864eb9116e3, rgb(255, 255, 255)))\"},children:\"Download Free\"})}),className:\"framer-4j5tl7\",fonts:[\"CUSTOM;Jokker Semibold\"],layoutDependency:layoutDependency,layoutId:\"JPJqwOKCH\",style:{\"--extracted-r6o4lv\":\"var(--token-0d1a111e-0958-4695-8c60-4864eb9116e3, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Bv__MuBPo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0pva2tlciBTZW1pYm9sZA==\",\"--framer-font-family\":'\"Jokker Semibold\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0d1a111e-0958-4695-8c60-4864eb9116e3, rgb(255, 255, 255)))\"},children:\"Email me a download link\"})})}},baseVariant,gestureVariant)})})})]}),visible&&/*#__PURE__*/_jsx(Link,{href:sZoULOZht,nodeId:\"CPVkztSNY\",openInNewTab:true,...addPropertyOverrides({nSeW8UuVx:{href:\"sigmaos.com/ph\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionAWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-1dwalkh framer-gbgg00\",\"data-framer-appear-id\":\"1dwalkh\",initial:animation4,layoutDependency:layoutDependency,layoutId:\"CPVkztSNY\",optimized:true,style:{background:'linear-gradient(180deg, var(--token-43084a0d-1302-4404-b823-172c2213564b, rgb(255, 166, 90)) /* {\"name\":\"Mandarine\"} */ 0%, var(--token-6c54b421-1ad3-41d8-b409-e3f313c58f6f, rgb(255, 83, 122)) /* {\"name\":\"Raspberry\"} */ 100%)',transformPerspective:1200},whileHover:animation,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0pva2tlciBCb2xk\",\"--framer-font-family\":'\"Jokker Bold\", \"Jokker Bold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 253, 232))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"NEW\"})})}),className:\"framer-130zid9\",fonts:[\"CUSTOM;Jokker Bold\"],layoutDependency:layoutDependency,layoutId:\"GXqTEfvMu\",style:{\"--extracted-r6o4lv\":\"rgb(255, 253, 232)\",textShadow:\"0px 1px 10px rgba(255, 221, 0, 0.25)\"},text:FrIdapwzh,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0pva2tlciBTZW1pYm9sZA==\",\"--framer-font-family\":'\"Jokker Semibold\", \"Jokker Semibold Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[\"We just launched something \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0pva2tlciBCb2xk\",\"--framer-font-family\":'\"Jokker Bold\", \"Jokker Bold Placeholder\", sans-serif'},children:\"huge\"}),\"!\"]})}),className:\"framer-12m22z3\",fonts:[\"CUSTOM;Jokker Semibold\",\"CUSTOM;Jokker Bold\"],layoutDependency:layoutDependency,layoutId:\"QQLvN_pyF\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},text:F735wmjeZ,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nSeW8UuVx:{whileHover:animation5}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0pva2tlciBCb2xk\",\"--framer-font-family\":'\"Jokker Bold\", \"Jokker Bold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 253, 232))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"NEW\"})})}),className:\"framer-1u67v1\",fonts:[\"CUSTOM;Jokker Bold\"],layoutDependency:layoutDependency,layoutId:\"rXx4izeDa\",style:{\"--extracted-r6o4lv\":\"rgb(255, 253, 232)\",textShadow:\"0px 1px 10px rgba(255, 221, 0, 0.25)\"},text:FrIdapwzh,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YJu3s.framer-gbgg00, .framer-YJu3s .framer-gbgg00 { display: block; }\",\".framer-YJu3s.framer-1bjq6ug { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1200px; }\",\".framer-YJu3s .framer-l7x6ca { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-YJu3s .framer-90boqu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 32px; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-YJu3s .framer-1ha5izu { flex: none; height: 24px; position: relative; text-decoration: none; width: 132px; }\",\".framer-YJu3s .framer-199njjk { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 32px; }\",\".framer-YJu3s .framer-1c1hudq { bottom: 7px; flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-YJu3s .framer-yg1ynd { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-YJu3s .framer-23s0v7 { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: 7px; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-YJu3s .framer-1ivzmvf, .framer-YJu3s .framer-g7y3c7, .framer-YJu3s .framer-130zid9, .framer-YJu3s .framer-12m22z3, .framer-YJu3s .framer-1u67v1 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-YJu3s .framer-15pkvlw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-YJu3s .framer-4j5tl7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-YJu3s .framer-1dwalkh { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 10px 20px 10px 20px; position: relative; text-decoration: none; width: 100%; z-index: 9; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YJu3s.framer-1bjq6ug, .framer-YJu3s .framer-l7x6ca, .framer-YJu3s .framer-15pkvlw, .framer-YJu3s .framer-1dwalkh { gap: 0px; } .framer-YJu3s.framer-1bjq6ug > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-YJu3s.framer-1bjq6ug > :first-child { margin-top: 0px; } .framer-YJu3s.framer-1bjq6ug > :last-child { margin-bottom: 0px; } .framer-YJu3s .framer-l7x6ca > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-YJu3s .framer-l7x6ca > :first-child, .framer-YJu3s .framer-15pkvlw > :first-child, .framer-YJu3s .framer-1dwalkh > :first-child { margin-left: 0px; } .framer-YJu3s .framer-l7x6ca > :last-child, .framer-YJu3s .framer-15pkvlw > :last-child, .framer-YJu3s .framer-1dwalkh > :last-child { margin-right: 0px; } .framer-YJu3s .framer-15pkvlw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-YJu3s .framer-1dwalkh > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } }\",\".framer-YJu3s.framer-v-ks1ln9.framer-1bjq6ug { width: 810px; }\",\".framer-YJu3s.framer-v-10fky4e.framer-1bjq6ug, .framer-YJu3s.framer-v-1ped12.framer-1bjq6ug { gap: 20px; width: 390px; }\",\".framer-YJu3s.framer-v-10fky4e .framer-199njjk, .framer-YJu3s.framer-v-1ped12 .framer-199njjk { cursor: pointer; }\",\".framer-YJu3s.framer-v-10fky4e .framer-1dwalkh { gap: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YJu3s.framer-v-10fky4e.framer-1bjq6ug, .framer-YJu3s.framer-v-10fky4e .framer-1dwalkh { gap: 0px; } .framer-YJu3s.framer-v-10fky4e.framer-1bjq6ug > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-YJu3s.framer-v-10fky4e.framer-1bjq6ug > :first-child { margin-top: 0px; } .framer-YJu3s.framer-v-10fky4e.framer-1bjq6ug > :last-child { margin-bottom: 0px; } .framer-YJu3s.framer-v-10fky4e .framer-1dwalkh > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-YJu3s.framer-v-10fky4e .framer-1dwalkh > :first-child { margin-left: 0px; } .framer-YJu3s.framer-v-10fky4e .framer-1dwalkh > :last-child { margin-right: 0px; } }\",\".framer-YJu3s.framer-v-1ped12 .framer-l7x6ca { flex-direction: column; }\",\".framer-YJu3s.framer-v-1ped12 .framer-90boqu { flex: none; height: min-content; padding: 0px 0px 20px 0px; width: 100%; }\",\".framer-YJu3s.framer-v-1ped12 .framer-1c1hudq { bottom: 15px; }\",\".framer-YJu3s.framer-v-1ped12 .framer-yg1ynd { left: calc(50.00000000000002% - 2px / 2); width: 2px; }\",\".framer-YJu3s.framer-v-1ped12 .framer-23s0v7 { top: 15px; }\",\".framer-YJu3s.framer-v-1ped12 .framer-15pkvlw { width: 100%; }\",\".framer-YJu3s.framer-v-1ped12 .framer-1dwalkh { gap: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YJu3s.framer-v-1ped12.framer-1bjq6ug, .framer-YJu3s.framer-v-1ped12 .framer-l7x6ca, .framer-YJu3s.framer-v-1ped12 .framer-1dwalkh { gap: 0px; } .framer-YJu3s.framer-v-1ped12.framer-1bjq6ug > *, .framer-YJu3s.framer-v-1ped12 .framer-l7x6ca > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-YJu3s.framer-v-1ped12.framer-1bjq6ug > :first-child, .framer-YJu3s.framer-v-1ped12 .framer-l7x6ca > :first-child { margin-top: 0px; } .framer-YJu3s.framer-v-1ped12.framer-1bjq6ug > :last-child, .framer-YJu3s.framer-v-1ped12 .framer-l7x6ca > :last-child { margin-bottom: 0px; } .framer-YJu3s.framer-v-1ped12 .framer-1dwalkh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-YJu3s.framer-v-1ped12 .framer-1dwalkh > :first-child { margin-left: 0px; } .framer-YJu3s.framer-v-1ped12 .framer-1dwalkh > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-YJu3s[data-border=\"true\"]::after, .framer-YJu3s [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 125\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nSeW8UuVx\":{\"layout\":[\"fixed\",\"auto\"]},\"TJDKRCjbn\":{\"layout\":[\"fixed\",\"auto\"]},\"Bv__MuBPo\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"sZoULOZht\":\"bannerLink\",\"F735wmjeZ\":\"bannerTitle\",\"FrIdapwzh\":\"bannerDecorator\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWwJ6mxqa9=withCSS(Component,css,\"framer-YJu3s\");export default FramerWwJ6mxqa9;FramerWwJ6mxqa9.displayName=\"Navbar\";FramerWwJ6mxqa9.defaultProps={height:125,width:1200};addPropertyControls(FramerWwJ6mxqa9,{variant:{options:[\"YETlseuGb\",\"nSeW8UuVx\",\"TJDKRCjbn\",\"Bv__MuBPo\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"Phone Open\"],title:\"Variant\",type:ControlType.Enum},sZoULOZht:{description:\"\",title:\"Banner Link\",type:ControlType.Link},F735wmjeZ:{defaultValue:\"We just launched something huge!\",displayTextArea:false,title:\"Banner Title\",type:ControlType.String},FrIdapwzh:{defaultValue:\"NEW\",displayTextArea:false,title:\"Banner decorator\",type:ControlType.String}});addFonts(FramerWwJ6mxqa9,[{explicitInter:true,fonts:[{family:\"Jokker Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/MksxgM8aH3IrLJ3oBmTWlbruPo.woff2\"},{family:\"Jokker Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/GKqBvJltBWY62kmTTW6Gfa8btU.woff2\"},{family:\"Jokker Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/23QdaMnjgN1gbGPQPLvn68IXZQ.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWwJ6mxqa9\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"sZoULOZht\\\":\\\"bannerLink\\\",\\\"F735wmjeZ\\\":\\\"bannerTitle\\\",\\\"FrIdapwzh\\\":\\\"bannerDecorator\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nSeW8UuVx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TJDKRCjbn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Bv__MuBPo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"125\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WwJ6mxqa9.map", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nexport const containerStyles = {\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nconst nullIconStyle = {\n    minWidth: \"10px\",\n    minHeight: \"10px\",\n    maxWidth: \"20px\",\n    maxHeight: \"20px\",\n    width: \"60%\",\n    height: \"60%\"\n};\nconst emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(149, 149, 149, 0.1)\",\n    border: \"1px dashed rgba(149, 149, 149, 0.15)\",\n    color: \"#a5a5a5\",\n    flexDirection: \"column\"\n};\nexport const NullState = /*#__PURE__*/ React.forwardRef((_, ref)=>{\n    return(/*#__PURE__*/ _jsx(\"div\", {\n        style: emptyStateStyle,\n        ref: ref\n    }));\n}) /*\n\n<svg\n                xmlns=\"http://www.w3.org/2000/svg\"\n                viewBox=\"0 0 30 30\"\n                style={nullIconStyle}\n            >\n                <path\n                    d=\"M 12.857 0 C 19.958 0 25.714 5.756 25.714 12.857 C 25.714 19.958 19.958 25.714 12.857 25.714 C 5.756 25.714 0 19.958 0 12.857 C 0 5.756 5.756 0 12.857 0 Z\"\n                    fill=\"#FFFFFF\"\n                ></path>\n                <path\n                    d=\"M 20.357 20.357 L 27.857 27.857\"\n                    fill=\"transparent\"\n                    strokeWidth=\"4.28\"\n                    stroke=\"#FFFFFF\"\n                    strokeLinecap=\"round\"\n                ></path>\n                <g transform=\"translate(9.643 6.429)\">\n                    <path\n                        d=\"M 3.214 12.857 L 3.214 12.857\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.75\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                    ></path>\n                    <path\n                        d=\"M 0 3.214 C 0 1.004 1.843 0 3.214 0 C 4.586 0 6.429 0.603 6.429 3.214 C 6.429 5.826 3.214 5.913 3.214 7.232 C 3.214 8.552 3.214 8.571 3.214 8.571\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.22\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                        strokeLinejoin=\"round\"\n                    ></path>\n                </g>\n            </svg>\n            */ ;\n\nexport const __FramerMetadata__ = {\"exports\":{\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"NullState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./nullstate.map", "let Component;\nvar House_default = (React) => {\n  if (!Component) {\n    const weights = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M221.56,100.85,141.61,25.38l-.16-.15a19.93,19.93,0,0,0-26.91,0l-.17.15L34.44,100.85A20.07,20.07,0,0,0,28,115.55V208a20,20,0,0,0,20,20H96a20,20,0,0,0,20-20V164h24v44a20,20,0,0,0,20,20h48a20,20,0,0,0,20-20V115.55A20.07,20.07,0,0,0,221.56,100.85ZM204,204H164V160a20,20,0,0,0-20-20H112a20,20,0,0,0-20,20v44H52V117.28l76-71.75,76,71.75Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,115.54V208a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.54a8,8,0,0,1,2.62-5.92l80-75.54a8,8,0,0,1,10.77,0l80,75.54A8,8,0,0,1,216,115.54Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,115.55V208a16,16,0,0,1-16,16H168a16,16,0,0,1-16-16V168a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v40a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V115.55a16,16,0,0,1,5.17-11.78l80-75.48.11-.11a16,16,0,0,1,21.53,0,1.14,1.14,0,0,0,.11.11l80,75.48A16,16,0,0,1,224,115.55Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.47,105.24l-80-75.5-.09-.08a13.94,13.94,0,0,0-18.83,0l-.09.08-80,75.5A14,14,0,0,0,34,115.55V208a14,14,0,0,0,14,14H96a14,14,0,0,0,14-14V160a2,2,0,0,1,2-2h32a2,2,0,0,1,2,2v48a14,14,0,0,0,14,14h48a14,14,0,0,0,14-14V115.55A14,14,0,0,0,217.47,105.24ZM210,208a2,2,0,0,1-2,2H160a2,2,0,0,1-2-2V160a14,14,0,0,0-14-14H112a14,14,0,0,0-14,14v48a2,2,0,0,1-2,2H48a2,2,0,0,1-2-2V115.55a2,2,0,0,1,.65-1.48l.09-.08,79.94-75.48a2,2,0,0,1,2.63,0L209.26,114l.08.08a2,2,0,0,1,.66,1.48Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.13,106.72,136.07,31.13a12,12,0,0,0-16.2.05L39.93,106.67A12,12,0,0,0,36,115.54V208a12,12,0,0,0,12,12H96a12,12,0,0,0,12-12V160a4,4,0,0,1,4-4h32a4,4,0,0,1,4,4v48a12,12,0,0,0,12,12h48a12,12,0,0,0,12-12V115.54A12,12,0,0,0,216.13,106.72ZM212,208a4,4,0,0,1-4,4H160a4,4,0,0,1-4-4V160a12,12,0,0,0-12-12H112a12,12,0,0,0-12,12v48a4,4,0,0,1-4,4H48a4,4,0,0,1-4-4V115.54a4.09,4.09,0,0,1,1.36-3L125.3,37.05a4,4,0,0,1,5.33,0l80.06,75.58a4,4,0,0,1,1.31,3Z\" }))\n      ]\n    ]);\n    const House = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, weights.get(props.weight)));\n    House.displayName = \"House\";\n    Component = House;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n", "import{useMemo}from\"react\";import{ControlType}from\"framer\";/*\n ** ICON UTILS\n ** Pull as much re-usable logic into here as possible\n ** This will make it easier to replace in all icon components\n */ export const containerStyles={width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};export const defaultEvents={onClick:{type:ControlType.EventHandler},onMouseDown:{type:ControlType.EventHandler},onMouseUp:{type:ControlType.EventHandler},onMouseEnter:{type:ControlType.EventHandler},onMouseLeave:{type:ControlType.EventHandler}};const findByArray=(arr,search)=>arr.find(a=>a.toLowerCase().includes(search));export function getIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// gotta get the exact match first THEN find\n// have a set and try to access ?\nif(selectByList)return iconSelection;if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;}export function useIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// Clean search term\nconst iconSearchResult=useMemo(()=>{if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;},[iconSelection,iconSearch]);const name=selectByList?iconSelection:iconSearchResult;return name;}\nexport const __FramerMetadata__ = {\"exports\":{\"getIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.53\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"AddressBook\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Baby\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"BezierCurve\",\"Bicycle\",\"Binoculars\",\"Bird\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"BoundingBox\",\"BowlFood\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Buildings\",\"Bus\",\"Butterfly\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarPlus\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleText\",\"ChatDots\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checks\",\"Church\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCountdown\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"Command\",\"Compass\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"Cpu\",\"CreditCard\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSpeaker\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"DribbbleLogo\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"Fan\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileCloud\",\"FileCode\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"Footprints\",\"ForkKnife\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeStand\",\"Goggles\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GridFour\",\"GridNine\",\"Guitar\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandCoins\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"Hash\",\"HashStraight\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighHeel\",\"HighlighterCircle\",\"Hoodie\",\"Horse\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Jeep\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"Laptop\",\"Layout\",\"Leaf\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"MapPin\",\"MapPinLine\",\"MapTrifold\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MathOperations\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MessengerLogo\",\"MetaLogo\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"Monitor\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Newspaper\",\"NewspaperClipping\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Option\",\"OrangeSlice\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleRun\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneOutgoing\",\"PhonePlus\",\"PhoneSlash\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PinterestLogo\",\"Pinwheel\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"Queue\",\"Quotes\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Scales\",\"Scan\",\"Scissors\",\"Scooter\",\"Screencast\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealQuestion\",\"SealWarning\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Spinner\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackOverflowLogo\",\"StackSimple\",\"Stairs\",\"Stamp\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"Subtitles\",\"Subtract\",\"SubtractSquare\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextT\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Timer\",\"Tipi\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tote\",\"ToteSimple\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"Trophy\",\"Truck\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCircle\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XSquare\",\"YinYang\",\"YoutubeLogo\",];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\",];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.53\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/ _jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"24\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/xAqQJJMKulaAU8gK10ZA/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/1K1MLU6gGFgPKBHhjQVG/aIe5N9NeKvR0DZ7SCFR0/ro7OPezbn.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"H0wRJl8ki\",\"MWyxQEmAd\",\"zM26kOVoc\"];const serializationHash=\"framer-25d3P\";const variantClassNames={H0wRJl8ki:\"framer-v-vck6jy\",MWyxQEmAd:\"framer-v-1tgm99b\",zM26kOVoc:\"framer-v-drq0xo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"H0wRJl8ki\",Phone:\"zM26kOVoc\",Tablet:\"MWyxQEmAd\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"H0wRJl8ki\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"H0wRJl8ki\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.footer,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-vck6jy\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"H0wRJl8ki\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0.05)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-80a0612a-442e-4cbf-9ecf-ab5b7dd9811a, rgb(255, 241, 230))\",...style},...addPropertyOverrides({MWyxQEmAd:{\"data-framer-name\":\"Tablet\"},zM26kOVoc:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p1eiwo\",\"data-framer-name\":\"Horizontal\",layoutDependency:layoutDependency,layoutId:\"Pk5bO5QVG\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sng4kv\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"XNvPU_cc_\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"deOQLb85N\"},openInNewTab:false,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-19xtnpz framer-bpzoni\",\"data-framer-name\":\"$SigmaOS_Logo_Horizontal\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"LYsEr1hJR\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 121 22\"><g><defs><linearGradient id=\"idss977239637_1g-1621205006\" x1=\"5.551115123125783e-17\" x2=\"1\" y1=\"0.6783844911555117\" y2=\"0.3216155088444883\"><stop offset=\"0\" stop-color=\"rgb(255,166,90)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(255,83,122)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 19.099 20.881 C 14.844 22.39 10.076 21.212 7.072 17.909 C 6.724 17.508 6.25 17.23 5.724 17.118 C 5.453 17.058 5.176 17.028 4.898 17.027 C 4.593 17.026 4.285 17.045 3.982 17.083 C 3.769 17.108 3.546 17.144 3.328 17.177 C 2.684 17.278 2.016 17.381 1.447 17.281 C 1.307 17.257 1.169 17.217 1.039 17.163 C 0.908 17.108 0.787 17.037 0.677 16.949 C 0.56 16.854 0.457 16.744 0.373 16.621 C 0.273 16.476 0.193 16.32 0.135 16.155 L 0.135 16.153 C 0.071 15.99 0.03 15.82 0.01 15.648 C -0.007 15.499 -0.001 15.351 0.026 15.204 C 0.052 15.069 0.098 14.936 0.162 14.813 C 0.227 14.69 0.305 14.573 0.397 14.467 C 0.767 14.032 1.346 13.694 1.907 13.367 C 2.095 13.257 2.289 13.144 2.47 13.03 C 2.729 12.87 2.976 12.692 3.21 12.499 C 3.422 12.324 3.614 12.128 3.782 11.912 C 4.11 11.496 4.289 10.985 4.293 10.461 C 4.353 8.305 5.076 6.216 6.369 4.466 C 7.663 2.717 9.466 1.386 11.545 0.648 C 13.624 -0.09 15.883 -0.201 18.028 0.33 C 20.173 0.86 22.104 2.007 23.572 3.621 C 23.92 4.021 24.394 4.299 24.921 4.412 C 25.191 4.472 25.468 4.502 25.746 4.502 C 26.052 4.503 26.359 4.485 26.662 4.446 C 26.876 4.421 27.099 4.385 27.315 4.352 C 27.959 4.252 28.627 4.148 29.196 4.249 C 29.336 4.273 29.474 4.313 29.604 4.367 C 29.735 4.421 29.856 4.493 29.966 4.58 C 30.083 4.676 30.186 4.786 30.27 4.91 C 30.368 5.055 30.448 5.211 30.508 5.374 L 30.508 5.377 C 30.571 5.54 30.613 5.709 30.633 5.882 C 30.65 6.029 30.644 6.179 30.617 6.324 C 30.591 6.46 30.545 6.592 30.481 6.715 C 30.416 6.839 30.337 6.954 30.246 7.061 C 29.876 7.496 29.297 7.834 28.735 8.161 C 28.548 8.271 28.353 8.385 28.173 8.499 C 27.914 8.66 27.667 8.837 27.433 9.031 C 27.221 9.206 27.029 9.402 26.861 9.618 C 26.532 10.034 26.352 10.544 26.349 11.069 C 26.233 15.483 23.355 19.377 19.096 20.881 Z M 13.063 4.714 C 12.642 4.863 12.238 5.053 11.857 5.281 C 11.121 5.722 10.482 6.299 9.975 6.98 C 9.222 7.991 8.785 9.193 8.717 10.441 C 8.651 11.721 8.977 12.991 9.656 14.089 C 10.334 15.187 11.333 16.062 12.526 16.602 C 13.298 16.953 14.133 17.156 14.985 17.198 C 15.419 17.22 15.854 17.198 16.283 17.137 C 17.171 17.008 18.022 16.706 18.788 16.25 C 19.523 15.809 20.163 15.232 20.669 14.55 C 21.424 13.539 21.86 12.337 21.927 11.09 C 21.949 10.667 21.928 10.245 21.864 9.826 C 21.732 8.961 21.422 8.132 20.953 7.387 C 20.726 7.027 20.463 6.69 20.168 6.38 C 18.359 4.483 15.56 3.827 13.064 4.715 Z\" fill=\"url(#idss977239637_1g-1621205006)\"></path></g><path d=\"M 43.958 10.867 C 43.362 10.429 42.649 10.108 41.822 9.907 L 39.416 9.29 C 39.284 9.257 39.159 9.221 39.042 9.182 L 39.041 9.182 C 38.687 9.062 38.402 8.913 38.183 8.734 C 37.889 8.495 37.744 8.177 37.744 7.78 C 37.744 7.514 37.828 7.273 37.999 7.055 C 38.169 6.836 38.403 6.664 38.702 6.538 C 39.001 6.412 39.348 6.348 39.742 6.348 C 40.381 6.348 40.925 6.498 41.374 6.796 C 41.822 7.094 42.101 7.514 42.21 8.058 L 44.838 7.125 C 44.657 6.467 44.362 5.915 43.954 5.464 C 43.431 4.888 42.812 4.47 42.098 4.212 C 41.385 3.953 40.64 3.823 39.865 3.823 C 38.94 3.823 38.101 3.996 37.347 4.34 C 36.592 4.685 35.997 5.173 35.562 5.802 C 35.127 6.432 34.909 7.15 34.909 7.958 C 34.909 8.97 35.2 9.763 35.781 10.339 C 35.809 10.369 35.838 10.397 35.868 10.423 C 36.507 11.007 37.336 11.417 38.356 11.656 L 40.332 12.154 L 40.334 12.154 L 40.803 12.272 C 41.333 12.405 41.752 12.601 42.058 12.859 C 42.364 13.118 42.516 13.465 42.516 13.902 C 42.516 14.247 42.417 14.552 42.221 14.817 C 42.022 15.082 41.744 15.287 41.385 15.433 C 41.024 15.579 40.599 15.652 40.109 15.652 C 39.199 15.652 38.485 15.444 37.968 15.026 C 37.452 14.609 37.139 14.042 37.03 13.326 L 34.323 14.287 C 34.48 14.967 34.76 15.567 35.165 16.089 C 35.687 16.765 36.373 17.282 37.224 17.64 C 38.073 17.998 39.035 18.177 40.109 18.177 C 41.184 18.177 42.081 17.988 42.883 17.611 C 43.685 17.233 44.304 16.709 44.739 16.04 C 45.174 15.371 45.391 14.618 45.391 13.783 C 45.391 12.696 45.056 11.842 44.383 11.219 C 44.248 11.094 44.107 10.977 43.958 10.867 Z M 120.008 11.219 C 119.873 11.094 119.732 10.977 119.583 10.867 C 118.987 10.429 118.274 10.108 117.447 9.907 L 115.041 9.29 C 114.909 9.257 114.784 9.221 114.667 9.182 L 114.666 9.182 C 114.312 9.062 114.027 8.913 113.808 8.734 C 113.514 8.495 113.369 8.177 113.369 7.78 C 113.369 7.514 113.453 7.273 113.624 7.055 C 113.794 6.836 114.028 6.664 114.327 6.538 C 114.626 6.412 114.973 6.348 115.367 6.348 C 116.006 6.348 116.55 6.498 116.999 6.796 C 117.447 7.094 117.726 7.514 117.835 8.058 L 120.463 7.125 C 120.282 6.467 119.987 5.915 119.579 5.464 C 119.056 4.888 118.437 4.47 117.723 4.212 C 117.01 3.953 116.265 3.823 115.49 3.823 C 114.565 3.823 113.726 3.996 112.972 4.34 C 112.217 4.685 111.622 5.173 111.187 5.802 C 110.752 6.432 110.534 7.15 110.534 7.958 C 110.534 8.97 110.825 9.763 111.406 10.339 C 111.434 10.369 111.463 10.397 111.493 10.423 C 112.132 11.007 112.961 11.417 113.981 11.656 L 115.957 12.154 L 115.959 12.154 L 116.428 12.272 C 116.958 12.405 117.377 12.601 117.683 12.859 C 117.989 13.118 118.141 13.465 118.141 13.902 C 118.141 14.247 118.042 14.552 117.846 14.817 C 117.647 15.082 117.369 15.287 117.01 15.433 C 116.649 15.579 116.224 15.652 115.734 15.652 C 114.824 15.652 114.11 15.444 113.593 15.026 C 113.077 14.609 112.764 14.042 112.655 13.326 L 109.948 14.287 C 110.105 14.967 110.385 15.567 110.79 16.089 C 111.312 16.765 111.998 17.282 112.849 17.64 C 113.698 17.998 114.66 18.177 115.734 18.177 C 116.809 18.177 117.706 17.988 118.508 17.611 C 119.31 17.233 119.929 16.709 120.364 16.04 C 120.799 15.371 121.016 14.618 121.016 13.783 C 121.016 12.696 120.681 11.842 120.008 11.219 Z M 46.782 7.263 L 49.331 7.263 L 49.331 17.958 L 46.782 17.958 Z M 48.056 2.648 C 47.176 2.648 46.464 3.344 46.464 4.201 C 46.464 5.059 47.176 5.754 48.056 5.754 C 48.936 5.754 49.649 5.059 49.649 4.201 C 49.649 3.344 48.937 2.648 48.056 2.648 Z M 59.581 8.751 C 59.236 8.302 58.817 7.937 58.326 7.66 C 57.599 7.249 56.753 7.044 55.788 7.044 C 54.823 7.044 53.921 7.273 53.126 7.73 C 52.33 8.188 51.709 8.813 51.26 9.608 C 50.812 10.404 50.588 11.285 50.588 12.252 C 50.588 13.22 50.812 14.101 51.26 14.896 C 51.709 15.692 52.335 16.321 53.137 16.785 C 53.939 17.249 54.823 17.481 55.788 17.481 C 56.753 17.481 57.603 17.273 58.337 16.855 C 58.697 16.65 59.017 16.402 59.295 16.109 L 59.295 16.725 C 59.295 17.361 59.162 17.905 58.897 18.355 C 58.632 18.806 58.262 19.148 57.786 19.38 C 57.31 19.61 56.739 19.727 56.073 19.727 C 55.258 19.727 54.587 19.559 54.064 19.221 C 53.54 18.883 53.198 18.475 53.035 17.998 L 50.588 18.892 C 50.846 19.502 51.24 20.039 51.77 20.502 C 52.301 20.966 52.942 21.32 53.697 21.567 C 54.451 21.812 55.258 21.934 56.114 21.934 C 57.27 21.934 58.278 21.726 59.142 21.308 C 60.005 20.891 60.671 20.284 61.14 19.489 C 61.609 18.693 61.845 17.752 61.845 16.666 L 61.845 10.245 C 61.845 9.542 61.868 8.937 61.915 8.426 C 61.963 7.916 62.035 7.528 62.13 7.263 L 59.581 7.263 Z M 58.877 13.803 C 58.612 14.254 58.242 14.611 57.766 14.877 C 57.29 15.142 56.753 15.274 56.155 15.274 C 55.557 15.274 55.06 15.139 54.585 14.867 C 54.109 14.596 53.735 14.231 53.463 13.774 C 53.191 13.317 53.055 12.809 53.055 12.252 C 53.055 11.696 53.191 11.186 53.463 10.722 C 53.735 10.258 54.109 9.893 54.585 9.628 C 55.06 9.363 55.584 9.231 56.155 9.231 C 56.726 9.231 57.286 9.361 57.755 9.619 C 58.224 9.877 58.595 10.238 58.867 10.702 C 59.139 11.166 59.275 11.683 59.275 12.252 C 59.275 12.822 59.142 13.352 58.877 13.803 Z M 78.364 7.571 C 77.746 7.22 77.036 7.044 76.234 7.044 C 75.432 7.044 74.677 7.22 74.052 7.571 C 73.427 7.923 72.93 8.383 72.563 8.952 C 72.264 8.356 71.845 7.89 71.308 7.552 C 70.771 7.214 70.116 7.044 69.341 7.044 C 68.689 7.044 68.1 7.167 67.576 7.412 C 67.053 7.658 66.629 7.992 66.303 8.416 C 66.123 8.649 65.972 8.903 65.854 9.171 L 65.854 7.263 L 63.59 7.263 L 63.59 17.958 L 66.139 17.958 L 66.139 12.173 C 66.139 11.59 66.244 11.093 66.455 10.682 C 66.666 10.271 66.948 9.96 67.302 9.748 C 67.655 9.536 68.036 9.43 68.444 9.43 C 68.852 9.43 69.226 9.526 69.565 9.718 C 69.905 9.911 70.173 10.198 70.37 10.583 C 70.567 10.967 70.667 11.431 70.667 11.974 L 70.667 17.958 L 73.216 17.958 L 73.216 11.974 C 73.216 11.417 73.321 10.947 73.531 10.563 C 73.742 10.178 74.025 9.893 74.378 9.708 C 74.732 9.522 75.112 9.43 75.52 9.43 C 76.2 9.43 76.74 9.659 77.141 10.116 C 77.542 10.573 77.743 11.192 77.743 11.974 L 77.743 17.958 L 80.292 17.958 L 80.292 11.398 C 80.292 10.51 80.125 9.738 79.792 9.082 C 79.459 8.426 78.983 7.923 78.364 7.571 Z M 93.173 14.976 L 93.173 7.263 L 90.624 7.263 L 90.624 8.575 C 90.504 8.436 90.373 8.307 90.236 8.188 C 89.815 7.823 89.328 7.541 88.777 7.342 C 88.227 7.143 87.612 7.044 86.932 7.044 C 85.954 7.044 85.052 7.289 84.23 7.78 C 83.407 8.27 82.764 8.939 82.303 9.787 C 81.84 10.636 81.61 11.577 81.61 12.61 C 81.61 13.644 81.84 14.569 82.303 15.424 C 82.764 16.279 83.407 16.951 84.23 17.441 C 85.052 17.931 85.954 18.177 86.932 18.177 C 87.911 18.177 88.832 17.958 89.573 17.52 C 90.099 17.21 90.538 16.809 90.889 16.317 L 90.889 17.958 L 93.458 17.958 C 93.348 17.68 93.275 17.286 93.234 16.776 C 93.193 16.265 93.173 15.665 93.173 14.976 Z M 90.205 14.24 C 89.926 14.731 89.543 15.115 89.053 15.393 C 88.564 15.672 88.005 15.811 87.381 15.811 C 86.796 15.811 86.259 15.669 85.77 15.384 C 85.281 15.099 84.893 14.711 84.608 14.22 C 84.322 13.73 84.179 13.187 84.179 12.59 C 84.179 11.994 84.322 11.47 84.608 10.98 C 84.893 10.49 85.283 10.103 85.779 9.818 C 86.276 9.533 86.817 9.39 87.401 9.39 C 87.986 9.39 88.564 9.533 89.053 9.818 C 89.543 10.103 89.926 10.487 90.205 10.971 C 90.484 11.455 90.624 12.001 90.624 12.61 C 90.624 13.22 90.484 13.75 90.205 14.24 Z M 105.89 4.758 C 104.768 4.135 103.52 3.823 102.147 3.823 C 100.774 3.823 99.51 4.135 98.395 4.758 C 97.28 5.381 96.399 6.242 95.755 7.342 C 95.107 8.442 94.785 9.655 94.785 10.98 C 94.785 12.305 95.107 13.555 95.755 14.649 C 96.399 15.742 97.28 16.603 98.395 17.233 C 99.51 17.862 100.76 18.177 102.147 18.177 C 103.534 18.177 104.768 17.862 105.89 17.233 C 107.012 16.603 107.894 15.742 108.541 14.649 C 109.186 13.555 109.509 12.332 109.509 10.98 C 109.509 9.628 109.186 8.442 108.541 7.342 C 107.894 6.242 107.012 5.381 105.89 4.758 Z M 106.155 13.356 C 105.753 14.065 105.195 14.625 104.481 15.036 C 103.768 15.446 102.99 15.652 102.147 15.652 C 101.304 15.652 100.509 15.446 99.802 15.036 C 99.095 14.625 98.538 14.065 98.13 13.356 C 97.722 12.647 97.518 11.855 97.518 10.98 C 97.518 10.105 97.722 9.337 98.13 8.634 C 98.538 7.932 99.095 7.375 99.802 6.964 C 100.509 6.554 101.291 6.348 102.147 6.348 C 103.004 6.348 103.765 6.554 104.472 6.964 C 105.179 7.375 105.736 7.932 106.144 8.634 C 106.552 9.337 106.756 10.119 106.756 10.98 C 106.756 11.842 106.555 12.647 106.155 13.356 Z\" fill=\"var(--token-f9376adb-fe94-4614-8108-c32dbf90bd1c, rgba(35, 38, 43, 0.95)) /* {&quot;name&quot;:&quot;Uno&quot;} */\"></path></svg>',svgContentId:977239637,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w25pz1\",layoutDependency:layoutDependency,layoutId:\"QOm1kANUM\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rt7d75\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"JtOODqXKZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f9376adb-fe94-4614-8108-c32dbf90bd1c, rgba(35, 38, 43, 0.95)))\"},children:\"Perfect for\"})}),className:\"framer-1t37ar3\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"IMlCyu7GJ\",style:{\"--extracted-r6o4lv\":\"var(--token-f9376adb-fe94-4614-8108-c32dbf90bd1c, rgba(35, 38, 43, 0.95))\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14f01nh\",layoutDependency:layoutDependency,layoutId:\"kMnTQkWeK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78)))\"},children:\"Students\"})}),className:\"framer-1ljfv4z\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"L1t6MwJkm\",style:{\"--extracted-r6o4lv\":\"var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78)))\"},children:\"Researchers\"})}),className:\"framer-zloweg\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"IVM7DbHmP\",style:{\"--extracted-r6o4lv\":\"var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78)))\"},children:\"Founders\"})}),className:\"framer-15mfwku\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"t648udPNK\",style:{\"--extracted-r6o4lv\":\"var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78)))\"},children:\"Educators\"})}),className:\"framer-g44q93\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"xHq2xtrqm\",style:{\"--extracted-r6o4lv\":\"var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78)))\"},children:\"Creators\"})}),className:\"framer-d39fq2\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"zP4L85Z0C\",style:{\"--extracted-r6o4lv\":\"var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1adiuin\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"T3GUyO_iX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f9376adb-fe94-4614-8108-c32dbf90bd1c, rgba(35, 38, 43, 0.95)))\"},children:\"Company\"})}),className:\"framer-w645cz\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"By03SMNk4\",style:{\"--extracted-r6o4lv\":\"var(--token-f9376adb-fe94-4614-8108-c32dbf90bd1c, rgba(35, 38, 43, 0.95))\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-195uowc\",layoutDependency:layoutDependency,layoutId:\"h5bWBl8AZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"/updates\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Product Updates\"})})})}),className:\"framer-tjce98\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"iL6dhLhku\",style:{\"--extracted-r6o4lv\":\"var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kUv0i4pje\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Blog\"})})})}),className:\"framer-757b6r\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"QcMFc7V_9\",style:{\"--extracted-r6o4lv\":\"var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.ycombinator.com/companies/sigmaos\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Careers\"})})})}),className:\"framer-abu56u\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"tZxb8VtHC\",style:{\"--extracted-r6o4lv\":\"var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@sigmaos.com\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Contact us\"})})})}),className:\"framer-14naob7\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"M2ZasmnL3\",style:{\"--extracted-r6o4lv\":\"var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.sigmaos.com/privacy-policy\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Privacy Policy\"})})})}),className:\"framer-o8cciv\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"rKeVeve6o\",style:{\"--extracted-r6o4lv\":\"var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.sigmaos.com/common-questions\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"FAQ\"})})})}),className:\"framer-1igvgye\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"dn9d7tbOE\",style:{\"--extracted-r6o4lv\":\"var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4jrc4j\",\"data-border\":true,\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"vj7HWL7Aj\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78)))\"},children:\"\\xa9 2024 SigmaOS, Inc.\"})}),className:\"framer-1qilew3\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"DHzlXD7uD\",style:{\"--extracted-r6o4lv\":\"var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78))\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({zM26kOVoc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-964aaba7-7dd5-4ba1-9136-41732a36728c, rgba(73, 76, 80, 0.78)))\"},children:\"\\xa9 2024 SigmaOS, Inc.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w9gd6i\",\"data-framer-name\":\"Icons\",layoutDependency:layoutDependency,layoutId:\"ikdlZEwOw\",children:[/*#__PURE__*/_jsx(Link,{href:\"twitter.com/sigmaos\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ywl9g1 framer-bpzoni\",layoutDependency:layoutDependency,layoutId:\"qFcA9VeUk\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16lkeu7-container\",layoutDependency:layoutDependency,layoutId:\"O5fzeD4hl-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d8f49b7b-2a72-49b2-b85c-eceda21e3c99, rgb(156, 122, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"TwitterLogo\",id:\"O5fzeD4hl\",layoutId:\"O5fzeD4hl\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"youtube.com/@sigmaos\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1qe3t8n framer-bpzoni\",layoutDependency:layoutDependency,layoutId:\"xKt5J8g_D\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11m72qb-container\",layoutDependency:layoutDependency,layoutId:\"VsBwHw_gq-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6c54b421-1ad3-41d8-b409-e3f313c58f6f, rgb(255, 83, 122))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"YoutubeLogo\",id:\"VsBwHw_gq\",layoutId:\"VsBwHw_gq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"instagram.com/sigmaos.hq\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-d8uyo7 framer-bpzoni\",layoutDependency:layoutDependency,layoutId:\"ZquriDnpy\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12bkdvd-container\",layoutDependency:layoutDependency,layoutId:\"IoK4EWaX5-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-43084a0d-1302-4404-b823-172c2213564b, rgb(255, 166, 90))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"InstagramLogo\",id:\"IoK4EWaX5\",layoutId:\"IoK4EWaX5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"linkedin.com/companies/sigmaos\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1n89wnz framer-bpzoni\",layoutDependency:layoutDependency,layoutId:\"CCbeWpuKb\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3nk942-container\",layoutDependency:layoutDependency,layoutId:\"MlGh5Qz0o-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b3f1eb2b-32e0-4a3f-990a-49e39cbb52bb, rgb(0, 152, 233))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"LinkedinLogo\",id:\"MlGh5Qz0o\",layoutId:\"MlGh5Qz0o\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"tiktok.com/@sigmaos.hq\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-nvxx8i framer-bpzoni\",layoutDependency:layoutDependency,layoutId:\"UIRYxbxfE\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yqr2t1-container\",layoutDependency:layoutDependency,layoutId:\"JXYcBT9Gf-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f9376adb-fe94-4614-8108-c32dbf90bd1c, rgba(35, 38, 43, 0.95))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"TiktokLogo\",id:\"JXYcBT9Gf\",layoutId:\"JXYcBT9Gf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-25d3P.framer-bpzoni, .framer-25d3P .framer-bpzoni { display: block; }\",\".framer-25d3P.framer-vck6jy { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 40px 30px 60px; position: relative; width: 1200px; }\",\".framer-25d3P .framer-p1eiwo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-25d3P .framer-sng4kv, .framer-25d3P .framer-1rt7d75, .framer-25d3P .framer-1adiuin { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 300px; }\",\".framer-25d3P .framer-19xtnpz { flex: none; height: 22px; position: relative; text-decoration: none; width: 121px; }\",\".framer-25d3P .framer-1w25pz1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 25px; min-width: 56px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-25d3P .framer-1t37ar3, .framer-25d3P .framer-1ljfv4z, .framer-25d3P .framer-zloweg, .framer-25d3P .framer-15mfwku, .framer-25d3P .framer-g44q93, .framer-25d3P .framer-d39fq2, .framer-25d3P .framer-w645cz, .framer-25d3P .framer-tjce98, .framer-25d3P .framer-757b6r, .framer-25d3P .framer-abu56u, .framer-25d3P .framer-14naob7, .framer-25d3P .framer-o8cciv, .framer-25d3P .framer-1igvgye, .framer-25d3P .framer-1qilew3 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-25d3P .framer-14f01nh, .framer-25d3P .framer-195uowc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-25d3P .framer-4jrc4j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1000px; overflow: visible; padding: 30px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-25d3P .framer-w9gd6i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-25d3P .framer-ywl9g1, .framer-25d3P .framer-1qe3t8n, .framer-25d3P .framer-d8uyo7, .framer-25d3P .framer-1n89wnz, .framer-25d3P .framer-nvxx8i { flex: none; height: 20px; overflow: visible; position: relative; text-decoration: none; width: 20px; }\",\".framer-25d3P .framer-16lkeu7-container, .framer-25d3P .framer-11m72qb-container, .framer-25d3P .framer-12bkdvd-container, .framer-25d3P .framer-3nk942-container, .framer-25d3P .framer-yqr2t1-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-25d3P.framer-vck6jy, .framer-25d3P .framer-p1eiwo, .framer-25d3P .framer-sng4kv, .framer-25d3P .framer-1w25pz1, .framer-25d3P .framer-1rt7d75, .framer-25d3P .framer-14f01nh, .framer-25d3P .framer-1adiuin, .framer-25d3P .framer-195uowc, .framer-25d3P .framer-w9gd6i { gap: 0px; } .framer-25d3P.framer-vck6jy > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-25d3P.framer-vck6jy > :first-child, .framer-25d3P .framer-sng4kv > :first-child, .framer-25d3P .framer-1w25pz1 > :first-child, .framer-25d3P .framer-1rt7d75 > :first-child, .framer-25d3P .framer-14f01nh > :first-child, .framer-25d3P .framer-1adiuin > :first-child, .framer-25d3P .framer-195uowc > :first-child { margin-top: 0px; } .framer-25d3P.framer-vck6jy > :last-child, .framer-25d3P .framer-sng4kv > :last-child, .framer-25d3P .framer-1w25pz1 > :last-child, .framer-25d3P .framer-1rt7d75 > :last-child, .framer-25d3P .framer-14f01nh > :last-child, .framer-25d3P .framer-1adiuin > :last-child, .framer-25d3P .framer-195uowc > :last-child { margin-bottom: 0px; } .framer-25d3P .framer-p1eiwo > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-25d3P .framer-p1eiwo > :first-child, .framer-25d3P .framer-w9gd6i > :first-child { margin-left: 0px; } .framer-25d3P .framer-p1eiwo > :last-child, .framer-25d3P .framer-w9gd6i > :last-child { margin-right: 0px; } .framer-25d3P .framer-sng4kv > *, .framer-25d3P .framer-1rt7d75 > *, .framer-25d3P .framer-1adiuin > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-25d3P .framer-1w25pz1 > *, .framer-25d3P .framer-14f01nh > *, .framer-25d3P .framer-195uowc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-25d3P .framer-w9gd6i > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-25d3P.framer-v-1tgm99b.framer-vck6jy { width: 810px; }\",\".framer-25d3P.framer-v-1tgm99b .framer-sng4kv, .framer-25d3P.framer-v-1tgm99b .framer-1rt7d75, .framer-25d3P.framer-v-1tgm99b .framer-1adiuin { flex: 1 0 0px; width: 1px; }\",\".framer-25d3P.framer-v-drq0xo.framer-vck6jy { padding: 60px 40px 30px 40px; width: 390px; }\",\".framer-25d3P.framer-v-drq0xo .framer-p1eiwo { flex-direction: column; }\",\".framer-25d3P.framer-v-drq0xo .framer-sng4kv, .framer-25d3P.framer-v-drq0xo .framer-1rt7d75, .framer-25d3P.framer-v-drq0xo .framer-1adiuin { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-25d3P.framer-v-drq0xo .framer-p1eiwo { gap: 0px; } .framer-25d3P.framer-v-drq0xo .framer-p1eiwo > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-25d3P.framer-v-drq0xo .framer-p1eiwo > :first-child { margin-top: 0px; } .framer-25d3P.framer-v-drq0xo .framer-p1eiwo > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-25d3P[data-border=\"true\"]::after, .framer-25d3P [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 441\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MWyxQEmAd\":{\"layout\":[\"fixed\",\"auto\"]},\"zM26kOVoc\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXfbmoHDKZ=withCSS(Component,css,\"framer-25d3P\");export default FramerXfbmoHDKZ;FramerXfbmoHDKZ.displayName=\"Footer Dark\";FramerXfbmoHDKZ.defaultProps={height:441,width:1200};addPropertyControls(FramerXfbmoHDKZ,{variant:{options:[\"H0wRJl8ki\",\"MWyxQEmAd\",\"zM26kOVoc\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerXfbmoHDKZ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXfbmoHDKZ\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MWyxQEmAd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zM26kOVoc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"441\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XfbmoHDKZ.map"],
  "mappings": "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",
  "names": ["fontStore", "fonts", "css", "className", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withSaturatedBlurryBackground", "Component", "props", "style", "p", "MotionAWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "MotionDivWithSaturatedBlurryBackground", "withSaturatedBlurryBackground", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transition3", "animation1", "animation2", "isSet", "value", "transition4", "animation3", "animation4", "animation5", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "bannerDecorator", "bannerLink", "bannerTitle", "height", "id", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "sZoULOZht", "F735wmjeZ", "FrIdapwzh", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapv966xa", "args", "onTap192juz6", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "visible", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "SVG", "RichText2", "css", "FramerWwJ6mxqa9", "withCSS", "WwJ6mxqa9_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "Component", "House_default", "React", "weights", "House", "props", "ref", "defaultEvents", "ControlType", "findByArray", "arr", "search", "a", "useIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchResult", "se", "iconSearchTerm", "_iconSearchTerm", "findByArray", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "SVG", "RichText2", "ComponentViewportProvider", "css", "FramerXfbmoHDKZ", "withCSS", "XfbmoHDKZ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
