{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/TKnkhZovIQ87K3nJIvaZ/eG2ZL1ofYtiPsiJquADY/AnimatedNavlink.js", "ssg:https://framerusercontent.com/modules/4KwnSSL7fRLajXOlUAaC/EF1cY3ZNY19R95UjjKIu/CustomBadge.js", "ssg:https://framerusercontent.com/modules/sSfehpAv6R7vpziVUGg3/Vu1LFFz8MKPvTE5TGv3u/k7An9J7M8.js"],
  "sourcesContent": ["// @Copyright --\n// Author: Jeffrey Meijer\n// Twitter: @Jeffsw0rld_\n// @@ Made with React within Framer --- Use for personal and commercial purpose -- Don't Claim as your own.\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";export default function Custom_Navlink(props){const[hover,setHover]=React.useState(false);const hoverOnHandler=()=>{setHover(true);};const hoverOffHandler=()=>{setHover(false);};const fontValue=props.styles.fontWeight||\"normal\";const fontStyle={light:{fontWeight:\"lighter\"},normal:{fontWeight:\"normal\"},medium:{fontWeight:\"medium\"},bold:{fontWeight:\"bold\"},bolder:{fontWeight:\"bolder\"}};// Navlink default styling\nconst style={width:\"fit-content\",height:\"fit-content\",color:!hover?props.styles.color:props.styles.hoverColor,display:\"inline-block\",position:\"relative\",cursor:\"pointer\",fontSize:props.styles.fontSize,...fontStyle[fontValue]};// Value for animation option type. ObjectType.Enum | \"a\" default value\nconst value=props.stylesUnderline.animationType||\"a\";// Value for animation speed option type. ObjectType.Enum | \"normal\" default value\nconst speedValue=props.stylesUnderline.animationSpeed||\"normal\";//Animation speed option CSS variables\nconst speed={slow:{transition:\"left 0.6s ease 0s, width 0.6s ease 0s\"},normal:{transition:\"left 0.3s ease 0s, width 0.3s ease 0s\"},fast:{transition:\"left 0.1s ease 0s, width 0.1s ease 0s\"}};// Animation option CSS variables.\nconst animation={a:{left:\"0\",width:hover||props.stylesUnderline.previewUnderline?\"100%\":\"0\",...speed[speedValue]},b:{left:hover||props.stylesUnderline.previewUnderline?\"0\":\"50%\",width:hover||props.stylesUnderline.previewUnderline?\"100%\":\"0\",...speed[speedValue]},c:hover||props.stylesUnderline.previewUnderline?{left:\"0\",width:hover||props.stylesUnderline.previewUnderline?\"100%\":\"0\",...speed[speedValue]}:{right:\"0\",width:hover||props.stylesUnderline.previewUnderline?\"100%\":\"0\",...speed[speedValue]},d:{right:\"0\",width:hover||props.stylesUnderline.previewUnderline?\"100%\":\"0%\",transition:\"right 0.3s ease 0s, width 0.3s ease 0s\"}};const underline={background:\"none repeat scroll 0 0 transparent\",bottom:\"0\",content:'\"\"',display:\"block\",height:props.stylesUnderline.underlineHeight,...animation[value],position:\"absolute\",top:props.stylesUnderline.underlineDistance,backgroundImage:`linear-gradient(to right, ${props.stylesUnderline.underlineColor}, ${props.stylesUnderline.addColorTwo?`${props.stylesUnderline.colorTwo}`:`${props.stylesUnderline.underlineColor}`}, ${props.stylesUnderline.addColorThree?`${props.stylesUnderline.colorThree}`:`${props.stylesUnderline.underlineColor}`})`,borderRadius:props.stylesUnderline.underlineBorder,zIndex:10};// Link styling\nconst linkStyle={position:\"relative\",color:\"inherit\",opacity:props.styles.fontOpacity,fontFamily:\"Inter Tight\",fontWeight:500,textDecoration:\"none\",zIndex:\"1000\"};const target=props.openNewTab?\"_blank\":\"_self\";return /*#__PURE__*/_jsxs(\"div\",{style:style,onMouseOver:hoverOnHandler,onMouseOut:hoverOffHandler,children:[/*#__PURE__*/_jsx(\"a\",{style:linkStyle,href:`${props.link}`,alt:props.text,target:target,rel:\"noreferrer\",children:props.text}),/*#__PURE__*/_jsx(\"div\",{style:underline})]});}Custom_Navlink.defaultProps={text:\"Home\"};addPropertyControls(Custom_Navlink,{text:{type:ControlType.String,title:\"Link name\",placeholder:\"Home, Blog, Contact, ect\"},link:{type:ControlType.String,title:\"Navigate to\",placeholder:\"/route or url\"},openNewTab:{type:ControlType.Boolean,title:\"Open in new tab\",defaultValue:false},styles:{title:\"Font\",type:ControlType.Object,controls:{color:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#000000\"},hoverColor:{type:ControlType.Color,title:\"On Hover\",defaultValue:\"#000000\"},fontOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:1,min:0,max:1,step:.1,displayStepper:true},fontSize:{type:ControlType.Number,title:\"Fontsize\",defaultValue:16,min:0,max:96,unit:\"px\",step:1,displayStepper:true},fontWeight:{type:ControlType.Enum,title:\"Font Weight\",defaultValue:\"normal\",displaySegmentedControl:true,segmentedControlDirection:\"vertical\",options:[\"light\",\"normal\",\"medium\",\"bold\",\"bolder\"],optionTitles:[\"light\",\"normal\",\"medium\",\"bold\",\"bolder\"]}}},stylesUnderline:{title:\"Underline\",type:ControlType.Object,controls:{underlineColor:{type:ControlType.Color,title:\"Underline color\",defaultValue:\"#000000\"},addColorTwo:{type:ControlType.Boolean,title:\"Add Color\",defaultValue:false},colorTwo:{type:ControlType.Color,title:\"Color Two\"},addColorThree:{type:ControlType.Boolean,title:\"Add Color\",defaultValue:false},colorThree:{type:ControlType.Color,title:\"Color Three\"},underlineHeight:{type:ControlType.Number,title:\"Height\",defaultValue:2,min:1,max:96,step:1,unit:\"px\",displayStepper:true},underlineDistance:{type:ControlType.Number,title:\"Distance\",defaultValue:18,min:-50,max:100,unit:\"px\",step:1,displayStepper:true},underlineBorder:{type:ControlType.Number,title:\"Border\",defaultValue:0,min:0,max:50,unit:\"%\",step:1,displayStepper:true},previewUnderline:{type:ControlType.Boolean,title:\"Preview\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},animationType:{type:ControlType.Enum,title:\"Animation\",defaultValue:\"a\",displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"a\",\"b\",\"c\",\"d\"],optionTitles:[\"Start\",\"Middle\",\"Start-end, End\"]},animationSpeed:{type:ControlType.Enum,title:\"Speed\",defaultValue:\"normal\",displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"slow\",\"normal\",\"fast\"],optionTitles:[\"slow\",\"normal\",\"fast\"]}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Custom_Navlink\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AnimatedNavlink.map", "// Welcome to Code in Framer\n// Get Started: https://www.framer.com/developers\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import{useEffect}from\"react\";export default function CustomBadge(){useEffect(()=>{try{console.log(\"Removing Badge...\");document.getElementById(\"__framer-badge-container\").remove();console.log(\"Removed Badge\");}catch{console.log(\"Could not customize badge\");}},[]);return /*#__PURE__*/_jsx(motion.div,{style:{display:\"none\"}});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CustomBadge\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CustomBadge.map", "// Generated by Framer (b0f2619)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Custom_Navlink from\"https://framerusercontent.com/modules/TKnkhZovIQ87K3nJIvaZ/eG2ZL1ofYtiPsiJquADY/AnimatedNavlink.js\";import CustomBadge from\"https://framerusercontent.com/modules/4KwnSSL7fRLajXOlUAaC/EF1cY3ZNY19R95UjjKIu/CustomBadge.js\";const Custom_NavlinkFonts=getFonts(Custom_Navlink);const CustomBadgeFonts=getFonts(CustomBadge);const cycleOrder=[\"rLRkDQrI0\",\"K9iB5zLil\",\"deXG9HCAK\"];const serializationHash=\"framer-vzIFn\";const variantClassNames={deXG9HCAK:\"framer-v-u40wbf\",K9iB5zLil:\"framer-v-ir1hq1\",rLRkDQrI0:\"framer-v-ob0e4d\"};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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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={\"Mobile Open\":\"deXG9HCAK\",Desktop:\"rLRkDQrI0\",Mobile:\"K9iB5zLil\"};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:\"rLRkDQrI0\"};};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,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"rLRkDQrI0\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ylwmvh=activeVariantCallback(async(...args)=>{setVariant(\"K9iB5zLil\");});const onTap21r7q7=activeVariantCallback(async(...args)=>{setVariant(\"deXG9HCAK\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"K9iB5zLil\",\"deXG9HCAK\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"K9iB5zLil\",\"deXG9HCAK\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"deXG9HCAK\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ob0e4d\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",initial:variant,layoutDependency:layoutDependency,layoutId:\"rLRkDQrI0\",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\":\"rgb(194, 194, 194)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\",...style},variants:{deXG9HCAK:{\"--border-bottom-width\":\"0.5px\",\"--border-right-width\":\"0px\"},K9iB5zLil:{\"--border-bottom-width\":\"0.5px\",\"--border-right-width\":\"0px\"}},...addPropertyOverrides({deXG9HCAK:{\"data-framer-name\":\"Mobile Open\"},K9iB5zLil:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xu1g5v\",layoutDependency:layoutDependency,layoutId:\"MhliYtoTI\",...addPropertyOverrides({deXG9HCAK:{\"data-highlight\":true,onTap:onTap1ylwmvh}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\"Menu\"})}),className:\"framer-99qb35\",fonts:[\"GF;Inter Tight-500\"],layoutDependency:layoutDependency,layoutId:\"p4hA8AJTq\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({deXG9HCAK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\"Close\"})})},K9iB5zLil:{\"data-highlight\":true,onTap:onTap21r7q7}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\"Michelle \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\"Sandm\\xe6l\"})]}),className:\"framer-ylxd6e\",fonts:[\"GF;Inter Tight-500\"],layoutDependency:layoutDependency,layoutId:\"c6Oz3SQxG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3u2p7d\",layoutDependency:layoutDependency,layoutId:\"px87ZpHpX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-86szaz-container\",layoutDependency:layoutDependency,layoutId:\"nikohPXvG-container\",children:/*#__PURE__*/_jsx(Custom_Navlink,{height:\"100%\",id:\"nikohPXvG\",layoutId:\"nikohPXvG\",link:\"/\",openNewTab:false,styles:{color:\"rgb(0, 0, 0)\",fontOpacity:1,fontSize:14,fontWeight:\"medium\",hoverColor:\"rgb(0, 0, 0)\"},stylesUnderline:{addColorThree:false,addColorTwo:false,animationSpeed:\"normal\",animationType:\"c\",colorThree:\"rgb(0, 153, 255)\",colorTwo:\"rgb(0, 153, 255)\",previewUnderline:false,underlineBorder:0,underlineColor:\"rgb(0, 0, 0)\",underlineDistance:18,underlineHeight:1},text:\"WORK\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dc1kus-container\",layoutDependency:layoutDependency,layoutId:\"zSUuLYtfA-container\",children:/*#__PURE__*/_jsx(Custom_Navlink,{height:\"100%\",id:\"zSUuLYtfA\",layoutId:\"zSUuLYtfA\",link:\"/biography\",openNewTab:false,styles:{color:\"rgb(0, 0, 0)\",fontOpacity:1,fontSize:14,fontWeight:\"medium\",hoverColor:\"rgb(0, 0, 0)\"},stylesUnderline:{addColorThree:false,addColorTwo:false,animationSpeed:\"normal\",animationType:\"c\",colorThree:\"rgb(0, 153, 255)\",colorTwo:\"rgb(0, 153, 255)\",previewUnderline:false,underlineBorder:0,underlineColor:\"rgb(0, 0, 0)\",underlineDistance:18,underlineHeight:1},text:\"BIOGRAPHY\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1th83ox-container\",layoutDependency:layoutDependency,layoutId:\"j__nhvcXp-container\",children:/*#__PURE__*/_jsx(Custom_Navlink,{height:\"100%\",id:\"j__nhvcXp\",layoutId:\"j__nhvcXp\",link:\"/contact\",openNewTab:false,styles:{color:\"rgb(0, 0, 0)\",fontOpacity:1,fontSize:14,fontWeight:\"medium\",hoverColor:\"rgb(0, 0, 0)\"},stylesUnderline:{addColorThree:false,addColorTwo:false,animationSpeed:\"normal\",animationType:\"c\",colorThree:\"rgb(0, 153, 255)\",colorTwo:\"rgb(0, 153, 255)\",previewUnderline:false,underlineBorder:0,underlineColor:\"rgb(0, 0, 0)\",underlineDistance:18,underlineHeight:1},text:\"CONTACT\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17tff0d-container\",layoutDependency:layoutDependency,layoutId:\"qTrGPjniW-container\",children:/*#__PURE__*/_jsx(Custom_Navlink,{height:\"100%\",id:\"qTrGPjniW\",layoutId:\"qTrGPjniW\",link:\"/prints\",openNewTab:false,styles:{color:\"rgb(0, 0, 0)\",fontOpacity:1,fontSize:14,fontWeight:\"medium\",hoverColor:\"rgb(0, 0, 0)\"},stylesUnderline:{addColorThree:false,addColorTwo:false,animationSpeed:\"normal\",animationType:\"c\",colorThree:\"rgb(0, 153, 255)\",colorTwo:\"rgb(0, 153, 255)\",previewUnderline:false,underlineBorder:0,underlineColor:\"rgb(0, 0, 0)\",underlineDistance:18,underlineHeight:1},text:\"PRINTS\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tn47zs-container\",layoutDependency:layoutDependency,layoutId:\"AebnaDe1_-container\",children:/*#__PURE__*/_jsx(Custom_Navlink,{height:\"100%\",id:\"AebnaDe1_\",layoutId:\"AebnaDe1_\",link:\"/publications\",openNewTab:false,styles:{color:\"rgb(0, 0, 0)\",fontOpacity:1,fontSize:14,fontWeight:\"medium\",hoverColor:\"rgb(0, 0, 0)\"},stylesUnderline:{addColorThree:false,addColorTwo:false,animationSpeed:\"normal\",animationType:\"c\",colorThree:\"rgb(0, 153, 255)\",colorTwo:\"rgb(0, 153, 255)\",previewUnderline:false,underlineBorder:0,underlineColor:\"rgb(0, 0, 0)\",underlineDistance:18,underlineHeight:1},text:\"PUBLICATIONS\",width:\"100%\"})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j2q59g-container\",layoutDependency:layoutDependency,layoutId:\"ffPYzS5Mx-container\",style:{opacity:0},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(CustomBadge,{height:\"100%\",id:\"ffPYzS5Mx\",layoutId:\"ffPYzS5Mx\",width:\"100%\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xs00o3\",layoutDependency:layoutDependency,layoutId:\"lpJetwOy_\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-n50oap-container\",layoutDependency:layoutDependency,layoutId:\"MJLRAIXcv-container\",children:/*#__PURE__*/_jsx(Custom_Navlink,{height:\"100%\",id:\"MJLRAIXcv\",layoutId:\"MJLRAIXcv\",link:\"mailto:michelle@michellesandmael.com\",openNewTab:false,style:{width:\"100%\"},styles:{color:\"rgb(0, 0, 0)\",fontOpacity:1,fontSize:14,fontWeight:\"medium\",hoverColor:\"rgb(0, 0, 0)\"},stylesUnderline:{addColorThree:false,addColorTwo:false,animationSpeed:\"normal\",animationType:\"c\",colorThree:\"rgb(0, 153, 255)\",colorTwo:\"rgb(0, 153, 255)\",previewUnderline:false,underlineBorder:0,underlineColor:\"rgb(0, 0, 0)\",underlineDistance:18,underlineHeight:1},text:\"Email\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-5hdytz\",layoutDependency:layoutDependency,layoutId:\"Uii1OdIAh\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h772a7-container\",layoutDependency:layoutDependency,layoutId:\"FWYEhAQ0s-container\",children:/*#__PURE__*/_jsx(Custom_Navlink,{height:\"100%\",id:\"FWYEhAQ0s\",layoutId:\"FWYEhAQ0s\",link:\"mailto:michelle@michellesandmael.com\",openNewTab:false,styles:{color:\"rgb(0, 0, 0)\",fontOpacity:1,fontSize:38,fontWeight:\"medium\",hoverColor:\"rgb(0, 0, 0)\"},stylesUnderline:{addColorThree:false,addColorTwo:false,animationSpeed:\"normal\",animationType:\"c\",colorThree:\"rgb(0, 153, 255)\",colorTwo:\"rgb(0, 153, 255)\",previewUnderline:false,underlineBorder:0,underlineColor:\"rgb(0, 0, 0)\",underlineDistance:45,underlineHeight:2},text:\"Email\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7tiv4w\",layoutDependency:layoutDependency,layoutId:\"oSKXqvQkq\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-104i9ba-container\",layoutDependency:layoutDependency,layoutId:\"ufz3g4H6n-container\",children:/*#__PURE__*/_jsx(Custom_Navlink,{height:\"100%\",id:\"ufz3g4H6n\",layoutId:\"ufz3g4H6n\",link:\"/\",openNewTab:false,styles:{color:\"rgb(0, 0, 0)\",fontOpacity:1,fontSize:38,fontWeight:\"medium\",hoverColor:\"rgb(0, 0, 0)\"},stylesUnderline:{addColorThree:false,addColorTwo:false,animationSpeed:\"normal\",animationType:\"c\",colorThree:\"rgb(0, 153, 255)\",colorTwo:\"rgb(0, 153, 255)\",previewUnderline:false,underlineBorder:0,underlineColor:\"rgb(0, 0, 0)\",underlineDistance:45,underlineHeight:2},text:\"Work\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kk9wsn-container\",layoutDependency:layoutDependency,layoutId:\"wdAZexWg9-container\",children:/*#__PURE__*/_jsx(Custom_Navlink,{height:\"100%\",id:\"wdAZexWg9\",layoutId:\"wdAZexWg9\",link:\"/contact\",openNewTab:false,styles:{color:\"rgb(0, 0, 0)\",fontOpacity:1,fontSize:38,fontWeight:\"medium\",hoverColor:\"rgb(0, 0, 0)\"},stylesUnderline:{addColorThree:false,addColorTwo:false,animationSpeed:\"normal\",animationType:\"c\",colorThree:\"rgb(0, 153, 255)\",colorTwo:\"rgb(0, 153, 255)\",previewUnderline:false,underlineBorder:0,underlineColor:\"rgb(0, 0, 0)\",underlineDistance:45,underlineHeight:2},text:\"Contact\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19pptj2-container\",layoutDependency:layoutDependency,layoutId:\"x_zQ2Bbnx-container\",children:/*#__PURE__*/_jsx(Custom_Navlink,{height:\"100%\",id:\"x_zQ2Bbnx\",layoutId:\"x_zQ2Bbnx\",link:\"/biography\",openNewTab:false,styles:{color:\"rgb(0, 0, 0)\",fontOpacity:1,fontSize:38,fontWeight:\"medium\",hoverColor:\"rgb(0, 0, 0)\"},stylesUnderline:{addColorThree:false,addColorTwo:false,animationSpeed:\"normal\",animationType:\"c\",colorThree:\"rgb(0, 153, 255)\",colorTwo:\"rgb(0, 153, 255)\",previewUnderline:false,underlineBorder:0,underlineColor:\"rgb(0, 0, 0)\",underlineDistance:45,underlineHeight:2},text:\"Biography\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d2fnae-container\",layoutDependency:layoutDependency,layoutId:\"QIy5iwnoA-container\",children:/*#__PURE__*/_jsx(Custom_Navlink,{height:\"100%\",id:\"QIy5iwnoA\",layoutId:\"QIy5iwnoA\",link:\"/prints\",openNewTab:false,styles:{color:\"rgb(0, 0, 0)\",fontOpacity:1,fontSize:38,fontWeight:\"medium\",hoverColor:\"rgb(0, 0, 0)\"},stylesUnderline:{addColorThree:false,addColorTwo:false,animationSpeed:\"normal\",animationType:\"c\",colorThree:\"rgb(0, 153, 255)\",colorTwo:\"rgb(0, 153, 255)\",previewUnderline:false,underlineBorder:0,underlineColor:\"rgb(0, 0, 0)\",underlineDistance:45,underlineHeight:2},text:\"Prints\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fcql5l-container\",layoutDependency:layoutDependency,layoutId:\"wQ6U1UohC-container\",children:/*#__PURE__*/_jsx(Custom_Navlink,{height:\"100%\",id:\"wQ6U1UohC\",layoutId:\"wQ6U1UohC\",link:\"/publications\",openNewTab:false,styles:{color:\"rgb(0, 0, 0)\",fontOpacity:1,fontSize:38,fontWeight:\"medium\",hoverColor:\"rgb(0, 0, 0)\"},stylesUnderline:{addColorThree:false,addColorTwo:false,animationSpeed:\"normal\",animationType:\"c\",colorThree:\"rgb(0, 153, 255)\",colorTwo:\"rgb(0, 153, 255)\",previewUnderline:false,underlineBorder:0,underlineColor:\"rgb(0, 0, 0)\",underlineDistance:45,underlineHeight:2},text:\"Publications\",width:\"100%\"})})]})]})})});});const css=['.framer-vzIFn[data-border=\"true\"]::after, .framer-vzIFn [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-vzIFn.framer-1spi7v0, .framer-vzIFn .framer-1spi7v0 { display: block; }\",\".framer-vzIFn.framer-ob0e4d { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: 800px; justify-content: space-between; overflow: hidden; padding: 35px 10px 25px 25px; position: relative; width: 180px; }\",\".framer-vzIFn .framer-xu1g5v { 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 0px 0px 0px; position: relative; width: 100%; }\",\".framer-vzIFn .framer-99qb35 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-vzIFn .framer-ylxd6e { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-vzIFn .framer-3u2p7d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px 0px 5px 0px; position: relative; width: 100%; }\",\".framer-vzIFn .framer-86szaz-container, .framer-vzIFn .framer-1dc1kus-container, .framer-vzIFn .framer-1th83ox-container, .framer-vzIFn .framer-17tff0d-container, .framer-vzIFn .framer-tn47zs-container, .framer-vzIFn .framer-h772a7-container, .framer-vzIFn .framer-104i9ba-container, .framer-vzIFn .framer-kk9wsn-container, .framer-vzIFn .framer-19pptj2-container, .framer-vzIFn .framer-d2fnae-container, .framer-vzIFn .framer-fcql5l-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-vzIFn .framer-j2q59g-container { bottom: 215px; flex: none; height: auto; left: 54%; position: absolute; width: auto; z-index: 1; }\",\".framer-vzIFn .framer-1xs00o3 { 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: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-vzIFn .framer-n50oap-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-vzIFn .framer-5hdytz { 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: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-vzIFn .framer-7tiv4w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vzIFn .framer-xu1g5v, .framer-vzIFn .framer-3u2p7d, .framer-vzIFn .framer-1xs00o3, .framer-vzIFn .framer-5hdytz, .framer-vzIFn .framer-7tiv4w { gap: 0px; } .framer-vzIFn .framer-xu1g5v > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vzIFn .framer-xu1g5v > :first-child { margin-left: 0px; } .framer-vzIFn .framer-xu1g5v > :last-child { margin-right: 0px; } .framer-vzIFn .framer-3u2p7d > *, .framer-vzIFn .framer-7tiv4w > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-vzIFn .framer-3u2p7d > :first-child, .framer-vzIFn .framer-1xs00o3 > :first-child, .framer-vzIFn .framer-5hdytz > :first-child, .framer-vzIFn .framer-7tiv4w > :first-child { margin-top: 0px; } .framer-vzIFn .framer-3u2p7d > :last-child, .framer-vzIFn .framer-1xs00o3 > :last-child, .framer-vzIFn .framer-5hdytz > :last-child, .framer-vzIFn .framer-7tiv4w > :last-child { margin-bottom: 0px; } .framer-vzIFn .framer-1xs00o3 > *, .framer-vzIFn .framer-5hdytz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-vzIFn.framer-v-ir1hq1.framer-ob0e4d { flex-direction: row; height: auto; padding: 10px 10px 10px 10px; width: 390px; }\",\".framer-vzIFn.framer-v-ir1hq1 .framer-xu1g5v { flex: 1 0 0px; gap: unset; justify-content: space-between; order: 3; width: 1px; }\",\".framer-vzIFn.framer-v-ir1hq1 .framer-99qb35 { cursor: pointer; order: 1; }\",\".framer-vzIFn.framer-v-ir1hq1 .framer-ylxd6e, .framer-vzIFn.framer-v-u40wbf .framer-ylxd6e { flex: none; order: 0; white-space: pre; width: auto; }\",\".framer-vzIFn.framer-v-ir1hq1 .framer-j2q59g-container, .framer-vzIFn.framer-v-u40wbf .framer-j2q59g-container, .framer-vzIFn.framer-v-u40wbf .framer-kk9wsn-container { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vzIFn.framer-v-ir1hq1.framer-ob0e4d, .framer-vzIFn.framer-v-ir1hq1 .framer-xu1g5v { gap: 0px; } .framer-vzIFn.framer-v-ir1hq1.framer-ob0e4d > *, .framer-vzIFn.framer-v-ir1hq1.framer-ob0e4d > :first-child, .framer-vzIFn.framer-v-ir1hq1.framer-ob0e4d > :last-child, .framer-vzIFn.framer-v-ir1hq1 .framer-xu1g5v > *, .framer-vzIFn.framer-v-ir1hq1 .framer-xu1g5v > :first-child, .framer-vzIFn.framer-v-ir1hq1 .framer-xu1g5v > :last-child { margin: 0px; } }\",\".framer-vzIFn.framer-v-u40wbf.framer-ob0e4d { align-content: flex-start; align-items: flex-start; gap: 40px; justify-content: flex-start; padding: 10px 10px 10px 10px; width: 390px; }\",\".framer-vzIFn.framer-v-u40wbf .framer-xu1g5v { cursor: pointer; gap: unset; justify-content: space-between; order: 3; }\",\".framer-vzIFn.framer-v-u40wbf .framer-99qb35, .framer-vzIFn.framer-v-u40wbf .framer-19pptj2-container { order: 1; }\",\".framer-vzIFn.framer-v-u40wbf .framer-5hdytz { order: 5; }\",\".framer-vzIFn.framer-v-u40wbf .framer-7tiv4w, .framer-vzIFn.framer-v-u40wbf .framer-fcql5l-container { order: 4; }\",\".framer-vzIFn.framer-v-u40wbf .framer-104i9ba-container { order: 0; }\",\".framer-vzIFn.framer-v-u40wbf .framer-d2fnae-container { order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vzIFn.framer-v-u40wbf.framer-ob0e4d, .framer-vzIFn.framer-v-u40wbf .framer-xu1g5v { gap: 0px; } .framer-vzIFn.framer-v-u40wbf.framer-ob0e4d > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-vzIFn.framer-v-u40wbf.framer-ob0e4d > :first-child { margin-top: 0px; } .framer-vzIFn.framer-v-u40wbf.framer-ob0e4d > :last-child { margin-bottom: 0px; } .framer-vzIFn.framer-v-u40wbf .framer-xu1g5v > *, .framer-vzIFn.framer-v-u40wbf .framer-xu1g5v > :first-child, .framer-vzIFn.framer-v-u40wbf .framer-xu1g5v > :last-child { margin: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"K9iB5zLil\":{\"layout\":[\"fixed\",\"auto\"]},\"deXG9HCAK\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const Framerk7An9J7M8=withCSS(Component,css,\"framer-vzIFn\");export default Framerk7An9J7M8;Framerk7An9J7M8.displayName=\"NavBar\";Framerk7An9J7M8.defaultProps={height:800,width:180};addPropertyControls(Framerk7An9J7M8,{variant:{options:[\"rLRkDQrI0\",\"K9iB5zLil\",\"deXG9HCAK\"],optionTitles:[\"Desktop\",\"Mobile\",\"Mobile Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerk7An9J7M8,[{family:\"Inter Tight\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"},...Custom_NavlinkFonts,...CustomBadgeFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerk7An9J7M8\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"K9iB5zLil\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"deXG9HCAK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"800\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"180\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./k7An9J7M8.map"],
  "mappings": "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",
  "names": ["Custom_Navlink", "props", "hover", "setHover", "ye", "hoverOnHandler", "hoverOffHandler", "fontValue", "fontStyle", "style", "value", "speedValue", "speed", "animation", "underline", "linkStyle", "target", "u", "p", "addPropertyControls", "ControlType", "CustomBadge", "ue", "p", "motion", "Custom_NavlinkFonts", "getFonts", "Custom_Navlink", "CustomBadgeFonts", "CustomBadge", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ylwmvh", "args", "onTap21r7q7", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "RichText", "x", "css", "Framerk7An9J7M8", "withCSS", "k7An9J7M8_default", "addPropertyControls", "ControlType", "addFonts"]
}
