{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/GMXVbvr4dtNlgSSOqCX2/4mzYsfVtA8Jo5CAMLb9h/gX2fbWjnx.js", "ssg:https://framerusercontent.com/modules/zSr3A3SqzbDDFKpcyfsV/KNBdnniX11GP7KEDAyfD/toggle.js", "ssg:https://framerusercontent.com/modules/O6jrXIhSnPqin4RzgfEy/Q3LeJEg5RJHjIVDQXr9Y/qm4oNuVoJ.js", "ssg:https://framerusercontent.com/modules/DhRC6CTulZlzUo1g5ZJ4/Jtzw35KHwEHGBx1zioqj/Y3TX0GLVx.js", "ssg:https://framerusercontent.com/modules/QJbNW8wpwvEw0qKIjES0/AwDOBMXvUQVD6E2CftNq/HeGeDbtpH.js"],
  "sourcesContent": ["// Generated by Framer (9e04080)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;BDO Grotesk Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"BDO Grotesk Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/Sk82rOE9I0ck31H7NDDI3qwVY.woff2\"}]}];export const css=['.framer-Jvq9n .framer-styles-preset-1jdkd7w:not(.rich-text-wrapper), .framer-Jvq9n .framer-styles-preset-1jdkd7w.rich-text-wrapper p { --framer-font-family: \"BDO Grotesk Regular\", \"BDO Grotesk Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 10px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.1px; --framer-line-height: 12px; --framer-paragraph-spacing: 12px; --framer-text-alignment: start; --framer-text-color: var(--token-17284513-4a11-4dc2-add4-38cbe821af03, #5b5b5b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-Jvq9n\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{Frame,addPropertyControls,ControlType}from\"framer\";//Stores theme in local storage \u2B07\uFE0E\nfunction getStoredTheme(){return localStorage.getItem(\"currentToggleState\");}//Detect's system theme automatically \u2B07\uFE0E\nfunction SystemThemeDetector({onThemeDetected}){const[systemTheme,setSystemTheme]=React.useState(null);const[errorMessage,setErrorMessage]=React.useState(null);React.useEffect(()=>{const darkModeMediaQuery=window.matchMedia(\"(prefers-color-scheme: dark)\");const handleThemeChange=e=>{const theme=e.matches?\"dark\":\"light\";setSystemTheme(theme);setErrorMessage(null);onThemeDetected(theme);};try{if(darkModeMediaQuery.media===\"not all\"){setErrorMessage(\"System theme detection not supported\");onThemeDetected(null);}else{handleThemeChange(darkModeMediaQuery);darkModeMediaQuery.addEventListener(\"change\",handleThemeChange);}}catch(error){setErrorMessage(\"Error detecting system theme\");onThemeDetected(null);}return()=>{darkModeMediaQuery.removeEventListener(\"change\",handleThemeChange);};},[onThemeDetected]);return null;}//Theme Switch Component \u2B07\uFE0E\nexport function ThemeSwitch({backgroundColor,switchSize,circleColor}){const[isOn,setIsOn]=React.useState(false);const[isThemeSet,setIsThemeSet]=React.useState(false);const[systemTheme,setSystemTheme]=React.useState(null);//When clicked, it toggles between light/dark mode and saves it to local storage \u2B07\uFE0E\nconst toggle=()=>{const newToggleState=isOn?\"dark\":\"light\";setIsOn(!isOn);localStorage.setItem(\"currentToggleState\",newToggleState);updateTheme(newToggleState);};//Modifies CSS and applies theme style \u2B07\uFE0E\nconst updateTheme=theme=>{if(typeof document!==\"undefined\"){const styleTag=document.getElementsByTagName(\"style\")[0];const newCSS=styleTag.innerHTML.replace(/prefers-color-scheme: \\w+/,`prefers-color-scheme: ${theme}`);styleTag.innerHTML=newCSS;}window.dispatchEvent(new CustomEvent(\"themeChange\"));};const handleSystemThemeChange=theme=>{setSystemTheme(theme);if(!isThemeSet){setIsOn(theme===\"dark\");updateTheme(theme);setIsThemeSet(true);}};//Checks if the user previously selected a theme and ensures the correct theme is set on initial load \u2B07\uFE0E\nReact.useEffect(()=>{const storedTheme=getStoredTheme();if(storedTheme){setIsOn(storedTheme===\"light\");updateTheme(storedTheme);setIsThemeSet(true);}else{const systemTheme=window.matchMedia(\"(prefers-color-scheme: dark)\").matches?\"dark\":\"light\";setIsOn(systemTheme===\"dark\");updateTheme(systemTheme);setIsThemeSet(true);}},[]);//This formula dynamically scales the circle\u2019s size based on the switchSize to maintain a balanced look \u2B07\uFE0E\nconst circleSize=switchSize/1.75-switchSize/8;//Renders the switch with a customizable size and background \u2B07\uFE0E\nreturn /*#__PURE__*/_jsx(Frame,{width:switchSize,height:switchSize,background:backgroundColor,style:{borderRadius:switchSize/1,cursor:\"pointer\",position:\"relative\",display:\"flex\",alignItems:\"center\",justifyContent:\"space-between\",padding:`0 ${switchSize/8}px`},onClick:toggle,children:isThemeSet&&// Uses Framer Motion animation to smoothly move the circle when toggled \u2B07\uFE0E\n/*#__PURE__*/_jsx(Frame,{width:circleSize,height:circleSize,background:circleColor,style:{borderRadius:\"100%\",opacity:\"0%\",position:\"absolute\",left:isOn?`calc(100% - ${circleSize+switchSize/0}px)`:`${switchSize/0}px`,transition:\"left 0.2s\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",boxShadow:\"2px 2px 10px 0px rgba(0, 0, 0, 0.15)\"},initial:false,animate:{left:isOn?`calc(100% - ${circleSize+switchSize/16}px)`:`${switchSize/16}px`},children:/*#__PURE__*/_jsx(Frame,{background:\"transparent\",style:{overflow:\"hidden\"}})})});}// Sets default colors and sizes if the user doesn\u2019t override them \u2B07\uFE0E\nThemeSwitch.defaultProps={backgroundColor:\"#e0e0e0\",switchSize:70,circleColor:\"#ffffff\"};//This adds custom controls to Framer UI so designers can tweak bg color, switch size, circle color \u2B07\uFE0E\naddPropertyControls(ThemeSwitch,{backgroundColor:{title:\"Background Color\",type:ControlType.Color,defaultValue:\"#e0e0e0\"},switchSize:{title:\"Switch Size\",type:ControlType.Number,defaultValue:70,min:12,max:200,step:1},circleColor:{title:\"Circle Color\",type:ControlType.Color,defaultValue:\"#ffffff\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"ThemeSwitch\":{\"type\":\"reactComponent\",\"name\":\"ThemeSwitch\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./toggle.map", "// Generated by Framer (9e04080)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-tZro2 .framer-styles-preset-1jb1tdc:not(.rich-text-wrapper), .framer-tZro2 .framer-styles-preset-1jb1tdc.rich-text-wrapper a { --framer-link-current-text-color: var(--token-5e34fd48-40ed-4be7-a9fb-48c6914f3602, #0a0a0a); --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-380d9c0d-c0ad-447c-8b29-9525b7e8b87b, #303030); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-17284513-4a11-4dc2-add4-38cbe821af03, #5b5b5b); --framer-link-text-decoration: none; }\"];export const className=\"framer-tZro2\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9e04080)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-VJApG .framer-styles-preset-15o8zcb:not(.rich-text-wrapper), .framer-VJApG .framer-styles-preset-15o8zcb.rich-text-wrapper a { --framer-link-current-text-color: var(--token-5e34fd48-40ed-4be7-a9fb-48c6914f3602, #0a0a0a); --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-5e34fd48-40ed-4be7-a9fb-48c6914f3602, #0a0a0a); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-5e34fd48-40ed-4be7-a9fb-48c6914f3602, #0a0a0a); --framer-link-text-decoration: none; }\"];export const className=\"framer-VJApG\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (629c622)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{ThemeSwitch}from\"https://framerusercontent.com/modules/zSr3A3SqzbDDFKpcyfsV/KNBdnniX11GP7KEDAyfD/toggle.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/GMXVbvr4dtNlgSSOqCX2/4mzYsfVtA8Jo5CAMLb9h/gX2fbWjnx.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/O6jrXIhSnPqin4RzgfEy/Q3LeJEg5RJHjIVDQXr9Y/qm4oNuVoJ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/DhRC6CTulZlzUo1g5ZJ4/Jtzw35KHwEHGBx1zioqj/Y3TX0GLVx.js\";const ThemeSwitchFonts=getFonts(ThemeSwitch);const cycleOrder=[\"jEuXaZhmr\",\"Mm72a1SCJ\",\"AsGvMxYtA\"];const serializationHash=\"framer-GThLF\";const variantClassNames={AsGvMxYtA:\"framer-v-137dh5p\",jEuXaZhmr:\"framer-v-r0e77l\",Mm72a1SCJ:\"framer-v-gr38ba\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};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:-45,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Works - Desktop\":\"jEuXaZhmr\",\"Works - Mobile\":\"AsGvMxYtA\",\"Works - Tablet\":\"Mm72a1SCJ\"};const getProps=({height,id,padding2XLarge,spacing2XSmall,spacing4XLarge,spacingMedium,spacingSmall,spacingXLarge,spacingXSmall,width,...props})=>{return{...props,aOHqOF4nP:spacingXLarge??props.aOHqOF4nP??24,cV96qOwjE:spacing2XSmall??props.cV96qOwjE??4,fDj4yAQ17:padding2XLarge??props.fDj4yAQ17??32,KPYdSOZYr:spacing4XLarge??props.KPYdSOZYr??48,lB9KJdVvZ:spacingXSmall??props.lB9KJdVvZ??8,lk0P_bTXd:spacingMedium??props.lk0P_bTXd??16,PbjrEeFtH:spacingSmall??props.PbjrEeFtH??12,variant:humanReadableVariantMap[props.variant]??props.variant??\"jEuXaZhmr\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,cV96qOwjE,lB9KJdVvZ,PbjrEeFtH,lk0P_bTXd,aOHqOF4nP,KPYdSOZYr,fDj4yAQ17,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jEuXaZhmr\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Mm72a1SCJ\",\"AsGvMxYtA\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"AsGvMxYtA\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"Mm72a1SCJ\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-r0e77l\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Works - Desktop\",layoutDependency:layoutDependency,layoutId:\"jEuXaZhmr\",ref:refBinding,style:{\"--3dhqxv\":numberToPixelString(fDj4yAQ17),\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-76893855-f63e-41c0-8453-400df5f2bbb5, rgb(226, 226, 226))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-61b2bfbd-e04a-4462-a17b-fdb8fabcbad9, rgb(248, 248, 248))\",...style},variants:{AsGvMxYtA:{\"--border-bottom-width\":\"1px\",\"--border-right-width\":\"0px\"},Mm72a1SCJ:{\"--border-bottom-width\":\"1px\",\"--border-right-width\":\"0px\"}},...addPropertyOverrides({AsGvMxYtA:{\"data-framer-name\":\"Works - Mobile\"},Mm72a1SCJ:{\"data-framer-name\":\"Works - Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tlss9z\",\"data-framer-name\":\"Navbar Content\",layoutDependency:layoutDependency,layoutId:\"yi_o6Jlaw\",style:{\"--l8sa71\":numberToPixelString(KPYdSOZYr)},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16r5jrt\",\"data-framer-name\":\"Logotype & Subtitle\",layoutDependency:layoutDependency,layoutId:\"BSH4NbN7Y\",style:{\"--gzkfo1\":numberToPixelString(PbjrEeFtH)},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nbyfl1\",\"data-framer-name\":\"Logotype & Slogan\",layoutDependency:layoutDependency,layoutId:\"dqZYjUYG0\",style:{\"--1szh99p\":numberToPixelString(cV96qOwjE)},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SHVib3QgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Hubot Sans\", \"Hubot Sans Placeholder\", sans-serif',\"--framer-font-size\":\"57.202738643703206px\",\"--framer-letter-spacing\":\"-1.6px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e34fd48-40ed-4be7-a9fb-48c6914f3602, rgb(10, 10, 10)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LBarwq76h\"},motionChild:true,nodeId:\"mQmIN5ZJG\",openInNewTab:false,relValues:[],scopeId:\"HeGeDbtpH\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15o8zcb\",\"data-styles-preset\":\"Y3TX0GLVx\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"ARCHA\"})})})})}),className:\"framer-6rkae6\",\"data-framer-name\":\"Wordmark\",fonts:[\"GF;Hubot Sans-regular\",\"GF;Hubot Sans-700\"],layoutDependency:layoutDependency,layoutId:\"mQmIN5ZJG\",style:{\"--extracted-r6o4lv\":\"var(--token-5e34fd48-40ed-4be7-a9fb-48c6914f3602, rgb(10, 10, 10))\",\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"center\",viewBox:\"0 0 216 57\",withExternalLayout:true,...addPropertyOverrides({AsGvMxYtA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SHVib3QgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Hubot Sans\", \"Hubot Sans Placeholder\", sans-serif',\"--framer-font-size\":\"94.37441931769px\",\"--framer-letter-spacing\":\"-2.4px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e34fd48-40ed-4be7-a9fb-48c6914f3602, rgb(10, 10, 10)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LBarwq76h\"},motionChild:true,nodeId:\"mQmIN5ZJG\",openInNewTab:false,relValues:[],scopeId:\"HeGeDbtpH\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15o8zcb\",\"data-styles-preset\":\"Y3TX0GLVx\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"ARCHA\"})})})})}),viewBox:\"0 0 358.4 94\"},Mm72a1SCJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SHVib3QgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Hubot Sans\", \"Hubot Sans Placeholder\", sans-serif',\"--framer-font-size\":\"89.02788741213884px\",\"--framer-letter-spacing\":\"-2.4px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e34fd48-40ed-4be7-a9fb-48c6914f3602, rgb(10, 10, 10)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LBarwq76h\"},motionChild:true,nodeId:\"mQmIN5ZJG\",openInNewTab:false,relValues:[],scopeId:\"HeGeDbtpH\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15o8zcb\",\"data-styles-preset\":\"Y3TX0GLVx\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"ARCHA\"})})})})}),viewBox:\"0 0 338.4 89\"}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7TW9uYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Mona Sans\", \"Mona Sans Placeholder\", sans-serif',\"--framer-font-size\":\"5.419899340871814px\",\"--framer-letter-spacing\":\"-0.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-380d9c0d-c0ad-447c-8b29-9525b7e8b87b, rgb(48, 48, 48)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"9.058899241599727px\"},children:\"Designing not for screens, but for senses \u2014\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"9.058899241599727px\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"9.058899241599727px\"},children:\"shaping the invisible, because experience is everything.\"})]})}),className:\"framer-q6j8rz\",\"data-framer-name\":\"Slogan\",fonts:[\"GF;Mona Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"eJZfxWAtg\",style:{\"--extracted-r6o4lv\":\"var(--token-380d9c0d-c0ad-447c-8b29-9525b7e8b87b, rgb(48, 48, 48))\",\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"center\",viewBox:\"0 0 216 22\",withExternalLayout:true,...addPropertyOverrides({AsGvMxYtA:{viewBox:\"0 0 215.28 22\"},Mm72a1SCJ:{viewBox:\"0 0 215.28 22\"}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tdcrxw\",\"data-framer-name\":\"Toggle wrapper\",layoutDependency:layoutDependency,layoutId:\"pqeSRFMe4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uhl29k-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"m_6QfIAyK-container\",nodeId:\"m_6QfIAyK\",rendersWithMotion:true,scopeId:\"HeGeDbtpH\",children:/*#__PURE__*/_jsx(ThemeSwitch,{backgroundColor:\"var(--token-76893855-f63e-41c0-8453-400df5f2bbb5, rgb(198, 198, 198))\",circleColor:\"rgb(255, 255, 255)\",height:\"100%\",id:\"m_6QfIAyK\",layoutId:\"m_6QfIAyK\",switchSize:12,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cr9czt\",\"data-framer-name\":\"Tab/Group\",layoutDependency:layoutDependency,layoutId:\"mPw45bFmU\",style:{\"--1v5wpud\":numberToPixelString(aOHqOF4nP)},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jdkd7w\",\"data-styles-preset\":\"gX2fbWjnx\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LBarwq76h\"},motionChild:true,nodeId:\"bWjayXlY3\",openInNewTab:false,relValues:[],scopeId:\"HeGeDbtpH\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jb1tdc\",\"data-styles-preset\":\"qm4oNuVoJ\",children:\"LATEST WORKS\"})})})}),className:\"framer-1ysn15w\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bWjayXlY3\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jdkd7w\",\"data-styles-preset\":\"gX2fbWjnx\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"VOkth0hle\",openInNewTab:false,relValues:[],scopeId:\"HeGeDbtpH\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jb1tdc\",\"data-styles-preset\":\"qm4oNuVoJ\",children:\"ABOUT ARCHA\\xae\"})})})}),className:\"framer-1s83zm6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VOkth0hle\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jdkd7w\",\"data-styles-preset\":\"gX2fbWjnx\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JT70MqxoX\"},motionChild:true,nodeId:\"glnFIriWI\",openInNewTab:false,relValues:[],scopeId:\"HeGeDbtpH\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jb1tdc\",\"data-styles-preset\":\"qm4oNuVoJ\",children:\"NOMINATIONS\"})})})}),className:\"framer-fx3rnq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"glnFIriWI\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jdkd7w\",\"data-styles-preset\":\"gX2fbWjnx\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"knNNTU3Sx\"},motionChild:true,nodeId:\"XezvWk_B5\",openInNewTab:false,relValues:[],scopeId:\"HeGeDbtpH\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jb1tdc\",\"data-styles-preset\":\"qm4oNuVoJ\",children:\"SOCIALS\"})})})}),className:\"framer-m988ph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XezvWk_B5\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pw11g3\",\"data-framer-name\":\"Toggle wrapper\",layoutDependency:layoutDependency,layoutId:\"N_I1GpL7p\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mrfkf8-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"L6RBN98X9-container\",nodeId:\"L6RBN98X9\",rendersWithMotion:true,scopeId:\"HeGeDbtpH\",children:/*#__PURE__*/_jsx(ThemeSwitch,{backgroundColor:\"var(--token-76893855-f63e-41c0-8453-400df5f2bbb5, rgb(198, 198, 198))\",circleColor:\"rgb(255, 255, 255)\",height:\"100%\",id:\"L6RBN98X9\",layoutId:\"L6RBN98X9\",switchSize:12,width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-y0jncy\",\"data-framer-name\":\"Toggle wrapper\",layoutDependency:layoutDependency,layoutId:\"vUpM58S7c\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vies7j-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"WAutwFhh7-container\",nodeId:\"WAutwFhh7\",rendersWithMotion:true,scopeId:\"HeGeDbtpH\",children:/*#__PURE__*/_jsx(ThemeSwitch,{backgroundColor:\"var(--token-76893855-f63e-41c0-8453-400df5f2bbb5, rgb(198, 198, 198))\",circleColor:\"rgb(255, 255, 255)\",height:\"100%\",id:\"WAutwFhh7\",layoutId:\"WAutwFhh7\",switchSize:12,width:\"100%\"})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gxldj8\",layoutDependency:layoutDependency,layoutId:\"cjikzaljy\",style:{\"--mj06j7\":numberToPixelString(lk0P_bTXd)},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"atIjbQmUS\"},motionChild:true,nodeId:\"lGJM4Whh9\",openInNewTab:false,scopeId:\"HeGeDbtpH\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:156,pixelHeight:156,pixelWidth:156,src:\"https://framerusercontent.com/images/iqEt9MYh9qOvv5vDXoqNnljVhrQ.svg\"},className:\"framer-15rpx6r framer-1golr5o\",\"data-framer-name\":\"Circled Button\",layoutDependency:layoutDependency,layoutId:\"lGJM4Whh9\",style:{borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,filter:\"invert(1)\",WebkitFilter:\"invert(1)\"},whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16fi4x4\",\"data-framer-name\":\"arrow_narrow_right\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"wYPKCk4TN\",svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6.667 16h18.666m0 0L20 21.333M25.333 16 20 10.666\" stroke=\"#0A0A0A\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16bmuhk\",\"data-framer-name\":\"Tab/Group\",layoutDependency:layoutDependency,layoutId:\"nck6yuQnm\",style:{\"--2p63gd\":numberToPixelString(lB9KJdVvZ)},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jdkd7w\",\"data-styles-preset\":\"gX2fbWjnx\",children:/*#__PURE__*/_jsx(Link,{href:\"https://wa.me/37067748799\",motionChild:true,nodeId:\"c7ioeZxgO\",openInNewTab:true,relValues:[],scopeId:\"HeGeDbtpH\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jb1tdc\",\"data-styles-preset\":\"qm4oNuVoJ\",children:\"+37067748799\"})})})}),className:\"framer-1k1stnp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"c7ioeZxgO\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jdkd7w\",\"data-styles-preset\":\"gX2fbWjnx\",children:/*#__PURE__*/_jsx(Link,{href:\"mailto:hi@archafoundry.com\",motionChild:true,nodeId:\"rXX4ltIqx\",openInNewTab:true,relValues:[],scopeId:\"HeGeDbtpH\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jb1tdc\",\"data-styles-preset\":\"qm4oNuVoJ\",children:\"HI@ARCHAFOUNDRY.COM\"})})})}),className:\"framer-lxt0l4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rXX4ltIqx\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GThLF.framer-1golr5o, .framer-GThLF .framer-1golr5o { display: block; }\",\".framer-GThLF.framer-r0e77l { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: 900px; justify-content: space-between; overflow: visible; padding: var(--3dhqxv); position: relative; width: 280px; }\",\".framer-GThLF .framer-1tlss9z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: var(--l8sa71); height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GThLF .framer-16r5jrt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: var(--gzkfo1); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GThLF .framer-nbyfl1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: var(--1szh99p); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GThLF .framer-6rkae6, .framer-GThLF .framer-1ysn15w, .framer-GThLF .framer-1s83zm6, .framer-GThLF .framer-fx3rnq, .framer-GThLF .framer-m988ph, .framer-GThLF .framer-1k1stnp, .framer-GThLF .framer-lxt0l4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GThLF .framer-q6j8rz { flex: none; height: auto; position: relative; white-space: pre; width: 100%; }\",\".framer-GThLF .framer-1tdcrxw, .framer-GThLF .framer-1pw11g3, .framer-GThLF .framer-y0jncy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-GThLF .framer-1uhl29k-container, .framer-GThLF .framer-1mrfkf8-container, .framer-GThLF .framer-vies7j-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-GThLF .framer-1cr9czt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: var(--1v5wpud); height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-GThLF .framer-1gxldj8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: var(--mj06j7); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GThLF .framer-15rpx6r { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 70px); justify-content: center; mix-blend-mode: difference; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-GThLF .framer-16fi4x4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 32px; }\",\".framer-GThLF .framer-16bmuhk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: var(--2p63gd); height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-GThLF.framer-v-gr38ba.framer-r0e77l { gap: 0px; height: min-content; justify-content: center; padding: 16px 24px 16px 24px; width: 810px; }\",\".framer-GThLF.framer-v-gr38ba .framer-1tlss9z { align-content: center; align-items: center; flex-direction: row; gap: unset; justify-content: space-between; }\",\".framer-GThLF.framer-v-gr38ba .framer-16r5jrt { width: 50%; }\",\".framer-GThLF.framer-v-gr38ba .framer-1cr9czt { align-self: stretch; gap: unset; height: auto; justify-content: space-between; }\",\".framer-GThLF.framer-v-137dh5p.framer-r0e77l { gap: 0px; height: min-content; justify-content: center; padding: 8px 16px 12px 16px; width: 390px; }\",\".framer-GThLF.framer-v-137dh5p .framer-1tlss9z { gap: 24px; }\",\".framer-GThLF.framer-v-137dh5p .framer-1cr9czt { flex-direction: row; gap: unset; justify-content: space-between; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-GThLF[data-border=\"true\"]::after, .framer-GThLF [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 900\n * @framerIntrinsicWidth 280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Mm72a1SCJ\":{\"layout\":[\"fixed\",\"auto\"]},\"AsGvMxYtA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"cV96qOwjE\":\"spacing2XSmall\",\"lB9KJdVvZ\":\"spacingXSmall\",\"PbjrEeFtH\":\"spacingSmall\",\"lk0P_bTXd\":\"spacingMedium\",\"aOHqOF4nP\":\"spacingXLarge\",\"KPYdSOZYr\":\"spacing4XLarge\",\"fDj4yAQ17\":\"padding2XLarge\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerHeGeDbtpH=withCSS(Component,css,\"framer-GThLF\");export default FramerHeGeDbtpH;FramerHeGeDbtpH.displayName=\"NavBar\";FramerHeGeDbtpH.defaultProps={height:900,width:280};addPropertyControls(FramerHeGeDbtpH,{variant:{options:[\"jEuXaZhmr\",\"Mm72a1SCJ\",\"AsGvMxYtA\"],optionTitles:[\"Works - Desktop\",\"Works - Tablet\",\"Works - Mobile\"],title:\"Variant\",type:ControlType.Enum},cV96qOwjE:{defaultValue:4,min:0,title:\"spacing-2x-small\",type:ControlType.Number},lB9KJdVvZ:{defaultValue:8,min:0,title:\"spacing-x-small\",type:ControlType.Number},PbjrEeFtH:{defaultValue:12,min:0,title:\"spacing-small\",type:ControlType.Number},lk0P_bTXd:{defaultValue:16,min:0,title:\"spacing-medium\",type:ControlType.Number},aOHqOF4nP:{defaultValue:24,min:0,title:\"spacing-x-large\",type:ControlType.Number},KPYdSOZYr:{defaultValue:48,min:0,title:\"spacing-4x-large\",type:ControlType.Number},fDj4yAQ17:{defaultValue:32,min:0,title:\"padding-2x-large\",type:ControlType.Number}});addFonts(FramerHeGeDbtpH,[{explicitInter:true,fonts:[{family:\"Hubot Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/hubotsans/v4/pe0BMIiULYxOvxVLbVwhONyy6zb7yFM9V5G3iZ3X0avsIiCxjLsC57ZdhbDVwVqcXQ.woff2\",weight:\"400\"},{family:\"Hubot Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/hubotsans/v4/pe0BMIiULYxOvxVLbVwhONyy6zb7yFM9V5G3iZ3X0avsIiCxjLsCALFdhbDVwVqcXQ.woff2\",weight:\"700\"},{family:\"Mona Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/monasans/v3/o-0mIpQmx24alC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyD9A99Y41P6zHtY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ThemeSwitchFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHeGeDbtpH\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"900\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Mm72a1SCJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AsGvMxYtA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"280\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"cV96qOwjE\\\":\\\"spacing2XSmall\\\",\\\"lB9KJdVvZ\\\":\\\"spacingXSmall\\\",\\\"PbjrEeFtH\\\":\\\"spacingSmall\\\",\\\"lk0P_bTXd\\\":\\\"spacingMedium\\\",\\\"aOHqOF4nP\\\":\\\"spacingXLarge\\\",\\\"KPYdSOZYr\\\":\\\"spacing4XLarge\\\",\\\"fDj4yAQ17\\\":\\\"padding2XLarge\\\"}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HeGeDbtpH.map"],
  "mappings": "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",
  "names": ["fontStore", "fonts", "css", "className", "getStoredTheme", "ThemeSwitch", "backgroundColor", "switchSize", "circleColor", "isOn", "setIsOn", "ye", "isThemeSet", "setIsThemeSet", "systemTheme", "setSystemTheme", "toggle", "newToggleState", "updateTheme", "theme", "styleTag", "newCSS", "window", "handleSystemThemeChange", "ue", "storedTheme", "getStoredTheme", "circleSize", "p", "Frame", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "ThemeSwitchFonts", "getFonts", "ThemeSwitch", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "transition2", "animation", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "padding2XLarge", "spacing2XSmall", "spacing4XLarge", "spacingMedium", "spacingSmall", "spacingXLarge", "spacingXSmall", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "cV96qOwjE", "lB9KJdVvZ", "PbjrEeFtH", "lk0P_bTXd", "aOHqOF4nP", "KPYdSOZYr", "fDj4yAQ17", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "RichText", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "SVG", "css", "FramerHeGeDbtpH", "withCSS", "HeGeDbtpH_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
