{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/qI1autnce1ngcX7nJQbN/0GVQhVdC8lONnAjjGDYb/SingleToggle.js", "ssg:https://framerusercontent.com/modules/cBF15lBi7RiyI8q4CFpd/HCmFLo76G51WSP2Fde9R/Zbmf7W7C5.js", "ssg:https://framerusercontent.com/modules/cmTtXrGIgvlXurH1sYiX/ZgwhEqhQeYK7PemoMOZB/Vuw93iw32.js", "ssg:https://framerusercontent.com/modules/zJGxinLSI0Tr22Dodvw5/B59ChXHiAAXoN0a6sa06/rfgSi8bga.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const useStore=createStore({// See here => Set the starting theme below\ntheme:\"light\"});const changeTheme=theme=>{console.log(theme);const htmlElement=document.getElementsByTagName(\"html\")[0];const bodyElement=document.getElementsByTagName(\"body\")[0];htmlElement.setAttribute(\"toggle-theme\",`${theme}`);bodyElement.setAttribute(\"toggle-theme\",`${theme}`);localStorage.setItem(\"currentToggleState\",`${theme}`);// Trigger event that is compatible with Framestack Theme Image Component\nconst event=new Event(\"themeChange\");window.dispatchEvent(event);return;};export function withSingleToggle(Component){return props=>{const[store,setStore]=useStore();useEffect(()=>{// Set the starting theme based on store\nlocalStorage.setItem(\"currentToggleState\",`${store.theme}`);// Create attributes on html and body so that theme will be applied based on store\nconst htmlElement=document.getElementsByTagName(\"html\")[0];const bodyElement=document.getElementsByTagName(\"body\")[0];htmlElement&&htmlElement.setAttribute(\"toggle-theme\",`${store.theme}`);bodyElement&&bodyElement.setAttribute(\"toggle-theme\",`${store.theme}`);// Create sets of light and dark mode tokens\nlet lightThemeTokens=[];let darkThemeTokens=[];for(let i=0;i<document.styleSheets.length;i++){const sheet=document.styleSheets[i];try{for(let rule of sheet.cssRules){// Get light and dark mode tokens\nif(rule.selectorText===\"body\"){const style=rule.style;for(let j=0;j<style.length;j++){const propertyName=style[j];if(propertyName.includes(\"--token\")){const value=style.getPropertyValue(propertyName);// Check for specific tokens or list all\nconst combinedCssRule=`${propertyName}: ${value};`;lightThemeTokens.push(combinedCssRule);}}lightThemeTokens=lightThemeTokens.join(\" \");}else if(rule.conditionText===\"(prefers-color-scheme: dark)\"){const mediaRulesString=rule.cssRules[0].cssText.replace(\"body\",\"\").replace(/\\s*{\\s*/,\"\").replace(/\\s*}\\s*$/,\"\");darkThemeTokens=mediaRulesString;}}}catch(e){console.warn(\"Cannot access stylesheet:\",sheet.href);}}// Create styleSheet with id and populate with correct CSS text\nlet styleElement=document.createElement(\"style\");styleElement.id=\"toggle-theme\";const customCssRule=`body[toggle-theme=\"light\"] {${lightThemeTokens}} body[toggle-theme=\"dark\"]{${darkThemeTokens}} html[toggle-theme=\"light\"] { color-scheme: light; } html[toggle-theme=\"dark\"] { color-scheme: dark; }`;styleElement.textContent=customCssRule;document.head.appendChild(styleElement);// Cleanup function\nreturn()=>{// Check if the style element exists and remove it\nconst existingStyleElement=document.getElementById(\"toggle-theme\");if(existingStyleElement){document.head.removeChild(existingStyleElement);}};},[]);const handleClick=()=>{let newTheme=store.theme===\"light\"?\"dark\":\"light\";setStore({theme:newTheme});changeTheme(newTheme);};return /*#__PURE__*/_jsx(Component,{...props,variant:store.theme===\"light\"?\"Light\":\"Dark\",whileHover:{scale:1.1},onClick:handleClick});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withSingleToggle\":{\"type\":\"reactHoc\",\"name\":\"withSingleToggle\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SingleToggle.map", "// Generated by Framer (1c1e241)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,getPropertyControls,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/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"KZIK7rfVg\",\"udnmimFYL\"];const serializationHash=\"framer-V3yUc\";const variantClassNames={KZIK7rfVg:\"framer-v-1eogpue\",udnmimFYL:\"framer-v-17ka4qg\"};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 transitions={default:{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 humanReadableVariantMap={Dark:\"KZIK7rfVg\",Light:\"udnmimFYL\"};const getProps=({height,iconColor,iconDark,iconLight,id,weight,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,AeO5PLd9q:(_ref=iconColor!==null&&iconColor!==void 0?iconColor:props.AeO5PLd9q)!==null&&_ref!==void 0?_ref:'var(--token-fa6255fa-1747-4bc3-894a-8375bc25f0bd, rgb(28, 28, 28)) /* {\"name\":\"font/active\"} */',fle84VlOx:(_ref1=iconLight!==null&&iconLight!==void 0?iconLight:props.fle84VlOx)!==null&&_ref1!==void 0?_ref1:\"Sun\",njtQOvFbC:(_ref2=weight!==null&&weight!==void 0?weight:props.njtQOvFbC)!==null&&_ref2!==void 0?_ref2:\"bold\",pdO6Nm4lI:(_ref3=iconDark!==null&&iconDark!==void 0?iconDark:props.pdO6Nm4lI)!==null&&_ref3!==void 0?_ref3:\"Moon\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"KZIK7rfVg\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,AeO5PLd9q,pdO6Nm4lI,fle84VlOx,njtQOvFbC,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"KZIK7rfVg\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-V3yUc\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-1eogpue\",className),\"data-framer-name\":\"Dark\",layoutDependency:layoutDependency,layoutId:\"KZIK7rfVg\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({udnmimFYL:{\"data-framer-name\":\"Light\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-x0dyzq-container\",layoutDependency:layoutDependency,layoutId:\"WEHUrU2bE-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:AeO5PLd9q,height:\"100%\",iconSearch:\"House\",iconSelection:pdO6Nm4lI,id:\"WEHUrU2bE\",layoutId:\"WEHUrU2bE\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:njtQOvFbC,width:\"100%\",...addPropertyOverrides({udnmimFYL:{iconSelection:fle84VlOx}},baseVariant,gestureVariant)})})})})})});});const css=['.framer-V3yUc [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-V3yUc .framer-n0rqea { display: block; }\",\".framer-V3yUc .framer-1eogpue { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 40px; }\",\".framer-V3yUc .framer-x0dyzq-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-V3yUc .framer-1eogpue { gap: 0px; } .framer-V3yUc .framer-1eogpue > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-V3yUc .framer-1eogpue > :first-child { margin-left: 0px; } .framer-V3yUc .framer-1eogpue > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"udnmimFYL\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"AeO5PLd9q\":\"iconColor\",\"pdO6Nm4lI\":\"iconDark\",\"fle84VlOx\":\"iconLight\",\"njtQOvFbC\":\"weight\"}\n * @framerImmutableVariables true\n */const FramerZbmf7W7C5=withCSS(Component,css,\"framer-V3yUc\");export default FramerZbmf7W7C5;FramerZbmf7W7C5.displayName=\"Single\";FramerZbmf7W7C5.defaultProps={height:40,width:40};addPropertyControls(FramerZbmf7W7C5,{variant:{options:[\"KZIK7rfVg\",\"udnmimFYL\"],optionTitles:[\"Dark\",\"Light\"],title:\"Variant\",type:ControlType.Enum},AeO5PLd9q:{defaultValue:'var(--token-fa6255fa-1747-4bc3-894a-8375bc25f0bd, rgb(28, 28, 28)) /* {\"name\":\"font/active\"} */',title:\"IconColor\",type:ControlType.Color},pdO6Nm4lI:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Moon\",hidden:undefined,title:\"IconDark\"},fle84VlOx:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Sun\",hidden:undefined,title:\"IconLight\"},njtQOvFbC:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"weight\"])&&{...PhosphorControls[\"weight\"],defaultValue:\"bold\",hidden:undefined,title:\"Weight\"}});addFonts(FramerZbmf7W7C5,[...PhosphorFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZbmf7W7C5\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerVariables\":\"{\\\"AeO5PLd9q\\\":\\\"iconColor\\\",\\\"pdO6Nm4lI\\\":\\\"iconDark\\\",\\\"fle84VlOx\\\":\\\"iconLight\\\",\\\"njtQOvFbC\\\":\\\"weight\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"udnmimFYL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"40\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Zbmf7W7C5.map", "// Generated by Framer (1c1e241)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,getPropertyControls,useLocaleInfo,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withSingleToggle}from\"https://framerusercontent.com/modules/qI1autnce1ngcX7nJQbN/0GVQhVdC8lONnAjjGDYb/SingleToggle.js\";import Single,*as SingleInfo from\"https://framerusercontent.com/modules/cBF15lBi7RiyI8q4CFpd/HCmFLo76G51WSP2Fde9R/Zbmf7W7C5.js\";const SingleFonts=getFonts(Single);const SingleWithSingleToggleWithMappedReactPropsg424ez=withMappedReactProps(withSingleToggle(Single),SingleInfo);const SingleControls=getPropertyControls(Single);const cycleOrder=[\"fmPFgJdpx\"];const serializationHash=\"framer-5G3e3\";const variantClassNames={fmPFgJdpx:\"framer-v-dbcror\"};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 transitions={default:{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 getProps=({height,iconColor,iconDark,iconLight,id,weight,width,...props})=>{var _ref,_ref1,_ref2,_ref3;return{...props,d0DRJtbRf:(_ref=iconDark!==null&&iconDark!==void 0?iconDark:props.d0DRJtbRf)!==null&&_ref!==void 0?_ref:\"Moon\",ixZIJysro:(_ref1=weight!==null&&weight!==void 0?weight:props.ixZIJysro)!==null&&_ref1!==void 0?_ref1:\"bold\",LTl4MmErQ:(_ref2=iconLight!==null&&iconLight!==void 0?iconLight:props.LTl4MmErQ)!==null&&_ref2!==void 0?_ref2:\"Sun\",Tib6Q7ZnQ:(_ref3=iconColor!==null&&iconColor!==void 0?iconColor:props.Tib6Q7ZnQ)!==null&&_ref3!==void 0?_ref3:'var(--token-fa6255fa-1747-4bc3-894a-8375bc25f0bd, rgb(28, 28, 28)) /* {\"name\":\"font/active\"} */'};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,Tib6Q7ZnQ,ixZIJysro,d0DRJtbRf,LTl4MmErQ,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"fmPFgJdpx\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-5G3e3\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-dbcror\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"fmPFgJdpx\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-57g8d5-container\",layoutDependency:layoutDependency,layoutId:\"JElwo0G4_-container\",children:/*#__PURE__*/_jsx(SingleWithSingleToggleWithMappedReactPropsg424ez,{AeO5PLd9q:Tib6Q7ZnQ,fle84VlOx:LTl4MmErQ,height:\"100%\",id:\"JElwo0G4_\",layoutId:\"JElwo0G4_\",njtQOvFbC:ixZIJysro,pdO6Nm4lI:d0DRJtbRf,style:{height:\"100%\",width:\"100%\"},variant:\"udnmimFYL\",width:\"100%\"})})})})})});});const css=['.framer-5G3e3 [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5G3e3 .framer-17sullt { display: block; }\",\".framer-5G3e3 .framer-dbcror { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-5G3e3 .framer-57g8d5-container { flex: none; height: 40px; position: relative; width: 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5G3e3 .framer-dbcror { gap: 0px; } .framer-5G3e3 .framer-dbcror > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5G3e3 .framer-dbcror > :first-child { margin-left: 0px; } .framer-5G3e3 .framer-dbcror > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"Tib6Q7ZnQ\":\"iconColor\",\"ixZIJysro\":\"weight\",\"d0DRJtbRf\":\"iconDark\",\"LTl4MmErQ\":\"iconLight\"}\n * @framerImmutableVariables true\n */const FramerVuw93iw32=withCSS(Component,css,\"framer-5G3e3\");export default FramerVuw93iw32;FramerVuw93iw32.displayName=\"SingleToggle\";FramerVuw93iw32.defaultProps={height:40,width:40};addPropertyControls(FramerVuw93iw32,{Tib6Q7ZnQ:{defaultValue:'var(--token-fa6255fa-1747-4bc3-894a-8375bc25f0bd, rgb(28, 28, 28)) /* {\"name\":\"font/active\"} */',title:\"IconColor\",type:ControlType.Color},ixZIJysro:(SingleControls===null||SingleControls===void 0?void 0:SingleControls[\"njtQOvFbC\"])&&{...SingleControls[\"njtQOvFbC\"],defaultValue:\"bold\",hidden:undefined,title:\"Weight\"},d0DRJtbRf:(SingleControls===null||SingleControls===void 0?void 0:SingleControls[\"pdO6Nm4lI\"])&&{...SingleControls[\"pdO6Nm4lI\"],defaultValue:\"Moon\",hidden:undefined,title:\"IconDark\"},LTl4MmErQ:(SingleControls===null||SingleControls===void 0?void 0:SingleControls[\"fle84VlOx\"])&&{...SingleControls[\"fle84VlOx\"],defaultValue:\"Sun\",hidden:undefined,title:\"IconLight\"}});addFonts(FramerVuw93iw32,[...SingleFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVuw93iw32\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"40\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"Tib6Q7ZnQ\\\":\\\"iconColor\\\",\\\"ixZIJysro\\\":\\\"weight\\\",\\\"d0DRJtbRf\\\":\\\"iconDark\\\",\\\"LTl4MmErQ\\\":\\\"iconLight\\\"}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vuw93iw32.map", "// Generated by Framer (c76752e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,ResolveLinks,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Grain from\"https://framerusercontent.com/modules/cKGD16u2MGB7MfqfVXFp/wiztTCbXokZrMicHAmZc/Grain.js\";import SingleToggle from\"https://framerusercontent.com/modules/cmTtXrGIgvlXurH1sYiX/ZgwhEqhQeYK7PemoMOZB/Vuw93iw32.js\";import Text from\"https://framerusercontent.com/modules/SMToHFj7UmqTfHuTNOsq/YwCI5VAbu3Ib012sZrTo/b50B9R9ei.js\";import ButtonYellow from\"https://framerusercontent.com/modules/qg8oBwBIIAOxvhSs81gg/1AzoHhz5F0kTMczoPsbB/sdPSlDnoG.js\";const GrainFonts=getFonts(Grain);const TextFonts=getFonts(Text);const ButtonYellowFonts=getFonts(ButtonYellow);const SingleToggleFonts=getFonts(SingleToggle);const cycleOrder=[\"gZTSLkOHG\",\"Uc12aRSiN\",\"hSglkcMUY\"];const serializationHash=\"framer-B2e69\";const variantClassNames={gZTSLkOHG:\"framer-v-gojf9h\",hSglkcMUY:\"framer-v-vr1eww\",Uc12aRSiN:\"framer-v-nupux8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mobile / closed\":\"Uc12aRSiN\",\"Mobile / open\":\"hSglkcMUY\",Desktop:\"gZTSLkOHG\"};const getProps=({grain,height,id,width,...props})=>{return{...props,kXmfmgek0:grain??props.kXmfmgek0??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"gZTSLkOHG\"};};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,kXmfmgek0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gZTSLkOHG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaplmcact=activeVariantCallback(async(...args)=>{setVariant(\"hSglkcMUY\");});const onTaprr76to=activeVariantCallback(async(...args)=>{setVariant(\"Uc12aRSiN\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Uc12aRSiN\",\"hSglkcMUY\"].includes(baseVariant))return true;return false;};const router=useRouter();const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-gojf9h\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"gZTSLkOHG\",ref:ref??ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-36426927-7a82-4001-8b25-330ba8a092fb, rgb(238, 237, 236))\",...style},variants:{hSglkcMUY:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-74014d76-9e24-489c-b938-8f60a605eee1, rgb(217, 217, 217))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({hSglkcMUY:{\"data-border\":true,\"data-framer-name\":\"Mobile / open\"},Uc12aRSiN:{\"data-framer-name\":\"Mobile / closed\"}},baseVariant,gestureVariant),children:[kXmfmgek0&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kh0p4u-container\",layoutDependency:layoutDependency,layoutId:\"wER220dvS-container\",style:{opacity:.41},children:/*#__PURE__*/_jsx(Grain,{height:\"100%\",id:\"wER220dvS\",layoutId:\"wER220dvS\",opacity:.1,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uyh1ik\",\"data-framer-name\":\"content\",layoutDependency:layoutDependency,layoutId:\"wX8FdJWDF\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hk4t7k\",\"data-framer-name\":\"top\",layoutDependency:layoutDependency,layoutId:\"OnGKQY1Tl\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZsMRb6cpe\"},motionChild:true,nodeId:\"ZRagNBjRh\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-rqtjjt framer-x2isj7\",\"data-framer-name\":\"Logo / MadMen AI\",layoutDependency:layoutDependency,layoutId:\"ZRagNBjRh\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jrq97a\",\"data-framer-name\":\"horiz dark\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Wn6QlFfq2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 151 32\"><path d=\"M 16.059 0 C 7.203 0 0.021 7.162 0.021 16 C 0.021 24.838 7.203 32 16.059 32 C 24.915 32 32.092 24.838 32.092 16 C 32.092 7.162 24.915 0 16.059 0 Z M 8.42 21.812 C 6.904 21.812 5.677 20.587 5.677 19.074 C 5.677 17.562 6.904 16.342 8.42 16.342 C 9.936 16.342 11.158 17.562 11.158 19.074 C 11.158 20.587 9.936 21.812 8.42 21.812 Z M 17.26 21.812 L 13.755 21.812 L 9.442 12.66 C 8.898 11.511 9.735 10.188 11.012 10.188 L 14.516 10.188 L 18.835 19.34 C 19.373 20.489 18.536 21.812 17.26 21.812 Z M 24.703 21.812 L 21.199 21.812 L 16.885 12.66 C 16.342 11.511 17.184 10.188 18.46 10.188 L 21.959 10.188 L 26.278 19.34 C 26.822 20.489 25.98 21.812 24.703 21.812 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 47.792 9 L 51.073 18.625 L 51.11 18.625 L 54.216 9 L 58.559 9 L 58.559 23 L 55.673 23 L 55.673 13.076 L 55.636 13.076 L 52.198 23 L 49.822 23 L 46.384 13.175 L 46.347 13.175 L 46.347 23 L 43.45 23 L 43.45 9 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 67.675 9 L 72.922 23 L 69.715 23 L 68.653 19.884 L 63.406 19.884 L 62.307 23 L 59.201 23 L 64.51 9 Z M 67.848 17.587 L 66.077 12.451 L 66.04 12.451 L 64.211 17.587 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 79.602 9 C 80.506 9 81.348 9.142 82.126 9.43 C 82.909 9.719 83.576 10.149 84.15 10.726 C 84.718 11.303 85.165 12.021 85.49 12.882 C 85.811 13.742 85.968 14.754 85.968 15.924 C 85.968 16.942 85.837 17.886 85.574 18.746 C 85.312 19.606 84.912 20.351 84.386 20.981 C 83.855 21.605 83.198 22.103 82.405 22.46 C 81.611 22.822 80.68 23 79.602 23 L 73.552 23 L 73.552 9.005 L 79.602 9.005 Z M 79.387 20.414 C 79.834 20.414 80.265 20.341 80.685 20.194 C 81.106 20.052 81.479 19.811 81.805 19.48 C 82.131 19.15 82.394 18.714 82.594 18.179 C 82.788 17.644 82.888 16.989 82.888 16.218 C 82.888 15.51 82.815 14.875 82.683 14.303 C 82.546 13.737 82.315 13.244 82.005 12.845 C 81.69 12.441 81.274 12.132 80.754 11.911 C 80.233 11.691 79.597 11.591 78.835 11.591 L 76.633 11.591 L 76.633 20.414 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 91.851 9 L 95.132 18.625 L 95.169 18.625 L 98.276 9 L 102.618 9 L 102.618 23 L 99.732 23 L 99.732 13.076 L 99.695 13.076 L 96.257 23 L 93.881 23 L 90.443 13.175 L 90.406 13.175 L 90.406 23 L 87.515 23 L 87.515 9 L 91.857 9 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 115.208 9 L 115.208 11.586 L 107.795 11.586 L 107.795 14.586 L 114.593 14.586 L 114.593 16.978 L 107.795 16.978 L 107.795 20.409 L 115.36 20.409 L 115.36 22.995 L 104.715 22.995 L 104.715 9 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 119.982 9 L 125.833 18.395 L 125.87 18.395 L 125.87 9 L 128.756 9 L 128.756 23 L 125.67 23 L 119.835 13.626 L 119.798 13.626 L 119.798 23 L 116.911 23 L 116.911 9 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 142.197 9 L 147.701 23 L 146.266 23 L 144.558 18.646 L 138.176 18.646 L 136.489 23 L 135.074 23 L 140.715 9 L 142.208 9 Z M 144.105 17.513 L 141.393 10.338 L 138.581 17.513 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 150.409 9 L 150.409 23 L 149.074 23 L 149.074 9 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path></svg>',svgContentId:9470757531,withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10suujg\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"kvO9aJlnI\",...addPropertyOverrides({hSglkcMUY:{\"data-highlight\":true,onTap:onTaprr76to},Uc12aRSiN:{\"data-highlight\":true,onTap:onTaplmcact}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-u1n9ll\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"ljjG8CjcS\",style:{backgroundColor:\"var(--token-36426927-7a82-4001-8b25-330ba8a092fb, rgb(238, 237, 236))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{hSglkcMUY:{backgroundColor:\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22))\",rotate:-45},Uc12aRSiN:{backgroundColor:\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uedv0a\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"yAfR4aCHh\",style:{backgroundColor:\"var(--token-36426927-7a82-4001-8b25-330ba8a092fb, rgb(238, 237, 236))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{hSglkcMUY:{backgroundColor:\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22))\",rotate:45},Uc12aRSiN:{backgroundColor:\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22))\"}}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qhmabn\",\"data-framer-name\":\"links\",layoutDependency:layoutDependency,layoutId:\"WnvNznYO3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(12+((componentViewport?.height||64)-24-44)/2)+2+4,...addPropertyOverrides({hSglkcMUY:{y:(componentViewport?.y||0)+0+0+0+64+16+0},Uc12aRSiN:{y:(componentViewport?.y||0)+0+0+0+64+16+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-n1axof-container\",layoutDependency:layoutDependency,layoutId:\"WODXV4aze-container\",children:/*#__PURE__*/_jsx(Text,{aDA6yluUA:\"https://usemadmen.ai/careers\",height:\"100%\",id:\"WODXV4aze\",ifVZabWbh:14,jM1upxkhc:false,layoutId:\"WODXV4aze\",ptdRhTNlO:true,qb2R_LkvV:\"Careers\",style:{height:\"100%\"},variant:\"Rbye6nL9S\",width:\"100%\",...addPropertyOverrides({hSglkcMUY:{ifVZabWbh:24}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PtiG_YNsK\"},implicitPathVariables:undefined},{href:{webPageId:\"PtiG_YNsK\"},implicitPathVariables:undefined},{href:{webPageId:\"PtiG_YNsK\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(12+((componentViewport?.height||64)-24-44)/2)+2+4,...addPropertyOverrides({hSglkcMUY:{y:(componentViewport?.y||0)+0+0+0+64+16+48},Uc12aRSiN:{y:(componentViewport?.y||0)+0+0+0+64+16+56}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rx5mra-container\",layoutDependency:layoutDependency,layoutId:\"RUaIDM81I-container\",children:/*#__PURE__*/_jsx(Text,{aDA6yluUA:resolvedLinks[0],height:\"100%\",id:\"RUaIDM81I\",ifVZabWbh:14,jM1upxkhc:false,layoutId:\"RUaIDM81I\",ptdRhTNlO:true,qb2R_LkvV:\"Blog\",style:{height:\"100%\"},variant:\"Rbye6nL9S\",width:\"100%\",...addPropertyOverrides({hSglkcMUY:{aDA6yluUA:resolvedLinks[2],ifVZabWbh:24},Uc12aRSiN:{aDA6yluUA:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(12+((componentViewport?.height||64)-24-44)/2)+2+4,...addPropertyOverrides({hSglkcMUY:{y:(componentViewport?.y||0)+0+0+0+64+16+96},Uc12aRSiN:{y:(componentViewport?.y||0)+0+0+0+64+16+112}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yedshz-container\",layoutDependency:layoutDependency,layoutId:\"lKqDlv3LM-container\",children:/*#__PURE__*/_jsx(Text,{aDA6yluUA:\"https://app.usemadmen.ai/login\",height:\"100%\",id:\"lKqDlv3LM\",ifVZabWbh:14,jM1upxkhc:true,layoutId:\"lKqDlv3LM\",ptdRhTNlO:true,qb2R_LkvV:\"Log in\",style:{height:\"100%\"},variant:\"Rbye6nL9S\",width:\"100%\",...addPropertyOverrides({hSglkcMUY:{ifVZabWbh:24}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8qqg88\",\"data-framer-name\":\"button wrapper\",layoutDependency:layoutDependency,layoutId:\"X8z9c_niZ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+(12+((componentViewport?.height||64)-24-44)/2)+2+-4+0,...addPropertyOverrides({hSglkcMUY:{y:(componentViewport?.y||0)+0+0+0+64+16+144+16},Uc12aRSiN:{y:(componentViewport?.y||0)+0+0+0+64+16+168+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4k7hei-container\",layoutDependency:layoutDependency,layoutId:\"x31v74Xjw-container\",children:/*#__PURE__*/_jsx(ButtonYellow,{fb0JlJcjQ:false,height:\"100%\",I4NtpMULq:\"Request demo\",id:\"x31v74Xjw\",layoutId:\"x31v74Xjw\",o2H7UtPaI:true,variant:\"LIcJ_1B0R\",width:\"100%\",wsjoDhqok:\"demo.usemadmen.ai/request\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ma2p3t-container\",layoutDependency:layoutDependency,layoutId:\"Q4uuRMgj1-container\",children:/*#__PURE__*/_jsx(SingleToggle,{d0DRJtbRf:\"Moon\",height:\"100%\",id:\"Q4uuRMgj1\",ixZIJysro:\"bold\",layoutId:\"Q4uuRMgj1\",LTl4MmErQ:\"Sun\",Tib6Q7ZnQ:\"var(--token-cc8887f2-ed35-4fcf-9ea2-f7cb6f4b23dd, rgb(33, 33, 33))\",width:\"100%\"})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-B2e69.framer-x2isj7, .framer-B2e69 .framer-x2isj7 { display: block; }\",\".framer-B2e69.framer-gojf9h { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 64px; justify-content: center; overflow: hidden; padding: 12px 40px 12px 40px; position: relative; width: 1200px; }\",\".framer-B2e69 .framer-1kh0p4u-container { bottom: 0px; flex: none; left: 0px; mix-blend-mode: multiply; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-B2e69 .framer-1uyh1ik { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 44px; justify-content: space-between; max-width: 1232px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-B2e69 .framer-hk4t7k, .framer-B2e69 .framer-8qqg88 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-B2e69 .framer-rqtjjt { flex: none; height: 32px; overflow: visible; position: relative; text-decoration: none; width: 151px; }\",\".framer-B2e69 .framer-1jrq97a { flex: none; height: 32px; left: calc(49.668874172185454% - 151px / 2); position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 151px; }\",\".framer-B2e69 .framer-10suujg { flex: none; height: 44px; overflow: hidden; position: relative; width: 44px; }\",\".framer-B2e69 .framer-u1n9ll { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-B2e69 .framer-uedv0a { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-B2e69 .framer-qhmabn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 40px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-B2e69 .framer-n1axof-container, .framer-B2e69 .framer-rx5mra-container, .framer-B2e69 .framer-1yedshz-container { flex: none; height: 32px; position: relative; width: auto; }\",\".framer-B2e69 .framer-4k7hei-container, .framer-B2e69 .framer-ma2p3t-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-B2e69.framer-gojf9h, .framer-B2e69 .framer-hk4t7k, .framer-B2e69 .framer-qhmabn, .framer-B2e69 .framer-8qqg88 { gap: 0px; } .framer-B2e69.framer-gojf9h > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-B2e69.framer-gojf9h > :first-child, .framer-B2e69 .framer-hk4t7k > :first-child, .framer-B2e69 .framer-qhmabn > :first-child, .framer-B2e69 .framer-8qqg88 > :first-child { margin-left: 0px; } .framer-B2e69.framer-gojf9h > :last-child, .framer-B2e69 .framer-hk4t7k > :last-child, .framer-B2e69 .framer-qhmabn > :last-child, .framer-B2e69 .framer-8qqg88 > :last-child { margin-right: 0px; } .framer-B2e69 .framer-hk4t7k > *, .framer-B2e69 .framer-8qqg88 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-B2e69 .framer-qhmabn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-B2e69.framer-v-nupux8.framer-gojf9h { flex-direction: column; gap: 0px; justify-content: flex-start; padding: 0px 8px 0px 16px; width: 390px; }\",\".framer-B2e69.framer-v-nupux8 .framer-1uyh1ik, .framer-B2e69.framer-v-vr1eww .framer-1uyh1ik { flex: none; flex-direction: column; gap: 0px; height: min-content; justify-content: center; width: 100%; }\",\".framer-B2e69.framer-v-nupux8 .framer-hk4t7k, .framer-B2e69.framer-v-vr1eww .framer-hk4t7k { gap: unset; justify-content: space-between; padding: 10px 0px 10px 0px; width: 100%; }\",\".framer-B2e69.framer-v-nupux8 .framer-rqtjjt, .framer-B2e69.framer-v-vr1eww .framer-rqtjjt { aspect-ratio: 4.7 / 1; height: var(--framer-aspect-ratio-supported, 32px); width: 150px; }\",\".framer-B2e69.framer-v-nupux8 .framer-10suujg, .framer-B2e69.framer-v-vr1eww .framer-10suujg { cursor: pointer; }\",\".framer-B2e69.framer-v-nupux8 .framer-qhmabn { flex-direction: column; height: min-content; justify-content: flex-start; padding: 16px 8px 32px 0px; width: 100%; }\",\".framer-B2e69.framer-v-nupux8 .framer-8qqg88 { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-B2e69.framer-v-nupux8.framer-gojf9h, .framer-B2e69.framer-v-nupux8 .framer-1uyh1ik, .framer-B2e69.framer-v-nupux8 .framer-hk4t7k, .framer-B2e69.framer-v-nupux8 .framer-qhmabn { gap: 0px; } .framer-B2e69.framer-v-nupux8.framer-gojf9h > *, .framer-B2e69.framer-v-nupux8 .framer-1uyh1ik > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-B2e69.framer-v-nupux8.framer-gojf9h > :first-child, .framer-B2e69.framer-v-nupux8 .framer-1uyh1ik > :first-child, .framer-B2e69.framer-v-nupux8 .framer-qhmabn > :first-child { margin-top: 0px; } .framer-B2e69.framer-v-nupux8.framer-gojf9h > :last-child, .framer-B2e69.framer-v-nupux8 .framer-1uyh1ik > :last-child, .framer-B2e69.framer-v-nupux8 .framer-qhmabn > :last-child { margin-bottom: 0px; } .framer-B2e69.framer-v-nupux8 .framer-hk4t7k > *, .framer-B2e69.framer-v-nupux8 .framer-hk4t7k > :first-child, .framer-B2e69.framer-v-nupux8 .framer-hk4t7k > :last-child { margin: 0px; } .framer-B2e69.framer-v-nupux8 .framer-qhmabn > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-B2e69.framer-v-vr1eww.framer-gojf9h { flex-direction: column; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px 8px 0px 16px; width: 390px; }\",\".framer-B2e69.framer-v-vr1eww .framer-u1n9ll, .framer-B2e69.framer-v-vr1eww .framer-uedv0a { top: calc(50.00000000000002% - 2px / 2); }\",\".framer-B2e69.framer-v-vr1eww .framer-qhmabn { flex-direction: column; gap: 16px; height: min-content; justify-content: flex-start; padding: 16px 8px 32px 0px; width: 100%; }\",\".framer-B2e69.framer-v-vr1eww .framer-8qqg88 { padding: 16px 0px 0px 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-B2e69.framer-v-vr1eww.framer-gojf9h, .framer-B2e69.framer-v-vr1eww .framer-1uyh1ik, .framer-B2e69.framer-v-vr1eww .framer-hk4t7k, .framer-B2e69.framer-v-vr1eww .framer-qhmabn { gap: 0px; } .framer-B2e69.framer-v-vr1eww.framer-gojf9h > *, .framer-B2e69.framer-v-vr1eww .framer-1uyh1ik > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-B2e69.framer-v-vr1eww.framer-gojf9h > :first-child, .framer-B2e69.framer-v-vr1eww .framer-1uyh1ik > :first-child, .framer-B2e69.framer-v-vr1eww .framer-qhmabn > :first-child { margin-top: 0px; } .framer-B2e69.framer-v-vr1eww.framer-gojf9h > :last-child, .framer-B2e69.framer-v-vr1eww .framer-1uyh1ik > :last-child, .framer-B2e69.framer-v-vr1eww .framer-qhmabn > :last-child { margin-bottom: 0px; } .framer-B2e69.framer-v-vr1eww .framer-hk4t7k > *, .framer-B2e69.framer-v-vr1eww .framer-hk4t7k > :first-child, .framer-B2e69.framer-v-vr1eww .framer-hk4t7k > :last-child { margin: 0px; } .framer-B2e69.framer-v-vr1eww .framer-qhmabn > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",'.framer-B2e69[data-border=\"true\"]::after, .framer-B2e69 [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 64\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Uc12aRSiN\":{\"layout\":[\"fixed\",\"fixed\"]},\"hSglkcMUY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"kXmfmgek0\":\"grain\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrfgSi8bga=withCSS(Component,css,\"framer-B2e69\");export default FramerrfgSi8bga;FramerrfgSi8bga.displayName=\"Navigation / MadMen\";FramerrfgSi8bga.defaultProps={height:64,width:1200};addPropertyControls(FramerrfgSi8bga,{variant:{options:[\"gZTSLkOHG\",\"Uc12aRSiN\",\"hSglkcMUY\"],optionTitles:[\"Desktop\",\"Mobile / closed\",\"Mobile / open\"],title:\"Variant\",type:ControlType.Enum},kXmfmgek0:{defaultValue:true,title:\"Grain\",type:ControlType.Boolean}});addFonts(FramerrfgSi8bga,[{explicitInter:true,fonts:[]},...GrainFonts,...TextFonts,...ButtonYellowFonts,...SingleToggleFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrfgSi8bga\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"kXmfmgek0\\\":\\\"grain\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Uc12aRSiN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hSglkcMUY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"64\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rfgSi8bga.map"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useStore", "createStore", "changeTheme", "theme", "htmlElement", "bodyElement", "event", "window", "withSingleToggle", "Component", "props", "store", "setStore", "ue", "lightThemeTokens", "darkThemeTokens", "i", "sheet", "rule", "style", "j", "propertyName", "value", "combinedCssRule", "styleElement", "customCssRule", "existingStyleElement", "handleClick", "newTheme", "p", "Zbmf7W7C5_exports", "__export", "__FramerMetadata__", "Zbmf7W7C5_default", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "iconColor", "iconDark", "iconLight", "id", "weight", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "AeO5PLd9q", "pdO6Nm4lI", "fle84VlOx", "njtQOvFbC", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Icon", "css", "FramerZbmf7W7C5", "withCSS", "Zbmf7W7C5_default", "addPropertyControls", "ControlType", "PhosphorControls", "addFonts", "PhosphorFonts", "__FramerMetadata__", "SingleFonts", "getFonts", "Zbmf7W7C5_default", "SingleWithSingleToggleWithMappedReactPropsg424ez", "withMappedReactProps", "withSingleToggle", "Zbmf7W7C5_exports", "SingleControls", "getPropertyControls", "cycleOrder", "variantClassNames", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "iconColor", "iconDark", "iconLight", "id", "weight", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "Tib6Q7ZnQ", "ixZIJysro", "d0DRJtbRf", "LTl4MmErQ", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "SingleWithSingleToggleWithMappedReactPropsg424ez", "css", "FramerVuw93iw32", "withCSS", "Vuw93iw32_default", "addPropertyControls", "ControlType", "SingleControls", "addFonts", "SingleFonts", "GrainFonts", "getFonts", "Grain", "TextFonts", "b50B9R9ei_default", "ButtonYellowFonts", "sdPSlDnoG_default", "SingleToggleFonts", "Vuw93iw32_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "grain", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "kXmfmgek0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTaplmcact", "args", "onTaprr76to", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "router", "useRouter", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "Link", "SVG", "ResolveLinks", "resolvedLinks", "css", "FramerrfgSi8bga", "withCSS", "rfgSi8bga_default", "addPropertyControls", "ControlType", "addFonts"]
}
