{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js", "ssg:https://framerusercontent.com/modules/cOmFrZLoRx5G9OYUQpPp/xkPANchcAQL0ThYW4tBv/ES9IMHwQr.js", "ssg:https://framerusercontent.com/modules/1hNRKAarAgBfNrOv0A6X/QBftNX0doJ15IKpdLS1m/TsVnMrH5w.js", "ssg:https://framerusercontent.com/modules/AiYYxwStfULe6YaUMVBI/aaVuG3qeKXrxvzKFd8yD/lVCOjk_qV.js", "ssg:https://framerusercontent.com/modules/pXDQtzGjSCP4i2Xulh0j/kP0NF7tjDfYlhod2PfSK/Ty0As9wCd.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}from\"framer\";import{useState,useEffect,useCallback}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;function useForceRender(){const[_,set]=useState(0);return useCallback(()=>set(v=>v+1),[]);}function formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showMinutes,showSeconds},timeFormat,monthFormat,localCode){const date=new Date;const onlyYearIsShown=!showWeekday&&!showMonth&&showYear;switch(outputType){case\"date\":return new Intl.DateTimeFormat(localCode,{weekday:showWeekday?\"long\":undefined,day:onlyYearIsShown?undefined:\"numeric\",month:showMonth?monthFormat:undefined,year:showYear?\"numeric\":undefined}).format(date);case\"time\":return new Intl.DateTimeFormat(localCode,{hour:\"numeric\",minute:showMinutes?\"numeric\":undefined,second:showSeconds&&showMinutes?\"numeric\":undefined,hour12:timeFormat===\"12h\"}).format(date);default:return new Intl.DateTimeFormat(localCode).format(date);}}/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const{outputType,fontFamily,fontSize,fontWeight,timeFormat,showYear,showMonth,showWeekday,showHours,showMinutes,showSeconds,monthFormat,color,font,tabularFont,alignment}=props;const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const render=useForceRender();const localCode=useLocaleCode();const textContent=formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showHours,showMinutes,showSeconds},timeFormat,monthFormat,localCode);useEffect(()=>{setIsVisible(true);// Don\u2019t want real time on Canvas\nif(isCanvas)return;const int=setInterval(()=>{render();});return()=>{clearInterval(int);};},[]);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{margin:0,padding:0,color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,visibility:visible?\"visible\":\"hidden\",...font,fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},children:textContent});}Time.defaultProps={height:20,width:140,outputType:\"time\",color:\"#999\",timeFormat:\"24h\",showYear:true,showMonth:true,showWeekday:true,showMinutes:true,showSeconds:true,monthFormat:\"long\",alignment:\"center\"};Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:Time.defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:Time.defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:Time.defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: Time.defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showSeconds,hidden:props=>props.outputType!==\"time\"||!props.showMinutes},font:{type:ControlType.Font,controls:\"extended\"},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true},color:{type:ControlType.Color,defaultValue:Time.defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"140\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "// Generated by Framer (ec8bce6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,Link,ResolveLinks,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js\";import Button from\"https://framerusercontent.com/modules/6U9uB5TQKJXc3K0J5agq/uLmJ1kbkQVo5mv9I9RQP/sM6mbEIOR.js\";const ButtonFonts=getFonts(Button);const TimeDateFonts=getFonts(TimeDate);const ButtonControls=getPropertyControls(Button);const cycleOrder=[\"yIX1Dj4V5\",\"aoCV1tpd8\"];const serializationHash=\"framer-KXyJC\";const variantClassNames={aoCV1tpd8:\"framer-v-18ixau9\",yIX1Dj4V5:\"framer-v-srwdcl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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 Variants=motion.create(React.Fragment);const humanReadableEnumMap={Active:\"ixFPm8XO2\",Default:\"jrOLrqWfH\"};const humanReadableVariantMap={Desktop:\"yIX1Dj4V5\",Phone:\"aoCV1tpd8\"};const getProps=({contactMeVariant,height,homeVariant,id,portfolioVariant,width,...props})=>{var _humanReadableEnumMap_contactMeVariant,_ref,_ref1,_humanReadableEnumMap_homeVariant,_ref2,_ref3,_humanReadableEnumMap_portfolioVariant,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6;return{...props,AQOPoiGrZ:(_ref1=(_ref=(_humanReadableEnumMap_contactMeVariant=humanReadableEnumMap[contactMeVariant])!==null&&_humanReadableEnumMap_contactMeVariant!==void 0?_humanReadableEnumMap_contactMeVariant:contactMeVariant)!==null&&_ref!==void 0?_ref:props.AQOPoiGrZ)!==null&&_ref1!==void 0?_ref1:\"jrOLrqWfH\",LadROTWnk:(_ref3=(_ref2=(_humanReadableEnumMap_homeVariant=humanReadableEnumMap[homeVariant])!==null&&_humanReadableEnumMap_homeVariant!==void 0?_humanReadableEnumMap_homeVariant:homeVariant)!==null&&_ref2!==void 0?_ref2:props.LadROTWnk)!==null&&_ref3!==void 0?_ref3:\"jrOLrqWfH\",QoXwaJSkG:(_ref5=(_ref4=(_humanReadableEnumMap_portfolioVariant=humanReadableEnumMap[portfolioVariant])!==null&&_humanReadableEnumMap_portfolioVariant!==void 0?_humanReadableEnumMap_portfolioVariant:portfolioVariant)!==null&&_ref4!==void 0?_ref4:props.QoXwaJSkG)!==null&&_ref5!==void 0?_ref5:\"jrOLrqWfH\",variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"yIX1Dj4V5\"};};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,LadROTWnk,QoXwaJSkG,AQOPoiGrZ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yIX1Dj4V5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(baseVariant===\"aoCV1tpd8\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-srwdcl\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"yIX1Dj4V5\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-cfc09d23-9d91-4fb4-a296-fdbf5e14f5c1, rgb(192, 192, 192))\",boxShadow:\"inset -1px -1px 0px 0px rgb(10, 10, 10), inset 1px 1px 0px 0px rgb(222, 222, 222), inset -2px -2px 0px 0px rgb(128, 128, 128), inset 2px 2px 0px 0px rgb(255, 255, 255)\",...style},...addPropertyOverrides({aoCV1tpd8:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-wuqrzy\",\"data-framer-name\":\"Nav Links\",layoutDependency:layoutDependency,layoutId:\"uei4DbQeT\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Mz0ckimwT\"},implicitPathVariables:undefined},{href:{webPageId:\"Mz0ckimwT\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"160px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||54)-0-48)/2)+0,...addPropertyOverrides({aoCV1tpd8:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+3+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fd9841-container\",layoutDependency:layoutDependency,layoutId:\"WnwPqLMxJ-container\",children:/*#__PURE__*/_jsx(Button,{BfCZciVJs:addImageAlt({src:\"https://framerusercontent.com/images/ZDzGgEhQuZDooJSBPgIf9RWqI.png\",srcSet:\"https://framerusercontent.com/images/ZDzGgEhQuZDooJSBPgIf9RWqI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZDzGgEhQuZDooJSBPgIf9RWqI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZDzGgEhQuZDooJSBPgIf9RWqI.png 1668w\"},\"\"),ePsp3_56F:\"Infos\",fD0SbLM1a:true,HcGOdtkoK:false,height:\"100%\",id:\"WnwPqLMxJ\",jba7LTTAV:\"flex-start\",L9ofgu37m:resolvedLinks[0],layoutId:\"WnwPqLMxJ\",O9pZWTONR:true,style:{height:\"100%\",width:\"100%\"},variant:LadROTWnk,width:\"100%\",...addPropertyOverrides({aoCV1tpd8:{L9ofgu37m:resolvedLinks[1],O9pZWTONR:false,style:{height:\"100%\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CoDShx_99\"},implicitPathVariables:undefined},{href:{webPageId:\"CoDShx_99\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"160px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||54)-0-48)/2)+0,...addPropertyOverrides({aoCV1tpd8:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+3+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-v7c2mr-container\",layoutDependency:layoutDependency,layoutId:\"tNfEckn5c-container\",children:/*#__PURE__*/_jsx(Button,{BfCZciVJs:addImageAlt({src:\"https://framerusercontent.com/images/kLK6kQQ3hJHFMu7ZiMdDEYRFiec.png\",srcSet:\"https://framerusercontent.com/images/kLK6kQQ3hJHFMu7ZiMdDEYRFiec.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/kLK6kQQ3hJHFMu7ZiMdDEYRFiec.png 1667w\"},\"\"),ePsp3_56F:\"Programm\",fD0SbLM1a:true,HcGOdtkoK:false,height:\"100%\",id:\"tNfEckn5c\",jba7LTTAV:\"flex-start\",L9ofgu37m:resolvedLinks1[0],layoutId:\"tNfEckn5c\",O9pZWTONR:true,style:{height:\"100%\",width:\"100%\"},variant:QoXwaJSkG,width:\"100%\",...addPropertyOverrides({aoCV1tpd8:{L9ofgu37m:resolvedLinks1[1],O9pZWTONR:false,style:{height:\"100%\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DY7GTTXCB\"},implicitPathVariables:undefined},{href:{webPageId:\"DY7GTTXCB\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"160px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||54)-0-48)/2)+0,...addPropertyOverrides({aoCV1tpd8:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+3+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19ctmer-container\",layoutDependency:layoutDependency,layoutId:\"lhM8znCU_-container\",children:/*#__PURE__*/_jsx(Button,{BfCZciVJs:addImageAlt({src:\"https://framerusercontent.com/images/quHg4iOfDTPMTjR5MElTVRk4M.png\",srcSet:\"https://framerusercontent.com/images/quHg4iOfDTPMTjR5MElTVRk4M.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/quHg4iOfDTPMTjR5MElTVRk4M.png 1667w\"},\"\"),ePsp3_56F:\"Kontakt\",fD0SbLM1a:true,HcGOdtkoK:false,height:\"100%\",id:\"lhM8znCU_\",jba7LTTAV:\"flex-start\",L9ofgu37m:resolvedLinks2[0],layoutId:\"lhM8znCU_\",O9pZWTONR:true,style:{height:\"100%\",width:\"100%\"},variant:AQOPoiGrZ,width:\"100%\",...addPropertyOverrides({aoCV1tpd8:{L9ofgu37m:resolvedLinks2[1],O9pZWTONR:false,style:{height:\"100%\"}}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NLRWfFKYc\"},nodeId:\"bKQaCL2gV\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:17,intrinsicWidth:36,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||54)-49),pixelHeight:175,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9cBEEcjtIc0iZZry4k8j03QbiY.png\"},className:\"framer-xtq1d4 framer-5mkbwo\",\"data-framer-name\":\"cat\",layoutDependency:layoutDependency,layoutId:\"bKQaCL2gV\",...addPropertyOverrides({aoCV1tpd8:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:17,intrinsicWidth:36,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||108)-49),pixelHeight:175,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9cBEEcjtIc0iZZry4k8j03QbiY.png\"},transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9ej62i\",\"data-framer-name\":\"Socials and Time\",layoutDependency:layoutDependency,layoutId:\"iUdHAZcXO\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x9whvp\",\"data-framer-name\":\"Socials\",layoutDependency:layoutDependency,layoutId:\"nFFei23qB\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||54)-0-52)/2)+2+0,...addPropertyOverrides({aoCV1tpd8:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+3+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-t2flg5-container\",layoutDependency:layoutDependency,layoutId:\"prhnC1IVX-container\",children:/*#__PURE__*/_jsx(Button,{BfCZciVJs:addImageAlt({src:\"https://framerusercontent.com/images/ZF3MaVH6eupPqJ9TF8sdI86vOo.svg\"},\"\"),ePsp3_56F:\"Button\",fD0SbLM1a:true,HcGOdtkoK:true,height:\"100%\",id:\"prhnC1IVX\",jba7LTTAV:\"center\",L9ofgu37m:\"https://www.instagram.com/oldschoolday_adelbodenlenk/\",layoutId:\"prhnC1IVX\",O9pZWTONR:false,style:{height:\"100%\"},variant:\"jrOLrqWfH\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eo6yi8\",\"data-framer-name\":\"Speaker_Icon Area\",layoutDependency:layoutDependency,layoutId:\"rrwKZVdyt\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:24,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||54)-0-52)/2)+14+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/bYu3AxYAokw6bhwssSc4e1riUGI.png\"},className:\"framer-d9me41\",\"data-framer-name\":\"Speaker_Icon\",layoutDependency:layoutDependency,layoutId:\"OEQdhBRGh\"})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-5sdcka\",\"data-framer-name\":\"Time\",layoutDependency:layoutDependency,layoutId:\"Z452kySQ6\",style:{backgroundColor:\"var(--token-cfc09d23-9d91-4fb4-a296-fdbf5e14f5c1, rgb(192, 192, 192))\",boxShadow:\"inset -1px -1px 0px 0px rgb(222, 222, 222), inset 1px 1px 0px 0px rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ie8ns-container\",layoutDependency:layoutDependency,layoutId:\"d3vSDrTA6-container\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"var(--token-49be123f-dee1-4489-8dc4-b04eb38e349d, rgb(0, 0, 0))\",font:{fontFamily:'\"Silkscreen\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.1em\",lineHeight:\"1em\"},height:\"100%\",id:\"d3vSDrTA6\",layoutId:\"d3vSDrTA6\",monthFormat:\"long\",outputType:\"time\",showMinutes:true,showMonth:true,showSeconds:false,showWeekday:true,showYear:true,tabularFont:true,timeFormat:\"24h\",width:\"100%\"})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KXyJC.framer-5mkbwo, .framer-KXyJC .framer-5mkbwo { display: block; }\",\".framer-KXyJC.framer-srwdcl { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: 54px; justify-content: space-between; overflow: hidden; padding: 0px 3px 0px 3px; position: relative; width: 1200px; }\",\".framer-KXyJC .framer-wuqrzy, .framer-KXyJC .framer-9ej62i, .framer-KXyJC .framer-1x9whvp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-KXyJC .framer-fd9841-container, .framer-KXyJC .framer-v7c2mr-container, .framer-KXyJC .framer-19ctmer-container { flex: none; height: 48px; position: relative; width: 160px; }\",\".framer-KXyJC .framer-xtq1d4 { aspect-ratio: 2.125 / 1; bottom: 1px; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: absolute; right: 286px; text-decoration: none; width: 102px; z-index: 1; }\",\".framer-KXyJC .framer-t2flg5-container { flex: none; height: 48px; position: relative; width: auto; }\",\".framer-KXyJC .framer-1eo6yi8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 48px; }\",\".framer-KXyJC .framer-d9me41 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 24px; }\",\".framer-KXyJC .framer-5sdcka { 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: hidden; padding: 16px 20px 16px 20px; position: relative; width: min-content; }\",\".framer-KXyJC .framer-10ie8ns-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KXyJC .framer-wuqrzy, .framer-KXyJC .framer-9ej62i, .framer-KXyJC .framer-1x9whvp, .framer-KXyJC .framer-1eo6yi8, .framer-KXyJC .framer-5sdcka { gap: 0px; } .framer-KXyJC .framer-wuqrzy > *, .framer-KXyJC .framer-9ej62i > *, .framer-KXyJC .framer-1x9whvp > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-KXyJC .framer-wuqrzy > :first-child, .framer-KXyJC .framer-9ej62i > :first-child, .framer-KXyJC .framer-1x9whvp > :first-child, .framer-KXyJC .framer-1eo6yi8 > :first-child, .framer-KXyJC .framer-5sdcka > :first-child { margin-left: 0px; } .framer-KXyJC .framer-wuqrzy > :last-child, .framer-KXyJC .framer-9ej62i > :last-child, .framer-KXyJC .framer-1x9whvp > :last-child, .framer-KXyJC .framer-1eo6yi8 > :last-child, .framer-KXyJC .framer-5sdcka > :last-child { margin-right: 0px; } .framer-KXyJC .framer-1eo6yi8 > *, .framer-KXyJC .framer-5sdcka > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-KXyJC.framer-v-18ixau9.framer-srwdcl { align-content: flex-start; align-items: flex-start; height: 108px; padding: 3px 3px 0px 3px; }\",\".framer-KXyJC.framer-v-18ixau9 .framer-fd9841-container { order: 0; width: auto; }\",\".framer-KXyJC.framer-v-18ixau9 .framer-v7c2mr-container { order: 1; width: auto; }\",\".framer-KXyJC.framer-v-18ixau9 .framer-19ctmer-container { order: 2; width: auto; }\",\".framer-KXyJC.framer-v-18ixau9 .framer-xtq1d4 { left: 50%; right: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 54\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"aoCV1tpd8\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"LadROTWnk\":\"homeVariant\",\"QoXwaJSkG\":\"portfolioVariant\",\"AQOPoiGrZ\":\"contactMeVariant\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerES9IMHwQr=withCSS(Component,css,\"framer-KXyJC\");export default FramerES9IMHwQr;FramerES9IMHwQr.displayName=\"Navbar\";FramerES9IMHwQr.defaultProps={height:54,width:1200};addPropertyControls(FramerES9IMHwQr,{variant:{options:[\"yIX1Dj4V5\",\"aoCV1tpd8\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},LadROTWnk:(ButtonControls===null||ButtonControls===void 0?void 0:ButtonControls[\"variant\"])&&{...ButtonControls[\"variant\"],defaultValue:\"jrOLrqWfH\",description:undefined,hidden:undefined,title:\"Home Variant\"},QoXwaJSkG:(ButtonControls===null||ButtonControls===void 0?void 0:ButtonControls[\"variant\"])&&{...ButtonControls[\"variant\"],defaultValue:\"jrOLrqWfH\",description:undefined,hidden:undefined,title:\"Portfolio Variant\"},AQOPoiGrZ:(ButtonControls===null||ButtonControls===void 0?void 0:ButtonControls[\"variant\"])&&{...ButtonControls[\"variant\"],defaultValue:\"jrOLrqWfH\",description:undefined,hidden:undefined,title:\"Contact Me Variant\"}});addFonts(FramerES9IMHwQr,[{explicitInter:true,fonts:[{family:\"Silkscreen\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/silkscreen/v4/m8JXjfVPf62XiF7kO-i9ULFvamODxdI.woff2\",weight:\"400\"}]},...ButtonFonts,...TimeDateFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerES9IMHwQr\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerVariables\":\"{\\\"LadROTWnk\\\":\\\"homeVariant\\\",\\\"QoXwaJSkG\\\":\\\"portfolioVariant\\\",\\\"AQOPoiGrZ\\\":\\\"contactMeVariant\\\"}\",\"framerIntrinsicHeight\":\"54\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aoCV1tpd8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ES9IMHwQr.map", "// Generated by Framer (552ec80)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/tkpZkYiqLzRf92OMEG6o/P4y2A0NlBQm28CLt7XVd/EEAB6T6NR.js\";const serializationHash=\"framer-VsmUs\";const variantClassNames={mrW_bSpAF:\"framer-v-84uvag\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image,link,title,width,...props})=>{var _ref,_ref1;return{...props,LE5JoEwJ1:(_ref=title!==null&&title!==void 0?title:props.LE5JoEwJ1)!==null&&_ref!==void 0?_ref:\"Title\",VUtnj8KIq:link!==null&&link!==void 0?link:props.VUtnj8KIq,xGr7kehYx:(_ref1=image!==null&&image!==void 0?image:props.xGr7kehYx)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/uLE52N3JZ7WafwPB01oWNu4QRk.png\"}};};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,xGr7kehYx,LE5JoEwJ1,VUtnj8KIq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"mrW_bSpAF\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:VUtnj8KIq,nodeId:\"mrW_bSpAF\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-84uvag\",className,classNames)} framer-1lat2fh`,\"data-framer-name\":\"Desktop Icon\",layoutDependency:layoutDependency,layoutId:\"mrW_bSpAF\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||72)-0-136)/2+0+0)),pixelHeight:48,pixelWidth:48,sizes:\"48px\",...toResponsiveImage(xGr7kehYx)},className:\"framer-a30q3s\",\"data-framer-name\":\"Desktop Icon\",layoutDependency:layoutDependency,layoutId:\"ILhW_bi4C\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1x5vaqn\",\"data-styles-preset\":\"EEAB6T6NR\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"My Computer\"})}),className:\"framer-1xvbiin\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sQJdh9cne\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"1px 1px 2px rgba(0, 0, 0, 0.5)\"},text:LE5JoEwJ1,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VsmUs.framer-1lat2fh, .framer-VsmUs .framer-1lat2fh { display: block; }\",\".framer-VsmUs.framer-84uvag { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 80px; }\",\".framer-VsmUs .framer-a30q3s { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: hidden; position: relative; width: 48px; }\",\".framer-VsmUs .framer-1xvbiin { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VsmUs.framer-84uvag { gap: 0px; } .framer-VsmUs.framer-84uvag > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-VsmUs.framer-84uvag > :first-child { margin-top: 0px; } .framer-VsmUs.framer-84uvag > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 72\n * @framerIntrinsicWidth 80\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"xGr7kehYx\":\"image\",\"LE5JoEwJ1\":\"title\",\"VUtnj8KIq\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTsVnMrH5w=withCSS(Component,css,\"framer-VsmUs\");export default FramerTsVnMrH5w;FramerTsVnMrH5w.displayName=\"Desktop Icon\";FramerTsVnMrH5w.defaultProps={height:72,width:80};addPropertyControls(FramerTsVnMrH5w,{xGr7kehYx:{__defaultAssetReference:\"data:framer/asset-reference,uLE52N3JZ7WafwPB01oWNu4QRk.png?originalFilename=My+Computer.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},LE5JoEwJ1:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},VUtnj8KIq:{title:\"Link\",type:ControlType.Link}});addFonts(FramerTsVnMrH5w,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTsVnMrH5w\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"xGr7kehYx\\\":\\\"image\\\",\\\"LE5JoEwJ1\\\":\\\"title\\\",\\\"VUtnj8KIq\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"72\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"80\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TsVnMrH5w.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import DesktopIcon from\"https://framerusercontent.com/modules/1hNRKAarAgBfNrOv0A6X/QBftNX0doJ15IKpdLS1m/TsVnMrH5w.js\";const DesktopIconFonts=getFonts(DesktopIcon);const serializationHash=\"framer-2cqqd\";const variantClassNames={JcmDulbeE:\"framer-v-1sgvmku\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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 getProps=({click,height,hover,id,width,...props})=>{return{...props,CXIYIEpZ6:hover??props.CXIYIEpZ6,I9FralIKa:click??props.I9FralIKa};};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,I9FralIKa,CXIYIEpZ6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"JcmDulbeE\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1uz0t0w=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(I9FralIKa){const res=await I9FralIKa(...args);if(res===false)return false;}});const onMouseEnter1itsmdy=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(CXIYIEpZ6){const res=await CXIYIEpZ6(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1sgvmku\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"JcmDulbeE\",onMouseEnter:onMouseEnter1itsmdy,onTap:onTap1uz0t0w,ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vdeivr\",\"data-framer-name\":\"Icons Area\",layoutDependency:layoutDependency,layoutId:\"sU7MaY3Af\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fldxrp\",\"data-framer-name\":\"Left Screen Area\",layoutDependency:layoutDependency,layoutId:\"Iq8D48mSt\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m5hjto\",\"data-framer-name\":\"Icons\",layoutDependency:layoutDependency,layoutId:\"kI9HEBVJ0\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Mz0ckimwT\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"80px\",y:(componentViewport?.y||0)+0+(0+(((componentViewport?.height||900)-0)*1-0-(((componentViewport?.height||900)-0)*1-0)*1)/2)+40+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1u3ym4-container\",layoutDependency:layoutDependency,layoutId:\"Lrv3JccOl-container\",nodeId:\"Lrv3JccOl\",rendersWithMotion:true,scopeId:\"lVCOjk_qV\",children:/*#__PURE__*/_jsx(DesktopIcon,{height:\"100%\",id:\"Lrv3JccOl\",layoutId:\"Lrv3JccOl\",LE5JoEwJ1:\"Infos\",style:{width:\"100%\"},VUtnj8KIq:resolvedLinks[0],width:\"100%\",xGr7kehYx:addImageAlt({src:\"https://framerusercontent.com/images/irZL3lSoifEzVmbB8bg7OZhwzCA.png\",srcSet:\"https://framerusercontent.com/images/irZL3lSoifEzVmbB8bg7OZhwzCA.png?scale-down-to=512 512w,https://framerusercontent.com/images/irZL3lSoifEzVmbB8bg7OZhwzCA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/irZL3lSoifEzVmbB8bg7OZhwzCA.png 1668w\"},\"\")})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CoDShx_99\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"80px\",y:(componentViewport?.y||0)+0+(0+(((componentViewport?.height||900)-0)*1-0-(((componentViewport?.height||900)-0)*1-0)*1)/2)+40+0+104,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15g5nx7-container\",layoutDependency:layoutDependency,layoutId:\"lw620ChjK-container\",nodeId:\"lw620ChjK\",rendersWithMotion:true,scopeId:\"lVCOjk_qV\",children:/*#__PURE__*/_jsx(DesktopIcon,{height:\"100%\",id:\"lw620ChjK\",layoutId:\"lw620ChjK\",LE5JoEwJ1:\"Programm\",style:{width:\"100%\"},VUtnj8KIq:resolvedLinks1[0],width:\"100%\",xGr7kehYx:addImageAlt({src:\"https://framerusercontent.com/images/sFsCILyYOhT64mdTAsf9EyZvEiU.png\",srcSet:\"https://framerusercontent.com/images/sFsCILyYOhT64mdTAsf9EyZvEiU.png?scale-down-to=512 512w,https://framerusercontent.com/images/sFsCILyYOhT64mdTAsf9EyZvEiU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sFsCILyYOhT64mdTAsf9EyZvEiU.png 1667w\"},\"\")})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DY7GTTXCB\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"80px\",y:(componentViewport?.y||0)+0+(0+(((componentViewport?.height||900)-0)*1-0-(((componentViewport?.height||900)-0)*1-0)*1)/2)+40+0+208,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e2rc89-container\",layoutDependency:layoutDependency,layoutId:\"AIVn5o0Jj-container\",nodeId:\"AIVn5o0Jj\",rendersWithMotion:true,scopeId:\"lVCOjk_qV\",children:/*#__PURE__*/_jsx(DesktopIcon,{height:\"100%\",id:\"AIVn5o0Jj\",layoutId:\"AIVn5o0Jj\",LE5JoEwJ1:\"Kontakt\",style:{width:\"100%\"},VUtnj8KIq:resolvedLinks2[0],width:\"100%\",xGr7kehYx:addImageAlt({src:\"https://framerusercontent.com/images/lcLTaxAeXhQs0xv95BOFnqfuQ.png\",srcSet:\"https://framerusercontent.com/images/lcLTaxAeXhQs0xv95BOFnqfuQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/lcLTaxAeXhQs0xv95BOFnqfuQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lcLTaxAeXhQs0xv95BOFnqfuQ.png 1667w\"},\"\")})})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10k285k\",\"data-framer-name\":\"Right Screen Area\",layoutDependency:layoutDependency,layoutId:\"SCOTP7NZc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"80px\",y:(componentViewport?.y||0)+0+(0+(((componentViewport?.height||900)-0)*1-0-(((componentViewport?.height||900)-0)*1-0)*1)/2)+16+((((componentViewport?.height||900)-0)*1-0)*1-96-154+0+0),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v7fzmv-container\",layoutDependency:layoutDependency,layoutId:\"qsnbYMroJ-container\",nodeId:\"qsnbYMroJ\",rendersWithMotion:true,scopeId:\"lVCOjk_qV\",children:/*#__PURE__*/_jsx(DesktopIcon,{height:\"100%\",id:\"qsnbYMroJ\",layoutId:\"qsnbYMroJ\",LE5JoEwJ1:\"zum Kalender\",style:{width:\"100%\"},VUtnj8KIq:\"https://stripo.email/storage/ics/2025/3/ics_old-school-day-no-19-2025-03-03-105331.ics\",width:\"100%\",xGr7kehYx:addImageAlt({src:\"https://framerusercontent.com/images/pej602pq4y6eanTOJXdnpRobQc.png\",srcSet:\"https://framerusercontent.com/images/pej602pq4y6eanTOJXdnpRobQc.png?scale-down-to=512 512w,https://framerusercontent.com/images/pej602pq4y6eanTOJXdnpRobQc.png 800w\"},\"\")})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GD9TkmC8a\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"80px\",y:(componentViewport?.y||0)+0+(0+(((componentViewport?.height||900)-0)*1-0-(((componentViewport?.height||900)-0)*1-0)*1)/2)+16+((((componentViewport?.height||900)-0)*1-0)*1-96-154+72+10),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1szzz5s-container\",\"data-framer-name\":\"trash icon\",layoutDependency:layoutDependency,layoutId:\"v90UGpBg8-container\",name:\"trash icon\",nodeId:\"v90UGpBg8\",rendersWithMotion:true,scopeId:\"lVCOjk_qV\",children:/*#__PURE__*/_jsx(DesktopIcon,{height:\"100%\",id:\"v90UGpBg8\",layoutId:\"v90UGpBg8\",LE5JoEwJ1:\"Papierkorb\",name:\"trash icon\",style:{width:\"100%\"},VUtnj8KIq:resolvedLinks3[0],width:\"100%\",xGr7kehYx:addImageAlt({src:\"https://framerusercontent.com/images/aUiO9TgRYS71ppQpJSwLrc9Z9M.png\"},\"\")})})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2cqqd.framer-1fqnp0x, .framer-2cqqd .framer-1fqnp0x { display: block; }\",\".framer-2cqqd.framer-1sgvmku { cursor: pointer; height: 900px; overflow: hidden; position: relative; width: 1200px; }\",\".framer-2cqqd .framer-vdeivr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-2cqqd .framer-fldxrp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; padding: 40px 16px 16px 16px; position: relative; width: 1px; }\",\".framer-2cqqd .framer-1m5hjto { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-2cqqd .framer-1u3ym4-container, .framer-2cqqd .framer-15g5nx7-container, .framer-2cqqd .framer-1e2rc89-container, .framer-2cqqd .framer-v7fzmv-container, .framer-2cqqd .framer-1szzz5s-container { flex: none; height: auto; position: relative; width: 80px; }\",\".framer-2cqqd .framer-10k285k { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; padding: 16px 16px 80px 16px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2cqqd .framer-vdeivr, .framer-2cqqd .framer-fldxrp, .framer-2cqqd .framer-1m5hjto, .framer-2cqqd .framer-10k285k { gap: 0px; } .framer-2cqqd .framer-vdeivr > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-2cqqd .framer-vdeivr > :first-child, .framer-2cqqd .framer-fldxrp > :first-child { margin-left: 0px; } .framer-2cqqd .framer-vdeivr > :last-child, .framer-2cqqd .framer-fldxrp > :last-child { margin-right: 0px; } .framer-2cqqd .framer-fldxrp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2cqqd .framer-1m5hjto > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-2cqqd .framer-1m5hjto > :first-child, .framer-2cqqd .framer-10k285k > :first-child { margin-top: 0px; } .framer-2cqqd .framer-1m5hjto > :last-child, .framer-2cqqd .framer-10k285k > :last-child { margin-bottom: 0px; } .framer-2cqqd .framer-10k285k > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 900\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"I9FralIKa\":\"click\",\"CXIYIEpZ6\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlVCOjk_qV=withCSS(Component,css,\"framer-2cqqd\");export default FramerlVCOjk_qV;FramerlVCOjk_qV.displayName=\"Footer\";FramerlVCOjk_qV.defaultProps={height:900,width:1200};addPropertyControls(FramerlVCOjk_qV,{I9FralIKa:{title:\"Click\",type:ControlType.EventHandler},CXIYIEpZ6:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerlVCOjk_qV,[{explicitInter:true,fonts:[]},...DesktopIconFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlVCOjk_qV\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"900\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"I9FralIKa\\\":\\\"click\\\",\\\"CXIYIEpZ6\\\":\\\"hover\\\"}\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lVCOjk_qV.map", "// Generated by Framer (83b8097)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-npvX0\";const variantClassNames={sqZZrQYBq:\"framer-v-dp5tdv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({click,height,id,width,...props})=>{return{...props,AKSIgkZ74:click!==null&&click!==void 0?click:props.AKSIgkZ74};};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,AKSIgkZ74,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"sqZZrQYBq\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1wox71a=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(AKSIgkZ74){const res=await AKSIgkZ74(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:972,pixelWidth:1474,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/YqEx8F2lCUNBEvoK4QThZIlSxyg.jpg\",srcSet:\"https://framerusercontent.com/images/YqEx8F2lCUNBEvoK4QThZIlSxyg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YqEx8F2lCUNBEvoK4QThZIlSxyg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YqEx8F2lCUNBEvoK4QThZIlSxyg.jpg 1474w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-dp5tdv\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sqZZrQYBq\",onTap:onTap1wox71a,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-npvX0.framer-1bwavwt, .framer-npvX0 .framer-1bwavwt { display: block; }\",\".framer-npvX0.framer-dp5tdv { cursor: pointer; height: 900px; overflow: hidden; position: relative; width: 1200px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 900\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"AKSIgkZ74\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTy0As9wCd=withCSS(Component,css,\"framer-npvX0\");export default FramerTy0As9wCd;FramerTy0As9wCd.displayName=\"Background Image\";FramerTy0As9wCd.defaultProps={height:900,width:1200};addPropertyControls(FramerTy0As9wCd,{AKSIgkZ74:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerTy0As9wCd,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTy0As9wCd\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"900\",\"framerIntrinsicWidth\":\"1200\",\"framerVariables\":\"{\\\"AKSIgkZ74\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ty0As9wCd.map"],
  "mappings": "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",
  "names": ["fontStack", "useForceRender", "_", "set", "ye", "te", "v", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "Time", "props", "fontFamily", "fontSize", "fontWeight", "showHours", "color", "font", "tabularFont", "alignment", "visible", "setIsVisible", "isCanvas", "RenderTarget", "render", "useLocaleCode", "textContent", "ue", "int", "p", "addPropertyControls", "ControlType", "ButtonFonts", "getFonts", "sM6mbEIOR_default", "TimeDateFonts", "Time", "ButtonControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "contactMeVariant", "height", "homeVariant", "id", "portfolioVariant", "width", "props", "_humanReadableEnumMap_contactMeVariant", "_ref", "_ref1", "_humanReadableEnumMap_homeVariant", "_ref2", "_ref3", "_humanReadableEnumMap_portfolioVariant", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "LadROTWnk", "QoXwaJSkG", "AQOPoiGrZ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "Link", "Image2", "getLoadingLazyAtYPosition", "css", "FramerES9IMHwQr", "withCSS", "ES9IMHwQr_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "link", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "xGr7kehYx", "LE5JoEwJ1", "VUtnj8KIq", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerTsVnMrH5w", "withCSS", "TsVnMrH5w_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "DesktopIconFonts", "getFonts", "TsVnMrH5w_default", "serializationHash", "variantClassNames", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "hover", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "I9FralIKa", "CXIYIEpZ6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1uz0t0w", "args", "onMouseEnter1itsmdy", "scopingClassNames", "cx", "serializationHash", "router", "useRouter", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "TsVnMrH5w_default", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "css", "FramerlVCOjk_qV", "withCSS", "lVCOjk_qV_default", "addPropertyControls", "ControlType", "addFonts", "DesktopIconFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "AKSIgkZ74", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1wox71a", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "cx", "serializationHash", "css", "FramerTy0As9wCd", "withCSS", "Ty0As9wCd_default", "addPropertyControls", "ControlType", "addFonts"]
}
