{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js", "ssg:https://framerusercontent.com/modules/KIFCsOBq43HHyZ3jx6PE/G8vqmzy3GOWpJN5uGWfY/Link_last_song.js", "ssg:https://framerusercontent.com/modules/fX7XiBbCmatv2zG4PJZ3/CrF0vmuosdJZra95V62q/HbNYWLQvW.js", "ssg:https://framerusercontent.com/modules/ajCckQhJmsR248Bw6pCx/sz1UYBmRFKSocosP5uju/zJiAFA61T.js", "ssg:https://framerusercontent.com/modules/DInVhOOsiym3Jz4GeGnd/YMTzBHryvlmWwikmACsO/NRUWp3aCo-0.js", "ssg:https://framerusercontent.com/modules/DInVhOOsiym3Jz4GeGnd/YMTzBHryvlmWwikmACsO/NRUWp3aCo.js", "ssg:https://framerusercontent.com/modules/p4umcQ6EF4n7A1Bj4gFd/66DezcQMExbdBwd2fCdB/Cs_i3CA9B.js", "ssg:https://framer.com/m/hero-icons/Home.js@0.0.28", "ssg:https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js", "ssg:https://framerusercontent.com/modules/TOHwL4X7rbaBvHrJHE4Z/rae3jOroQKRickmssaG8/l4izfkmg4.js", "ssg:https://framerusercontent.com/modules/rsy68nr8Ltj0KAgrbEIP/WfemPk47fg5gmXiUvCL1/NRUWp3aCo.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}from\"framer\";import{startTransition,useCallback,useEffect,useRef,useState}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 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);}}const 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\"};/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const mergedProps={...defaultProps,...props};const{outputType,timeFormat,showYear,showMonth,showWeekday,// showHours,\nshowMinutes,showSeconds,monthFormat,color,font,tabularFont}=mergedProps;const localCode=useLocaleCode();const getTextContent=useCallback(()=>formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,// showHours,\n    showMinutes,showSeconds},timeFormat,monthFormat,localCode),[localCode,monthFormat,outputType,showMinutes,showMonth,showSeconds,showWeekday,showYear,timeFormat]);const timeoutRef=useRef()// FIXME: With React 19, we can remove this and return a cleanup from the ref callback\n;const updateCountdown=useCallback(node=>{if(node===null){// React calls w/ `null` on unmount or if the ref function changes.\nclearTimeout(timeoutRef.current);return;}let prev;const tick=()=>{const date=new Date;const next=new Date().setSeconds(date.getSeconds()+1,0)-+date;timeoutRef.current=setTimeout(tick,next);const textContent=getTextContent();if(prev!==textContent){node.textContent=textContent;prev=textContent;}};tick();},[getTextContent]);const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;useEffect(()=>{startTransition(()=>setIsVisible(true));// Don\u2019t want real time on Canvas\nif(isCanvas)return;},[isCanvas]);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\"},ref:isCanvas?undefined:updateCountdown,children:getTextContent()});}Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue: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:defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicWidth\":\"140\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "import{jsx as _jsx}from\"react/jsx-runtime\";export function withSpotifyLastTrack(Component){return props=>{const fetchLastTrack=async()=>{try{const url=\"https://api.stats.fm/api/v1/users/leomoschen/streams/recent\";const response=await fetch(url);const data=await response.json();if(data&&data.items&&data.items.length>0){const trackId=data.items[0].track.externalIds.spotify[0]// Percorso corretto\n;const spotifyLink=`https://open.spotify.com/track/${trackId}`;// Usa window.location.href per compatibilit\u00E0 con mobile\nwindow.location.href=spotifyLink;}else{console.error(\"Nessuna traccia trovata.\");alert(\"Non ci sono tracce disponibili al momento.\")// Notifica utente\n;}}catch(error){console.error(\"Errore nel recupero della traccia:\",error);alert(\"Si \\xe8 verificato un errore. Riprova pi\\xf9 tardi.\")// Notifica errore\n;}};return /*#__PURE__*/_jsx(\"div\",{style:{cursor:\"pointer\",touchAction:\"manipulation\",userSelect:\"none\"},children:/*#__PURE__*/_jsx(Component,{...props,onClick:fetchLastTrack})});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withSpotifyLastTrack\":{\"type\":\"reactHoc\",\"name\":\"withSpotifyLastTrack\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Link_last_song.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-hFhlB .framer-styles-preset-h4np1l:not(.rich-text-wrapper), .framer-hFhlB .framer-styles-preset-h4np1l.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, #ffffff) /* {\"name\":\"Primary White\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, #ffffff); --framer-link-text-decoration: none; }'];export const className=\"framer-hFhlB\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (461de17)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-sq7Xr .framer-styles-preset-4o6wwu:not(.rich-text-wrapper), .framer-sq7Xr .framer-styles-preset-4o6wwu.rich-text-wrapper a { --framer-link-current-text-color: #999999; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #999999; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #999999; --framer-link-text-decoration: none; }\"];export const className=\"framer-sq7Xr\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Link}from\"framer\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-lzb10r\",\"data-styles-preset\":\"Bsl2HoQxS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:[\"UX/UI Designer | Attualmente creo esperienze @ \",/*#__PURE__*/_jsx(Link,{href:\"https://zuru.tech\",nodeId:\"I355:4315;318:10300\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4o6wwu\",\"data-styles-preset\":\"zJiAFA61T\",children:\"ZURU\"})})]})});export const v1=/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\"},children:\"Ho un segreto per te\u2026\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"1.4em\"},children:\"Proprio ora, sto ascoltando questa hit\"})]});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1ah1jas\",\"data-styles-preset\":\"DIZVDC5Jn\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, rgb(255, 255, 255)))\"},children:\"Pensi che sarei adatto per il tuo team o progetto? Parliamone.\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m8v0l6\",\"data-styles-preset\":\"bshAVwZPg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63ac59f6-4baf-4847-ac01-85632fdf1989, rgb(153, 153, 153)))\"},children:\"Progetti selezionati\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lzb10r\",\"data-styles-preset\":\"Bsl2HoQxS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{pgipyJJtM:\"monk\"},unresolvedPathSlugs:{pgipyJJtM:{collectionId:\"uzEJkyKuV\",collectionItemId:\"zPR2pYHrP\"}},webPageId:\"LfkskGjEz\"},nodeId:\"n_KP4zPzj\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-h4np1l\",\"data-styles-preset\":\"HbNYWLQvW\",children:\"Monk \u2013 Vestiti senza impazzire\"})})})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lzb10r\",\"data-styles-preset\":\"Bsl2HoQxS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{pgipyJJtM:\"scalapay\"},unresolvedPathSlugs:{pgipyJJtM:{collectionId:\"uzEJkyKuV\",collectionItemId:\"uJy2QgCxv\"}},webPageId:\"LfkskGjEz\"},nodeId:\"FREWP4iah\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-h4np1l\",\"data-styles-preset\":\"HbNYWLQvW\",children:\"Scalapay \u2013 Pagamento In-Store\"})})})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lzb10r\",\"data-styles-preset\":\"Bsl2HoQxS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{pgipyJJtM:\"budays-cabin\"},unresolvedPathSlugs:{pgipyJJtM:{collectionId:\"uzEJkyKuV\",collectionItemId:\"GA_qRfSaI\"}},webPageId:\"LfkskGjEz\"},nodeId:\"juzgTcyB7\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-h4np1l\",\"data-styles-preset\":\"HbNYWLQvW\",children:\"Buday's Cabin \u2013 Rilassati con una Birra\"})})})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\",\"--framer-text-transform\":\"uppercase\"},children:\"Link\"})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11i2dtx\",\"data-styles-preset\":\"zqIURpr0O\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-91046826-b395-475a-a623-78be4df1fbd2, rgb(239, 239, 239)))\"},children:\"Fatto con \u2728 da leo.\"})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11i2dtx\",\"data-styles-preset\":\"zqIURpr0O\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-91046826-b395-475a-a623-78be4df1fbd2, rgb(239, 239, 239)))\"},children:\"Fatto con \u2728 da leo.\"})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11i2dtx\",\"data-styles-preset\":\"zqIURpr0O\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-91046826-b395-475a-a623-78be4df1fbd2, rgb(239, 239, 239)))\"},children:\"Diverse Red Bull hanno aiutato.\"})});export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11i2dtx\",\"data-styles-preset\":\"zqIURpr0O\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63ac59f6-4baf-4847-ac01-85632fdf1989, rgb(153, 153, 153)))\"},children:\"diverse redbull hanno aiutato.\"})});export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-11i2dtx\",\"data-styles-preset\":\"zqIURpr0O\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-91046826-b395-475a-a623-78be4df1fbd2, rgb(239, 239, 239)))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kOmV5HZlL\"},nodeId:\"gAhf8ou2g\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qgn49e\",\"data-styles-preset\":\"D7V9jCWI3\",children:\"Privacy policy\"})}),\" | Tutti i diritti riservati\"]})});export const v13=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-11i2dtx\",\"data-styles-preset\":\"zqIURpr0O\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-91046826-b395-475a-a623-78be4df1fbd2, rgb(239, 239, 239)))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kOmV5HZlL\"},nodeId:\"gAhf8ou2g\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qgn49e\",\"data-styles-preset\":\"D7V9jCWI3\",children:\"Privacy policy\"})}),\" | Tutti i diritti riservati\"]})});\nexport const __FramerMetadata__ = {\"exports\":{\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (83b8097)\nimport*as localizedValues from\"./NRUWp3aCo-0.js\";const valuesByLocaleId={jkQKPnGqy:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ddd30d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,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/dDErIjQrJKB02NbVxmBo/7REp2Kcr8sfwb8GJFb6s/Bsl2HoQxS.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/fX7XiBbCmatv2zG4PJZ3/CrF0vmuosdJZra95V62q/HbNYWLQvW.js\";const cycleOrder=[\"urLiDeuJQ\",\"qmH85QNuX\",\"O07LWxham\",\"ywlgE6U7n\",\"LPcVOacwf\"];const serializationHash=\"framer-rnR9k\";const variantClassNames={LPcVOacwf:\"framer-v-1p2kfgc\",O07LWxham:\"framer-v-s827za\",qmH85QNuX:\"framer-v-fltgn1\",urLiDeuJQ:\"framer-v-1rg0stq\",ywlgE6U7n:\"framer-v-1cisjhw\"};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 humanReadableVariantMap={\"Cal.com\":\"LPcVOacwf\",Behance:\"O07LWxham\",Instagram:\"ywlgE6U7n\",Linkedin:\"qmH85QNuX\",Medium:\"urLiDeuJQ\"};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:\"urLiDeuJQ\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"urLiDeuJQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"qmH85QNuX\",\"O07LWxham\",\"ywlgE6U7n\",\"LPcVOacwf\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"LPcVOacwf\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"O07LWxham\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"qmH85QNuX\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"ywlgE6U7n\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1rg0stq\",className,classNames),\"data-framer-name\":\"Medium\",layoutDependency:layoutDependency,layoutId:\"urLiDeuJQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({LPcVOacwf:{\"data-framer-name\":\"Cal.com\"},O07LWxham:{\"data-framer-name\":\"Behance\"},qmH85QNuX:{\"data-framer-name\":\"Linkedin\"},ywlgE6U7n:{\"data-framer-name\":\"Instagram\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:143.5,intrinsicWidth:163.5,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||22)-0-19.30886850152905)/2)),pixelHeight:287,pixelWidth:327,src:\"https://framerusercontent.com/images/JSWwQadr3u4fNQLYyHUwBDqizk.png\"},className:\"framer-4682s\",\"data-framer-name\":\"medium_logo_icon_189223\",layoutDependency:layoutDependency,layoutId:\"Z580Uga8n\"}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1enbtw3\",\"data-framer-name\":\"Frame 78\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"MRg7vuvTP\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.421143\" width=\"16\" height=\"15.1579\" rx=\"1\" fill=\"white\"/>\\n<path d=\"M5.11583 11.3589C6.15443 11.3589 6.93339 10.9542 7.38057 10.405L6.51506 9.65355C6.16886 10.0437 5.73611 10.2316 5.14468 10.2316C3.96182 10.2316 3.24056 9.3356 3.24056 8.2517C3.24056 7.1678 3.96182 6.24287 5.11583 6.24287C5.64956 6.24287 6.09673 6.43075 6.45736 6.8065L7.30844 6.06945C6.76029 5.44801 6.09673 5.14452 5.11583 5.14452C3.26941 5.14452 2 6.54636 2 8.26615C2 9.97149 3.34154 11.3589 5.11583 11.3589ZM9.55876 11.3589C10.3521 11.3589 10.756 11.0265 10.9869 10.5207V11.2433H12.112V6.79205H10.9724V7.5002C10.7272 7.02328 10.3377 6.70534 9.55876 6.70534C8.33263 6.70534 7.36615 7.76033 7.36615 9.04656C7.36615 10.3328 8.33263 11.3589 9.55876 11.3589ZM8.52015 9.03211C8.52015 8.33841 9.01061 7.74588 9.74629 7.74588C10.5108 7.74588 10.9869 8.33841 10.9869 9.03211C10.9869 9.72581 10.4964 10.3039 9.74629 10.3039C9.01061 10.3183 8.52015 9.71135 8.52015 9.03211ZM12.8044 11.2433H13.9584V5H12.8044V11.2433Z\" fill=\"#141414\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/VmkKSKaKorQfH642ZUl62mNLI.png\"},className:\"framer-136fkmz\",\"data-framer-name\":\"behance_512\",layoutDependency:layoutDependency,layoutId:\"ZKmhXpSZ7\",...addPropertyOverrides({O07LWxham:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||22)-0-18)/2)),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/VmkKSKaKorQfH642ZUl62mNLI.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lzb10r\",\"data-styles-preset\":\"Bsl2HoQxS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://medium.com/@leomoschen\",nodeId:\"hyvWrG23s\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-h4np1l\",\"data-styles-preset\":\"HbNYWLQvW\",children:\"Medium\"})})})}),className:\"framer-1yjxblm\",\"data-framer-name\":\"Twitter\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hyvWrG23s\",style:{\"--extracted-r6o4lv\":\"var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LPcVOacwf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lzb10r\",\"data-styles-preset\":\"Bsl2HoQxS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://cal.com/leomos\",nodeId:\"hyvWrG23s\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-h4np1l\",\"data-styles-preset\":\"HbNYWLQvW\",children:\"Cal.com\"})})})})},O07LWxham:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lzb10r\",\"data-styles-preset\":\"Bsl2HoQxS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://behance.net/leomoschen\",nodeId:\"hyvWrG23s\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-h4np1l\",\"data-styles-preset\":\"HbNYWLQvW\",children:\"Behance\"})})})})},qmH85QNuX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lzb10r\",\"data-styles-preset\":\"Bsl2HoQxS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"linkedin.com/in/leomoschen\",nodeId:\"hyvWrG23s\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-h4np1l\",\"data-styles-preset\":\"HbNYWLQvW\",children:\"Linkedin\"})})})})},ywlgE6U7n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lzb10r\",\"data-styles-preset\":\"Bsl2HoQxS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"instagram.com/leomoschen\",nodeId:\"hyvWrG23s\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-h4np1l\",\"data-styles-preset\":\"HbNYWLQvW\",children:\"Instagram\"})})})})}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1lf7l5a\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:14,intrinsicWidth:14,layoutDependency:layoutDependency,layoutId:\"VZKyxpcWQ\",svg:'<svg width=\"14\" height=\"14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13 0c.531 0 1 .469 1 1.031V13c0 .563-.469 1-1 1H.969A.98.98 0 0 1 0 13V1.031C0 .47.438 0 .969 0H13ZM4.219 12V5.344H2.156V12H4.22ZM3.187 4.406c.657 0 1.188-.531 1.188-1.187S3.844 2 3.187 2A1.22 1.22 0 0 0 1.97 3.219c0 .656.531 1.187 1.218 1.187ZM12 12V8.344c0-1.781-.406-3.188-2.5-3.188-1 0-1.688.563-1.969 1.094H7.5v-.906H5.531V12h2.063V8.719C7.594 7.844 7.75 7 8.844 7c1.062 0 1.062 1 1.062 1.75V12H12Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1kp4ug2\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:15,intrinsicWidth:15,layoutDependency:layoutDependency,layoutId:\"PuUC8g3CF\",svg:'<svg width=\"15\" height=\"15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M8 3.406c1.969 0 3.594 1.625 3.594 3.594 0 2-1.625 3.594-3.594 3.594C6 10.594 4.406 9 4.406 7A3.594 3.594 0 0 1 8 3.406Zm0 5.938c1.281 0 2.313-1.031 2.313-2.344A2.307 2.307 0 0 0 8 4.687C6.687 4.688 5.656 5.72 5.656 7A2.34 2.34 0 0 0 8 9.344Zm4.563-6.063a.84.84 0 0 1-.844.844.84.84 0 0 1-.844-.844.84.84 0 0 1 .844-.844.84.84 0 0 1 .844.844Zm2.374.844c.063 1.156.063 4.625 0 5.781-.062 1.125-.312 2.094-1.124 2.938-.813.812-1.813 1.062-2.938 1.125-1.156.062-4.625.062-5.781 0-1.125-.063-2.094-.313-2.938-1.125C1.344 12 1.094 11.03 1.031 9.906.97 8.75.97 5.281 1.031 4.125 1.094 3 1.344 2 2.156 1.187 3 .375 3.97.125 5.094.063 6.25 0 9.719 0 10.875.063 12 .126 13 .376 13.813 1.188 14.624 2 14.874 3 14.937 4.126Zm-1.5 7c.376-.906.282-3.094.282-4.125 0-1 .094-3.188-.281-4.125-.25-.594-.72-1.094-1.313-1.313C11.187 1.188 9 1.282 8 1.282c-1.031 0-3.219-.095-4.125.28a2.41 2.41 0 0 0-1.344 1.313C2.156 3.813 2.25 6 2.25 7c0 1.031-.094 3.219.281 4.125a2.37 2.37 0 0 0 1.344 1.344c.906.375 3.094.281 4.125.281 1 0 3.188.094 4.125-.281.594-.25 1.094-.719 1.313-1.344Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rnR9k.framer-cry9bm, .framer-rnR9k .framer-cry9bm { display: block; }\",\".framer-rnR9k.framer-1rg0stq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rnR9k .framer-4682s { aspect-ratio: 1.1393728222996515 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); overflow: visible; position: relative; width: 22px; }\",\".framer-rnR9k .framer-1enbtw3 { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-rnR9k .framer-136fkmz { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-rnR9k .framer-1yjxblm { flex: none; height: 22px; position: relative; white-space: pre; width: auto; }\",\".framer-rnR9k .framer-1lf7l5a { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); position: relative; width: 14px; }\",\".framer-rnR9k .framer-1kp4ug2 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rnR9k.framer-1rg0stq { gap: 0px; } .framer-rnR9k.framer-1rg0stq > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-rnR9k.framer-1rg0stq > :first-child { margin-left: 0px; } .framer-rnR9k.framer-1rg0stq > :last-child { margin-right: 0px; } }\",\".framer-rnR9k.framer-v-fltgn1 .framer-1yjxblm, .framer-rnR9k.framer-v-1cisjhw .framer-1yjxblm, .framer-rnR9k.framer-v-1p2kfgc .framer-1yjxblm { order: 4; }\",\".framer-rnR9k.framer-v-fltgn1 .framer-1lf7l5a, .framer-rnR9k.framer-v-s827za .framer-136fkmz, .framer-rnR9k.framer-v-1cisjhw .framer-1kp4ug2, .framer-rnR9k.framer-v-1p2kfgc .framer-1enbtw3 { order: 0; }\",\".framer-rnR9k.framer-v-s827za .framer-1yjxblm { order: 3; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 22\n * @framerIntrinsicWidth 92.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"qmH85QNuX\":{\"layout\":[\"auto\",\"auto\"]},\"O07LWxham\":{\"layout\":[\"auto\",\"auto\"]},\"ywlgE6U7n\":{\"layout\":[\"auto\",\"auto\"]},\"LPcVOacwf\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCs_i3CA9B=withCSS(Component,css,\"framer-rnR9k\");export default FramerCs_i3CA9B;FramerCs_i3CA9B.displayName=\"Footer Social Link\";FramerCs_i3CA9B.defaultProps={height:22,width:92.5};addPropertyControls(FramerCs_i3CA9B,{variant:{options:[\"urLiDeuJQ\",\"qmH85QNuX\",\"O07LWxham\",\"ywlgE6U7n\",\"LPcVOacwf\"],optionTitles:[\"Medium\",\"Linkedin\",\"Behance\",\"Instagram\",\"Cal.com\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerCs_i3CA9B,[{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),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCs_i3CA9B\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"92.5\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qmH85QNuX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"O07LWxham\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ywlgE6U7n\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LPcVOacwf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"22\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Cs_i3CA9B.map", "let Component;\nvar Home_default = (React) => {\n  if (!Component) {\n    const HomeIcon = React.forwardRef(function HomeIcon2({\n      title,\n      titleId,\n      ...props\n    }, svgRef) {\n      return /* @__PURE__ */ React.createElement(\"svg\", Object.assign({\n        xmlns: \"http://www.w3.org/2000/svg\",\n        viewBox: \"0 0 24 24\",\n        fill: \"currentColor\",\n        \"aria-hidden\": \"true\",\n        \"data-slot\": \"icon\",\n        ref: svgRef,\n        \"aria-labelledby\": titleId\n      }, props), title ? /* @__PURE__ */ React.createElement(\"title\", {\n        id: titleId\n      }, title) : null, /* @__PURE__ */ React.createElement(\"path\", {\n        d: \"M11.47 3.841a.75.75 0 0 1 1.06 0l8.69 8.69a.75.75 0 1 0 1.06-1.061l-8.689-8.69a2.25 2.25 0 0 0-3.182 0l-8.69 8.69a.75.75 0 1 0 1.061 1.06l8.69-8.689Z\"\n      }), /* @__PURE__ */ React.createElement(\"path\", {\n        d: \"m12 5.432 8.159 8.159c.03.03.06.058.091.086v6.198c0 1.035-.84 1.875-1.875 1.875H15a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0-.75.75V21a.75.75 0 0 1-.75.75H5.625a1.875 1.875 0 0 1-1.875-1.875v-6.198a2.29 2.29 0 0 0 .091-.086L12 5.432Z\"\n      }));\n    });\n    Component = HomeIcon;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  Home_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/hero-icons/Home.js@0.0.28\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"AcademicCap\",\"AdjustmentsVertical\",\"ArchiveBox\",\"ArchiveBoxArrowDown\",\"ArchiveBoxXMark\",\"ArrowDown\",\"ArrowDownCircle\",\"ArrowDownLeft\",\"ArrowDownOnSquare\",\"ArrowDownRight\",\"ArrowDownTray\",\"ArrowLeft\",\"ArrowLeftCircle\",\"ArrowLeftOnRectangle\",\"ArrowLongDown\",\"ArrowLongLeft\",\"ArrowLongRight\",\"ArrowLongUp\",\"ArrowPath\",\"ArrowRight\",\"ArrowRightCircle\",\"ArrowSmallDown\",\"ArrowSmallLeft\",\"ArrowSmallRight\",\"ArrowSmallUp\",\"ArrowTrendingDown\",\"ArrowTrendingUp\",\"ArrowUp\",\"ArrowUpCircle\",\"ArrowUpLeft\",\"ArrowUpOnSquare\",\"ArrowUpOnSquareStack\",\"ArrowUpRight\",\"ArrowUpTray\",\"ArrowUturnDown\",\"ArrowUturnLeft\",\"ArrowUturnRight\",\"ArrowUturnUp\",\"ArrowsPointingIn\",\"ArrowsPointingOut\",\"ArrowsRightLeft\",\"ArrowsUpDown\",\"AtSymbol\",\"Backspace\",\"Backward\",\"Banknotes\",\"Bars2\",\"Bars3\",\"Bars3BottomLeft\",\"Bars3BottomRight\",\"Bars3CenterLeft\",\"Bars4\",\"BarsArrowDown\",\"BarsArrowUp\",\"Battery0\",\"Battery100\",\"Battery50\",\"Beaker\",\"Bell\",\"BellAlert\",\"BellSlash\",\"BellSnooze\",\"Bolt\",\"BoltSlash\",\"BookOpen\",\"Bookmark\",\"BookmarkSlash\",\"BookmarkSquare\",\"Briefcase\",\"BugAnt\",\"BuildingLibrary\",\"BuildingOffice\",\"BuildingOffice2\",\"BuildingStorefront\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarDays\",\"Camera\",\"ChartBar\",\"ChartBarSquare\",\"ChartPie\",\"ChatBubbleLeft\",\"ChatBubbleLeftRight\",\"ChatBubbleOvalLeft\",\"Check\",\"CheckBadge\",\"CheckCircle\",\"ChevronDoubleDown\",\"ChevronDoubleLeft\",\"ChevronDoubleRight\",\"ChevronDoubleUp\",\"ChevronDown\",\"ChevronLeft\",\"ChevronRight\",\"ChevronUp\",\"ChevronUpDown\",\"CircleStack\",\"Clipboard\",\"ClipboardDocument\",\"Clock\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CodeBracket\",\"CodeBracketSquare\",\"Cog\",\"Cog6Tooth\",\"Cog8Tooth\",\"CommandLine\",\"ComputerDesktop\",\"CpuChip\",\"CreditCard\",\"Cube\",\"CubeTransparent\",\"CurrencyBangladeshi\",\"CurrencyDollar\",\"CurrencyEuro\",\"CurrencyPound\",\"CurrencyRupee\",\"CurrencyYen\",\"CursorArrowRays\",\"CursorArrowRipple\",\"DevicePhoneMobile\",\"DeviceTablet\",\"Document\",\"DocumentArrowDown\",\"DocumentArrowUp\",\"DocumentChartBar\",\"DocumentCheck\",\"DocumentDuplicate\",\"DocumentMinus\",\"DocumentPlus\",\"DocumentText\",\"EllipsisHorizontal\",\"EllipsisVertical\",\"Envelope\",\"EnvelopeOpen\",\"ExclamationCircle\",\"ExclamationTriangle\",\"Eye\",\"EyeDropper\",\"EyeSlash\",\"FaceFrown\",\"FaceSmile\",\"Film\",\"FingerPrint\",\"Fire\",\"Flag\",\"Folder\",\"FolderArrowDown\",\"FolderMinus\",\"FolderOpen\",\"FolderPlus\",\"Forward\",\"Funnel\",\"Gif\",\"Gift\",\"GiftTop\",\"GlobeAlt\",\"GlobeAmericas\",\"GlobeAsiaAustralia\",\"GlobeEuropeAfrica\",\"HandRaised\",\"HandThumbDown\",\"HandThumbUp\",\"Hashtag\",\"Heart\",\"Home\",\"HomeModern\",\"Identification\",\"Inbox\",\"InboxArrowDown\",\"InboxStack\",\"InformationCircle\",\"Key\",\"Language\",\"Lifebuoy\",\"LightBulb\",\"Link\",\"ListBullet\",\"LockClosed\",\"LockOpen\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"Map\",\"MapPin\",\"Megaphone\",\"Microphone\",\"Minus\",\"MinusCircle\",\"MinusSmall\",\"Moon\",\"MusicalNote\",\"Newspaper\",\"NoSymbol\",\"PaintBrush\",\"PaperAirplane\",\"PaperClip\",\"Pause\",\"PauseCircle\",\"Pencil\",\"PencilSquare\",\"Phone\",\"PhoneArrowDownLeft\",\"PhoneArrowUpRight\",\"PhoneXMark\",\"Photo\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Plus\",\"PlusCircle\",\"PlusSmall\",\"Power\",\"PresentationChartBar\",\"Printer\",\"PuzzlePiece\",\"QrCode\",\"QuestionMarkCircle\",\"QueueList\",\"Radio\",\"ReceiptPercent\",\"ReceiptRefund\",\"RectangleGroup\",\"RectangleStack\",\"RocketLaunch\",\"Rss\",\"Scale\",\"Scissors\",\"Server\",\"ServerStack\",\"Share\",\"ShieldCheck\",\"ShieldExclamation\",\"ShoppingBag\",\"ShoppingCart\",\"Signal\",\"SignalSlash\",\"Sparkles\",\"SpeakerWave\",\"SpeakerXMark\",\"Square2Stack\",\"Square3Stack3D\",\"Squares2X2\",\"SquaresPlus\",\"Star\",\"Stop\",\"StopCircle\",\"Sun\",\"Swatch\",\"TableCells\",\"Tag\",\"Ticket\",\"Trash\",\"Trophy\",\"Truck\",\"Tv\",\"User\",\"UserCircle\",\"UserGroup\",\"UserMinus\",\"UserPlus\",\"Users\",\"Variable\",\"VideoCamera\",\"VideoCameraSlash\",\"ViewColumns\",\"ViewfinderCircle\",\"Wallet\",\"Wifi\",\"Window\",\"Wrench\",\"WrenchScrewdriver\",\"XCircle\",\"XMark\",\"index\"];const moduleBaseUrl=\"https://framer.com/m/hero-icons/\";const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * HERO\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.28`;const module=await import(/* webpackIgnore: true */iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/_jsx(NullState,{}):null;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/_jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Hero\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Hero site](https://heroicons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hero.map", "// Generated by Framer (83b8097)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Fetcher,getFonts,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,usePrefetch,usePreloadQuery,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const HeroFonts=getFonts(Hero);const cycleOrder=[\"mOIYeQk8T\",\"IsuJJ6Bbn\",\"EGDstVMZp\"];const serializationHash=\"framer-nHOTp\";const variantClassNames={EGDstVMZp:\"framer-v-1oy1i3o\",IsuJJ6Bbn:\"framer-v-164ii85\",mOIYeQk8T:\"framer-v-1jfaqnd\"};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 query=prefetch=>prefetch({cacheDuration:0,credentials:\"same-origin\",fallbackValue:undefined,resultKeyPath:\"items.0.track.albums.0.image\",resultOutputType:\"image\",url:`https://api.stats.fm/api/v1/users/leomoschen/streams/recent`});const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={bounce:.2,delay:3.5,duration:.6,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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 preload=async(prequery,prefetch,props)=>await Promise.all([query(prefetch)]);const preloadStatements={EGDstVMZp:preload,IsuJJ6Bbn:preload,mOIYeQk8T:preload};const useLoadingVariant=(variant,gestures,clearLoadingVariant,setGestureState,props)=>{const prequery=usePreloadQuery();const prefetch=usePrefetch();React.useEffect(()=>{var _gestures_variant;const promise=preloadStatements[variant];if(!promise||!(gestures===null||gestures===void 0?void 0:(_gestures_variant=gestures[variant])===null||_gestures_variant===void 0?void 0:_gestures_variant.loading))return;promise(prequery,prefetch,props).then(()=>clearLoadingVariant()).catch(()=>setGestureState({isError:true}));},[variant]);};const humanReadableVariantMap={\"Play (Phone)\":\"EGDstVMZp\",Desktop:\"mOIYeQk8T\",Phone:\"IsuJJ6Bbn\"};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:\"mOIYeQk8T\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mOIYeQk8T\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"EGDstVMZp\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();useLoadingVariant(baseVariant,undefined,clearLoadingGesture,setGestureState);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Fetcher,{disabled:isLoading,requests:[{cacheDuration:0,credentials:\"same-origin\",fallbackValue:undefined,resultKeyPath:\"items.0.track.albums.0.image\",resultOutputType:\"image\",url:`https://api.stats.fm/api/v1/users/leomoschen/streams/recent`}],children:fetchResult=>/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(fetchResult[0])},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1jfaqnd\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"mOIYeQk8T\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3,...style},variants:{IsuJJ6Bbn:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}},...addPropertyOverrides({EGDstVMZp:{\"data-framer-name\":\"Play (Phone)\"},IsuJJ6Bbn:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-kizb0r\",\"data-framer-appear-id\":\"kizb0r\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"jv3ZhzYqd\",optimized:true,style:{backgroundColor:\"rgba(0, 0, 0, 0.2)\"}}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1nts6tu-container\",\"data-framer-appear-id\":\"1nts6tu\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"n1EtrrjvL-container\",optimized:true,children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Play\",id:\"n1EtrrjvL\",layoutId:\"n1EtrrjvL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nHOTp.framer-xr167t, .framer-nHOTp .framer-xr167t { display: block; }\",\".framer-nHOTp.framer-1jfaqnd { height: 300px; position: relative; width: 400px; }\",\".framer-nHOTp .framer-kizb0r { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-nHOTp .framer-1nts6tu-container { flex: none; height: 34px; left: calc(50.00000000000002% - 33px / 2); position: absolute; top: calc(50.00000000000002% - 34px / 2); width: 33px; }\",\".framer-nHOTp.framer-v-1oy1i3o.framer-1jfaqnd { height: 400px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 300\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"IsuJJ6Bbn\":{\"layout\":[\"fixed\",\"fixed\"]},\"EGDstVMZp\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerl4izfkmg4=withCSS(Component,css,\"framer-nHOTp\");export default Framerl4izfkmg4;Framerl4izfkmg4.displayName=\"gdfgd\";Framerl4izfkmg4.defaultProps={height:300,width:400};addPropertyControls(Framerl4izfkmg4,{variant:{options:[\"mOIYeQk8T\",\"IsuJJ6Bbn\",\"EGDstVMZp\"],optionTitles:[\"Desktop\",\"Phone\",\"Play (Phone)\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerl4izfkmg4,[{explicitInter:true,fonts:[]},...HeroFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerl4izfkmg4\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IsuJJ6Bbn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EGDstVMZp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"300\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./l4izfkmg4.map", "// Generated by Framer (83b8097)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Fetcher,Floating,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,usePrefetch,usePreloadQuery,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import LocaleSelector from\"https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/UfMN9oeTJKQqVQHIwZ5z/LocaleSelector.js\";import StopScroll from\"https://framerusercontent.com/modules/9ajhXMTvNHa3o84QkAph/Xnul1hAdJn3YeKLXdbBc/StopScroll.js\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js\";import{withSpotifyLastTrack}from\"https://framerusercontent.com/modules/KIFCsOBq43HHyZ3jx6PE/G8vqmzy3GOWpJN5uGWfY/Link_last_song.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/vaj1U5GQFXf4ato7v2pz/43yQ7IJoSBHB5hCU4xXZ/bshAVwZPg.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/dDErIjQrJKB02NbVxmBo/7REp2Kcr8sfwb8GJFb6s/Bsl2HoQxS.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/jVJ6Couw9eDpYKz8urxP/yM2g9H0GawhkcVBHad5B/D7V9jCWI3.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/aL2rS5tlVZkUkSg5yoYB/TefX0mqC2fNBRLUOP4u9/DIZVDC5Jn.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/fX7XiBbCmatv2zG4PJZ3/CrF0vmuosdJZra95V62q/HbNYWLQvW.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ajCckQhJmsR248Bw6pCx/sz1UYBmRFKSocosP5uju/zJiAFA61T.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/6orhOndRtivDZzGZAeiF/O0UuGj0LOqzploNgG6M7/zqIURpr0O.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/DInVhOOsiym3Jz4GeGnd/YMTzBHryvlmWwikmACsO/NRUWp3aCo.js\";import FooterSocialLink from\"https://framerusercontent.com/modules/p4umcQ6EF4n7A1Bj4gFd/66DezcQMExbdBwd2fCdB/Cs_i3CA9B.js\";import Gdfgd from\"https://framerusercontent.com/modules/TOHwL4X7rbaBvHrJHE4Z/rae3jOroQKRickmssaG8/l4izfkmg4.js\";import Button from\"https://framerusercontent.com/modules/98TNua2seXgy58Fcago1/24S19XqFbje5fxkckwkI/oFNBPS1at.js\";const GdfgdFonts=getFonts(Gdfgd);const MotionDivWithSpotifyLastTrack=withSpotifyLastTrack(motion.div);const StopScrollFonts=getFonts(StopScroll);const MotionDivWithFX=withFX(motion.div);const ButtonFonts=getFonts(Button);const FooterSocialLinkFonts=getFonts(FooterSocialLink);const LocaleSelectorFonts=getFonts(LocaleSelector);const TimeDateFonts=getFonts(TimeDate);const cycleOrder=[\"EkZ98MmqV\",\"FOCOgd13u\",\"mVSvhZOxW\"];const serializationHash=\"framer-FVMDF\";const variantClassNames={EkZ98MmqV:\"framer-v-q72x09\",FOCOgd13u:\"framer-v-8jjsyy\",mVSvhZOxW:\"framer-v-hv9t72\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:.5,ease:[.7,-.35,.3,1.35],type:\"tween\"};const animation={opacity:0,rotate:-8,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,transition:transition2,x:-20,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:-8,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,x:-20,y:0};const query=prefetch=>prefetch({cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Ops...\",fallbackValue:\"Stealing Leo's data...\",resultKeyPath:\"items.0.track.name\",resultOutputType:\"string\",url:`https://api.stats.fm/api/v1/users/leomoschen/streams/recent`});const toString=value=>{return typeof value===\"string\"?value:String(value);};const query1=prefetch=>prefetch({cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Can't find it\",fallbackValue:\"This is real time\",resultKeyPath:\"items.0.track.artists.0.name\",resultOutputType:\"string\",url:`https://api.stats.fm/api/v1/users/leomoschen/streams/recent`});const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transformTemplate1=(_,t)=>`translateY(-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 preload=async(prequery,prefetch,props)=>await Promise.all([query(prefetch),query1(prefetch),query(prefetch),query1(prefetch)]);const preload1=async(prequery,prefetch,props)=>await Promise.all([query(prefetch),query1(prefetch)]);const preloadStatements={EkZ98MmqV:preload,FOCOgd13u:preload1,mVSvhZOxW:preload1};const useLoadingVariant=(variant,gestures,clearLoadingVariant,setGestureState,props)=>{const prequery=usePreloadQuery();const prefetch=usePrefetch();React.useEffect(()=>{var _gestures_variant;const promise=preloadStatements[variant];if(!promise||!(gestures===null||gestures===void 0?void 0:(_gestures_variant=gestures[variant])===null||_gestures_variant===void 0?void 0:_gestures_variant.loading))return;promise(prequery,prefetch,props).then(()=>clearLoadingVariant()).catch(()=>setGestureState({isError:true}));},[variant]);};const humanReadableVariantMap={Desktop:\"EkZ98MmqV\",Mobile:\"mVSvhZOxW\",Tablet:\"FOCOgd13u\"};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:\"EkZ98MmqV\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EkZ98MmqV\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"mVSvhZOxW\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"mVSvhZOxW\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"FOCOgd13u\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"FOCOgd13u\")return false;return true;};const isDisplayed4=()=>{if([\"FOCOgd13u\",\"mVSvhZOxW\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const componentViewport=useComponentViewport();useLoadingVariant(baseVariant,undefined,clearLoadingGesture,setGestureState);var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12;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-q72x09\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"EkZ98MmqV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-afb97292-18f9-440f-b246-9a920deed526, rgb(14, 14, 14))\",...style},...addPropertyOverrides({FOCOgd13u:{\"data-framer-name\":\"Tablet\"},mVSvhZOxW:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n5d00e\",\"data-framer-name\":\"Primary Footer Content Wrapper\",layoutDependency:layoutDependency,layoutId:\"HHvMAUVIA\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-plejld\",\"data-framer-name\":\"Image and Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"ABDpCc9vf\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-cumrql\",layoutDependency:layoutDependency,layoutId:\"k6E9f5Rl7\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7q055d\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"mqqMKUYMa\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:49,intrinsicWidth:369,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||605.5)-80-592)/2+0+0)+0+0+0+0+0+0),pixelHeight:98,pixelWidth:738,sizes:\"185px\",src:\"https://framerusercontent.com/images/hQXp5BVEjekpSsbDlQkapRDC8Ns.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/hQXp5BVEjekpSsbDlQkapRDC8Ns.png?scale-down-to=512 512w,https://framerusercontent.com/images/hQXp5BVEjekpSsbDlQkapRDC8Ns.png 738w\"},className:\"framer-1h1fx4v\",\"data-framer-name\":\"Logo_mio_white\",layoutDependency:layoutDependency,layoutId:\"dLv1IgISI\",...addPropertyOverrides({FOCOgd13u:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:49,intrinsicWidth:369,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||724)-48-649)/2+0+0)+0+324+0+0+0+0),pixelHeight:98,pixelWidth:738,sizes:\"185px\",src:\"https://framerusercontent.com/images/hQXp5BVEjekpSsbDlQkapRDC8Ns.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/hQXp5BVEjekpSsbDlQkapRDC8Ns.png?scale-down-to=512 512w,https://framerusercontent.com/images/hQXp5BVEjekpSsbDlQkapRDC8Ns.png 738w\"}},mVSvhZOxW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:49,intrinsicWidth:369,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-48-1168)/2+0+0)+0+587+0+0+0+0+0),pixelHeight:98,pixelWidth:738,sizes:\"185px\",src:\"https://framerusercontent.com/images/hQXp5BVEjekpSsbDlQkapRDC8Ns.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/hQXp5BVEjekpSsbDlQkapRDC8Ns.png?scale-down-to=512 512w,https://framerusercontent.com/images/hQXp5BVEjekpSsbDlQkapRDC8Ns.png 738w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-lzb10r\",\"data-styles-preset\":\"Bsl2HoQxS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-63ac59f6-4baf-4847-ac01-85632fdf1989, rgb(153, 153, 153)))\"},children:\"UX/UI Designer | C\"}),\"urrently crafting experiences @ \",/*#__PURE__*/_jsx(Link,{href:\"https://zuru.tech/\",nodeId:\"I355:4315;318:10300\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4o6wwu\",\"data-styles-preset\":\"zJiAFA61T\",children:\"ZURU\"})})]})}),className:\"framer-184qcc1\",\"data-framer-name\":\"Senior UX Designer, currently crafting experiences at Crosby.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I355:4315;318:10300\",style:{\"--extracted-1w3ko1f\":\"var(--token-63ac59f6-4baf-4847-ac01-85632fdf1989, rgb(153, 153, 153))\",\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hlnlr4\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"Mx1Q3TU8k\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(_Fragment,{children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:423,intrinsicWidth:420,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||605.5)-80-592)/2+0+0)+0+0+161+0+33),pixelHeight:423,pixelWidth:420,src:\"https://framerusercontent.com/images/cFyVtxRV0ob8sAIfi9kVMBz5bA.png\"},className:\"framer-hy2z2z\",\"data-framer-name\":\"image\",\"data-highlight\":true,draggable:\"false\",id:`${layoutId}-hy2z2z`,layoutDependency:layoutDependency,layoutId:\"HK3OSi3wk\",onMouseEnter:onMouseEnterizu9gt({overlay}),ref:ref2,...addPropertyOverrides({FOCOgd13u:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:423,intrinsicWidth:420,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||724)-48-649)/2+0+0)+0+324+0+0+-73),pixelHeight:423,pixelWidth:420,src:\"https://framerusercontent.com/images/cFyVtxRV0ob8sAIfi9kVMBz5bA.png\"}},mVSvhZOxW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:423,intrinsicWidth:420,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-48-1168)/2+0+0)+0+587+0+231+0+-41),pixelHeight:423,pixelWidth:420,src:\"https://framerusercontent.com/images/cFyVtxRV0ob8sAIfi9kVMBz5bA.png\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-hy2z2z`,offsetX:-42.4999911878258,offsetY:-140.22660652722698,onDismiss:overlay.hide,placement:\"right\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,...addPropertyOverrides({FOCOgd13u:{offsetX:65.4999911878258,offsetY:-151.22660652722698,placement:\"left\"},mVSvhZOxW:{offsetX:22.81247168139089,offsetY:38.96094843395986,placement:\"top\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-o4vfvw\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"Vcth_f562\",ref:ref3,role:\"dialog\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19kpc1h\",layoutDependency:layoutDependency,layoutId:\"JyYSNkUJ5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ny05l\",layoutDependency:layoutDependency,layoutId:\"qmW917Glp\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:11,borderBottomRightRadius:11,borderTopLeftRadius:11,borderTopRightRadius:11,boxShadow:\"0px 0.6021873017743928px 1.5656869846134214px -0.08333333333333333px rgba(0, 0, 0, 0.02605), 0px 2.288533303243457px 5.950186588432988px -0.16666666666666666px rgba(0, 0, 0, 0.06399), 0px 10px 26px -0.25px rgba(0, 0, 0, 0.2375)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\"},children:\"A secret just for you\u2026\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"1.4em\"},children:\"Right now, I'm listening to that hit\"})]}),className:\"framer-ulawpf\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"BeWXE6K3i\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sps9b5\",\"data-framer-name\":\"without override\",layoutDependency:layoutDependency,layoutId:\"sfTPpyAj9\",style:{backgroundColor:\"rgb(14, 14, 14)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"70px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||605.5)-80-592)/2+0+0)+0+0+161+0+33+-266.8+0+0+0+0+16+59.599999999999994+71.5,...addPropertyOverrides({FOCOgd13u:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||724)-48-649)/2+0+0)+0+324+0+0+-73+-267.8+0+0+0+0+16+59.599999999999994+71.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x0v5jx-container\",layoutDependency:layoutDependency,layoutId:\"GxDwIf3AB-container\",children:/*#__PURE__*/_jsx(Gdfgd,{height:\"100%\",id:\"GxDwIf3AB\",layoutId:\"GxDwIf3AB\",style:{height:\"100%\",width:\"100%\"},variant:\"IsuJJ6Bbn\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wtc4c0\",layoutDependency:layoutDependency,layoutId:\"HiD252C8n\",children:[/*#__PURE__*/_jsx(Fetcher,{disabled:isLoading,requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Ops...\",fallbackValue:\"Stealing Leo's data...\",resultKeyPath:\"items.0.track.name\",resultOutputType:\"string\",url:`https://api.stats.fm/api/v1/users/leomoschen/streams/recent`}],children:fetchResult=>/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Stealing Leo's data...\"})}),className:\"framer-13ximw4\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"ZGVJKNqxi\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:toString(fetchResult[0]),verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Fetcher,{disabled:isLoading,requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Can't find it\",fallbackValue:\"This is real time\",resultKeyPath:\"items.0.track.artists.0.name\",resultOutputType:\"string\",url:`https://api.stats.fm/api/v1/users/leomoschen/streams/recent`}],children:fetchResult1=>/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Just a second\"})}),className:\"framer-h4jfm2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uxww2mZDl\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:toString(fetchResult1[0]),verticalAlignment:\"top\",withExternalLayout:true})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithSpotifyLastTrack,{className:\"framer-9ro2eb\",\"data-framer-name\":\"with override\",layoutDependency:layoutDependency,layoutId:\"t4PP632zo\",style:{backgroundColor:\"rgb(14, 14, 14)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"70px\",...addPropertyOverrides({mVSvhZOxW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-48-1168)/2+0+0)+0+587+0+231+0+-41+-260.8+0+0+0+0+10+59.599999999999994+71.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cog0zx-container\",layoutDependency:layoutDependency,layoutId:\"N5xOqtLKD-container\",children:/*#__PURE__*/_jsx(Gdfgd,{height:\"100%\",id:\"N5xOqtLKD\",layoutId:\"N5xOqtLKD\",style:{height:\"100%\",width:\"100%\"},variant:\"IsuJJ6Bbn\",width:\"100%\",...addPropertyOverrides({mVSvhZOxW:{variant:\"EGDstVMZp\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w6inrs\",layoutDependency:layoutDependency,layoutId:\"Ru38rKiYd\",children:[/*#__PURE__*/_jsx(Fetcher,{disabled:isLoading,requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Ops...\",fallbackValue:\"Stealing Leo's data...\",resultKeyPath:\"items.0.track.name\",resultOutputType:\"string\",url:`https://api.stats.fm/api/v1/users/leomoschen/streams/recent`}],children:fetchResult2=>/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Stealing Leo's data...\"})}),className:\"framer-1yc288n\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"uhjjd6oJ7\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:toString(fetchResult2[0]),verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Fetcher,{disabled:isLoading,requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Can't find it\",fallbackValue:\"This is real time\",resultKeyPath:\"items.0.track.artists.0.name\",resultOutputType:\"string\",url:`https://api.stats.fm/api/v1/users/leomoschen/streams/recent`}],children:fetchResult3=>/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"This is real time\"})}),className:\"framer-1aia9h9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"V7UNpqhZS\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:toString(fetchResult3[0]),verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1pxlr9p\",\"data-framer-name\":\"Frame 79\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"EYFPtqg6_\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 59 21\"><path d=\"M 49.972 18.648 L 45.725 -1.725 L 0 -1.725 L 47.224 20.805 C 48.68 21.5 50.301 20.227 49.972 18.648 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10062494112,withExternalLayout:true,...addPropertyOverrides({FOCOgd13u:{svgContentId:12684146726}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-b05vlg\",\"data-framer-name\":\"Frame 79\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"u3cTYBCEr\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 59 19\"><path d=\"M 7.5 15.977 L 11.5 -1.523 L 59 -1.725 L 10 18.477 C 8.389 19.363 6.804 17.678 7.5 15.977 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10459323863,withExternalLayout:true,...addPropertyOverrides({mVSvhZOxW:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 59 19\"><path d=\"M 7.5 15.977 L 11.5 -1.523 L 54.539 -1.937 L 10 18.477 C 8.389 19.363 6.804 17.678 7.5 15.977 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10007725703}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hvem60-container\",layoutDependency:layoutDependency,layoutId:\"QdT5miV1U-container\",children:/*#__PURE__*/_jsx(StopScroll,{height:\"100%\",id:\"QdT5miV1U\",layoutId:\"QdT5miV1U\",toggle:true,width:\"100%\"})})})]})})})})});}})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lx84u7\",\"data-framer-name\":\"CTA and Links Wrapper\",layoutDependency:layoutDependency,layoutId:\"d1yKvXjQQ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aox4sj\",\"data-framer-name\":\"CTA\",layoutDependency:layoutDependency,layoutId:\"OMTTxGbqT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1ah1jas\",\"data-styles-preset\":\"DIZVDC5Jn\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, rgb(255, 255, 255)))\"},children:\"Think I\u2019d be a good fit for your team or project? Let\u2019s connect.\"})}),className:\"framer-9kw4xk\",\"data-framer-name\":\"Think I\u2019d be a good fit for your team or project? Let\u2019s connect.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I355:4315;318:10320\",style:{\"--extracted-a0htzi\":\"var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||605.5)-80-592)/2+0+0)+0+0+0+0+80,...addPropertyOverrides({FOCOgd13u:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||724)-48-649)/2+0+0)+0+0+0+0+0},mVSvhZOxW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-48-1168)/2+0+0)+0+0+0+0+0+64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12gc09w-container\",layoutDependency:layoutDependency,layoutId:\"z17HTjRzd-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"z17HTjRzd\",layoutId:\"z17HTjRzd\",style:{height:\"100%\"},variant:\"hie3pQjdD\",width:\"100%\"})})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-x2n103\",layoutDependency:layoutDependency,layoutId:\"iOQd63iM9\",style:{backgroundColor:\"rgb(51, 136, 255)\",opacity:0}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-161d9ji\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"v9FzUNkNU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-149ijw2\",\"data-framer-name\":\"Selected Projects Div\",layoutDependency:layoutDependency,layoutId:\"TOjUFpbEF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m8v0l6\",\"data-styles-preset\":\"bshAVwZPg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63ac59f6-4baf-4847-ac01-85632fdf1989, rgb(153, 153, 153)))\"},children:\"Selected projects\"})}),className:\"framer-pdav8e\",\"data-framer-name\":\"Selected projects\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ej3e9FjTI\",style:{\"--extracted-r6o4lv\":\"var(--token-63ac59f6-4baf-4847-ac01-85632fdf1989, rgb(153, 153, 153))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-60q68r\",\"data-framer-name\":\"Project Links\",layoutDependency:layoutDependency,layoutId:\"PUZ8tjZ0I\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lzb10r\",\"data-styles-preset\":\"Bsl2HoQxS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{pgipyJJtM:\"monk\"},unresolvedPathSlugs:{pgipyJJtM:{collectionId:\"uzEJkyKuV\",collectionItemId:\"zPR2pYHrP\"}},webPageId:\"LfkskGjEz\"},nodeId:\"n_KP4zPzj\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-h4np1l\",\"data-styles-preset\":\"HbNYWLQvW\",children:\"Monk \u2013 Get dressed easily\"})})})}),className:\"framer-12vylh6\",\"data-framer-name\":\"Crosby: POS Tool Launch\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"n_KP4zPzj\",style:{\"--extracted-r6o4lv\":\"var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue4=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lzb10r\",\"data-styles-preset\":\"Bsl2HoQxS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{pgipyJJtM:\"scalapay\"},unresolvedPathSlugs:{pgipyJJtM:{collectionId:\"uzEJkyKuV\",collectionItemId:\"uJy2QgCxv\"}},webPageId:\"LfkskGjEz\"},nodeId:\"FREWP4iah\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-h4np1l\",\"data-styles-preset\":\"HbNYWLQvW\",children:\"Scalapay \u2013 In-store payment process\"})})})}),className:\"framer-h9gruj\",\"data-framer-name\":\"Norman & Co: Scout Product Launch\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FREWP4iah\",style:{\"--extracted-r6o4lv\":\"var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, rgb(255, 255, 255))\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lzb10r\",\"data-styles-preset\":\"Bsl2HoQxS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{pgipyJJtM:\"budays-cabin\"},unresolvedPathSlugs:{pgipyJJtM:{collectionId:\"uzEJkyKuV\",collectionItemId:\"GA_qRfSaI\"}},webPageId:\"LfkskGjEz\"},nodeId:\"juzgTcyB7\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-h4np1l\",\"data-styles-preset\":\"HbNYWLQvW\",children:\"Buday's cabin \u2013 Chill out with a beer\"})})})}),className:\"framer-92eiyl\",\"data-framer-name\":\"Gardona: Online Store Redesign\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"juzgTcyB7\",style:{\"--extracted-r6o4lv\":\"var(--token-04222cdd-1f48-4f04-a627-47fc3619d496, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c9k87n\",\"data-framer-name\":\"Socials Div\",layoutDependency:layoutDependency,layoutId:\"M6GpfONgs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue6=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\",\"--framer-text-transform\":\"uppercase\"},children:\"links\"})}),className:\"framer-do0erg\",\"data-framer-name\":\"socials\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"nM6reANPk\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2xz0a8\",\"data-framer-name\":\"Social Links\",layoutDependency:layoutDependency,layoutId:\"PcBZqZOT2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19v0erq-container\",layoutDependency:layoutDependency,layoutId:\"RSYyu4bev-container\",children:/*#__PURE__*/_jsx(FooterSocialLink,{height:\"100%\",id:\"RSYyu4bev\",layoutId:\"RSYyu4bev\",variant:\"LPcVOacwf\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6d6was-container\",layoutDependency:layoutDependency,layoutId:\"djEZTYkfp-container\",children:/*#__PURE__*/_jsx(FooterSocialLink,{height:\"100%\",id:\"djEZTYkfp\",layoutId:\"djEZTYkfp\",variant:\"qmH85QNuX\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13rwaj2-container\",layoutDependency:layoutDependency,layoutId:\"Qh7xM7zjD-container\",children:/*#__PURE__*/_jsx(FooterSocialLink,{height:\"100%\",id:\"Qh7xM7zjD\",layoutId:\"Qh7xM7zjD\",variant:\"urLiDeuJQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cwc0o2-container\",layoutDependency:layoutDependency,layoutId:\"xUSQs1mjU-container\",children:/*#__PURE__*/_jsx(FooterSocialLink,{height:\"100%\",id:\"xUSQs1mjU\",layoutId:\"xUSQs1mjU\",variant:\"O07LWxham\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-b9yah3-container\",layoutDependency:layoutDependency,layoutId:\"FPMPsg9Bk-container\",children:/*#__PURE__*/_jsx(LocaleSelector,{caret:{color:\"rgb(0, 0, 0)\",size:12,type:\"default\"},fillColor:\"rgb(238, 238, 238)\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},height:\"100%\",icon:{color:\"rgb(0, 0, 0)\",size:18,type:\"default\"},id:\"FPMPsg9Bk\",layoutId:\"FPMPsg9Bk\",options:{focus:{color:\"rgb(0, 153, 255)\",offset:0,style:\"solid\",width:1},gap:5,title:true},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:10,radiusBottomLeft:10,radiusBottomRight:10,radiusPerConrner:false,radiusTopLeft:10,radiusTopRight:10,textColor:\"rgb(0, 0, 0)\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1htcanq\",\"data-framer-name\":\"Secondary footer\",layoutDependency:layoutDependency,layoutId:\"GG4qybWrF\",style:{backgroundColor:\"var(--token-ada77d2d-21cf-45b7-a2d8-f60157e05b01, rgb(30, 30, 30))\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-86z9z\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"hpjhFX1Hb\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-22zarx\",layoutDependency:layoutDependency,layoutId:\"qA8h_9vcW\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qw008m\",layoutDependency:layoutDependency,layoutId:\"QLTm_ds8p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue7=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11i2dtx\",\"data-styles-preset\":\"zqIURpr0O\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-91046826-b395-475a-a623-78be4df1fbd2, rgb(239, 239, 239)))\"},children:\"Made with \u2728 by leo.\"})}),className:\"framer-6hcs3u\",\"data-framer-name\":\"designed & built from the desk of devanta Ebison\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b_z9kdmcb\",style:{\"--extracted-r6o4lv\":\"var(--token-91046826-b395-475a-a623-78be4df1fbd2, rgb(239, 239, 239))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mVSvhZOxW:{children:(_getLocalizedValue8=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11i2dtx\",\"data-styles-preset\":\"zqIURpr0O\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-91046826-b395-475a-a623-78be4df1fbd2, rgb(239, 239, 239)))\"},children:\"Made with \u2728 by leo.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue9=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11i2dtx\",\"data-styles-preset\":\"zqIURpr0O\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-91046826-b395-475a-a623-78be4df1fbd2, rgb(239, 239, 239)))\"},children:\"A lot of redbulls helped too.\"})}),className:\"framer-jvkuk0\",\"data-framer-name\":\"designed & built from the desk of devanta Ebison\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wwoqTD891\",style:{\"--extracted-r6o4lv\":\"var(--token-91046826-b395-475a-a623-78be4df1fbd2, rgb(239, 239, 239))\",opacity:.5},variants:{mVSvhZOxW:{\"--extracted-r6o4lv\":\"var(--token-63ac59f6-4baf-4847-ac01-85632fdf1989, rgb(153, 153, 153))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mVSvhZOxW:{children:(_getLocalizedValue10=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11i2dtx\",\"data-styles-preset\":\"zqIURpr0O\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63ac59f6-4baf-4847-ac01-85632fdf1989, rgb(153, 153, 153)))\"},children:\"SOME redbulls helped too.\"})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oiwn8s\",layoutDependency:layoutDependency,layoutId:\"a3PlI5eas\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue11=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-11i2dtx\",\"data-styles-preset\":\"zqIURpr0O\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-91046826-b395-475a-a623-78be4df1fbd2, rgb(239, 239, 239)))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kOmV5HZlL\"},nodeId:\"gAhf8ou2g\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qgn49e\",\"data-styles-preset\":\"D7V9jCWI3\",children:\"privacy policy\"})}),\" | All rights reserved\"]})}),className:\"framer-43q3wx\",\"data-framer-name\":\"olio template \u2013 23\\xa9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gAhf8ou2g\",style:{\"--extracted-r6o4lv\":\"var(--token-91046826-b395-475a-a623-78be4df1fbd2, rgb(239, 239, 239))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mVSvhZOxW:{children:(_getLocalizedValue12=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-11i2dtx\",\"data-styles-preset\":\"zqIURpr0O\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-91046826-b395-475a-a623-78be4df1fbd2, rgb(239, 239, 239)))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kOmV5HZlL\"},nodeId:\"gAhf8ou2g\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qgn49e\",\"data-styles-preset\":\"D7V9jCWI3\",children:\"privacy policy\"})}),\" | All rights reserved\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5t6aig-container\",layoutDependency:layoutDependency,layoutId:\"nnbAiqEq2-container\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"var(--token-91046826-b395-475a-a623-78be4df1fbd2, rgb(239, 239, 239))\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"nnbAiqEq2\",layoutId:\"nnbAiqEq2\",monthFormat:\"long\",outputType:\"date\",showMinutes:true,showMonth:false,showSeconds:true,showWeekday:false,showYear:true,tabularFont:true,timeFormat:\"24h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11i2dtx\",\"data-styles-preset\":\"zqIURpr0O\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-91046826-b395-475a-a623-78be4df1fbd2, rgb(239, 239, 239)))\"},children:\"\\xa9\"})}),className:\"framer-p7003f\",\"data-framer-name\":\"olio template \u2013 23\\xa9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vP58ycUl8\",style:{\"--extracted-r6o4lv\":\"var(--token-91046826-b395-475a-a623-78be4df1fbd2, rgb(239, 239, 239))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mVSvhZOxW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11i2dtx\",\"data-styles-preset\":\"zqIURpr0O\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-91046826-b395-475a-a623-78be4df1fbd2, rgb(239, 239, 239)))\"},children:\"\\xa9\"})})}},baseVariant,gestureVariant)})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FVMDF.framer-1o9ovxf, .framer-FVMDF .framer-1o9ovxf { display: block; }\",\".framer-FVMDF.framer-q72x09 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-FVMDF .framer-n5d00e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-FVMDF .framer-plejld { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FVMDF .framer-cumrql { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 339px; }\",\".framer-FVMDF .framer-7q055d { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-FVMDF .framer-1h1fx4v { aspect-ratio: 7.530612244897959 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); overflow: visible; position: relative; width: 185px; }\",\".framer-FVMDF .framer-184qcc1, .framer-FVMDF .framer-9kw4xk { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-FVMDF .framer-1hlnlr4 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 371px; justify-content: center; overflow: visible; padding: 0px 48px 0px 0px; position: relative; width: 322px; }\",\".framer-FVMDF .framer-hy2z2z { aspect-ratio: 0.8679245283018868 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 338px); overflow: visible; position: relative; width: 293px; }\",\".framer-FVMDF .framer-o4vfvw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FVMDF .framer-19kpc1h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FVMDF .framer-ny05l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; width: min-content; }\",\".framer-FVMDF .framer-ulawpf, .framer-FVMDF .framer-p7003f { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-FVMDF .framer-1sps9b5 { align-content: center; align-items: center; cursor: crosshair; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 331px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FVMDF .framer-1x0v5jx-container, .framer-FVMDF .framer-cog0zx-container { flex: none; height: 70px; position: relative; width: 70px; }\",\".framer-FVMDF .framer-wtc4c0, .framer-FVMDF .framer-w6inrs { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; max-width: 328px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-FVMDF .framer-13ximw4, .framer-FVMDF .framer-h4jfm2, .framer-FVMDF .framer-1yc288n, .framer-FVMDF .framer-1aia9h9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-FVMDF .framer-9ro2eb { 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: 8px; position: relative; width: 331px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FVMDF .framer-1pxlr9p { flex: none; height: 21px; position: relative; width: 59px; }\",\".framer-FVMDF .framer-b05vlg { flex: none; height: 19px; position: relative; width: 59px; }\",\".framer-FVMDF .framer-hvem60-container, .framer-FVMDF .framer-b9yah3-container, .framer-FVMDF .framer-5t6aig-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-FVMDF .framer-1lx84u7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FVMDF .framer-1aox4sj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 140px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 601px; }\",\".framer-FVMDF .framer-12gc09w-container { flex: none; height: 44px; position: relative; width: auto; }\",\".framer-FVMDF .framer-x2n103 { flex: none; height: 1px; overflow: visible; position: relative; width: 41px; }\",\".framer-FVMDF .framer-161d9ji { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FVMDF .framer-149ijw2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 305px; }\",\".framer-FVMDF .framer-pdav8e { -webkit-user-select: none; flex: none; height: 19px; position: relative; user-select: none; white-space: pre-wrap; width: 220px; word-break: break-word; word-wrap: break-word; }\",\".framer-FVMDF .framer-60q68r { flex: none; height: 83px; overflow: visible; position: relative; width: 100%; }\",\".framer-FVMDF .framer-12vylh6 { -webkit-user-select: none; flex: none; height: auto; left: 0px; position: absolute; top: 0px; user-select: none; white-space: pre; width: auto; }\",\".framer-FVMDF .framer-h9gruj { -webkit-user-select: none; flex: none; height: auto; left: 0px; position: absolute; top: 49%; user-select: none; white-space: pre; width: auto; }\",\".framer-FVMDF .framer-92eiyl { -webkit-user-select: none; bottom: 1px; flex: none; height: auto; left: 0px; position: absolute; user-select: none; white-space: pre; width: auto; }\",\".framer-FVMDF .framer-c9k87n { flex: none; height: 95px; overflow: visible; position: relative; width: 214px; }\",\".framer-FVMDF .framer-do0erg { -webkit-user-select: none; flex: none; height: 19px; left: 0px; position: absolute; top: 0px; user-select: none; white-space: pre; width: 71px; }\",\".framer-FVMDF .framer-2xz0a8 { display: grid; flex: none; gap: 8px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, 100px); height: 52px; justify-content: start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 43px; width: 214px; }\",\".framer-FVMDF .framer-19v0erq-container, .framer-FVMDF .framer-6d6was-container, .framer-FVMDF .framer-13rwaj2-container, .framer-FVMDF .framer-1cwc0o2-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: fit-content; }\",\".framer-FVMDF .framer-1htcanq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FVMDF .framer-86z9z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1100px; }\",\".framer-FVMDF .framer-22zarx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FVMDF .framer-1qw008m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FVMDF .framer-6hcs3u, .framer-FVMDF .framer-jvkuk0 { -webkit-user-select: none; flex: none; height: 12px; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-FVMDF .framer-1oiwn8s { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-FVMDF .framer-43q3wx { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FVMDF.framer-q72x09, .framer-FVMDF .framer-n5d00e, .framer-FVMDF .framer-plejld, .framer-FVMDF .framer-cumrql, .framer-FVMDF .framer-7q055d, .framer-FVMDF .framer-1hlnlr4, .framer-FVMDF .framer-o4vfvw, .framer-FVMDF .framer-19kpc1h, .framer-FVMDF .framer-ny05l, .framer-FVMDF .framer-1sps9b5, .framer-FVMDF .framer-wtc4c0, .framer-FVMDF .framer-9ro2eb, .framer-FVMDF .framer-w6inrs, .framer-FVMDF .framer-1lx84u7, .framer-FVMDF .framer-1aox4sj, .framer-FVMDF .framer-161d9ji, .framer-FVMDF .framer-149ijw2, .framer-FVMDF .framer-1htcanq, .framer-FVMDF .framer-22zarx, .framer-FVMDF .framer-1qw008m, .framer-FVMDF .framer-1oiwn8s { gap: 0px; } .framer-FVMDF.framer-q72x09 > *, .framer-FVMDF .framer-19kpc1h > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-FVMDF.framer-q72x09 > :first-child, .framer-FVMDF .framer-plejld > :first-child, .framer-FVMDF .framer-7q055d > :first-child, .framer-FVMDF .framer-o4vfvw > :first-child, .framer-FVMDF .framer-19kpc1h > :first-child, .framer-FVMDF .framer-ny05l > :first-child, .framer-FVMDF .framer-wtc4c0 > :first-child, .framer-FVMDF .framer-w6inrs > :first-child, .framer-FVMDF .framer-1lx84u7 > :first-child, .framer-FVMDF .framer-1aox4sj > :first-child, .framer-FVMDF .framer-149ijw2 > :first-child, .framer-FVMDF .framer-1htcanq > :first-child { margin-top: 0px; } .framer-FVMDF.framer-q72x09 > :last-child, .framer-FVMDF .framer-plejld > :last-child, .framer-FVMDF .framer-7q055d > :last-child, .framer-FVMDF .framer-o4vfvw > :last-child, .framer-FVMDF .framer-19kpc1h > :last-child, .framer-FVMDF .framer-ny05l > :last-child, .framer-FVMDF .framer-wtc4c0 > :last-child, .framer-FVMDF .framer-w6inrs > :last-child, .framer-FVMDF .framer-1lx84u7 > :last-child, .framer-FVMDF .framer-1aox4sj > :last-child, .framer-FVMDF .framer-149ijw2 > :last-child, .framer-FVMDF .framer-1htcanq > :last-child { margin-bottom: 0px; } .framer-FVMDF .framer-n5d00e > * { margin: 0px; margin-left: calc(160px / 2); margin-right: calc(160px / 2); } .framer-FVMDF .framer-n5d00e > :first-child, .framer-FVMDF .framer-cumrql > :first-child, .framer-FVMDF .framer-1hlnlr4 > :first-child, .framer-FVMDF .framer-1sps9b5 > :first-child, .framer-FVMDF .framer-9ro2eb > :first-child, .framer-FVMDF .framer-161d9ji > :first-child, .framer-FVMDF .framer-22zarx > :first-child, .framer-FVMDF .framer-1qw008m > :first-child, .framer-FVMDF .framer-1oiwn8s > :first-child { margin-left: 0px; } .framer-FVMDF .framer-n5d00e > :last-child, .framer-FVMDF .framer-cumrql > :last-child, .framer-FVMDF .framer-1hlnlr4 > :last-child, .framer-FVMDF .framer-1sps9b5 > :last-child, .framer-FVMDF .framer-9ro2eb > :last-child, .framer-FVMDF .framer-161d9ji > :last-child, .framer-FVMDF .framer-22zarx > :last-child, .framer-FVMDF .framer-1qw008m > :last-child, .framer-FVMDF .framer-1oiwn8s > :last-child { margin-right: 0px; } .framer-FVMDF .framer-plejld > *, .framer-FVMDF .framer-o4vfvw > *, .framer-FVMDF .framer-1htcanq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-FVMDF .framer-cumrql > *, .framer-FVMDF .framer-1hlnlr4 > *, .framer-FVMDF .framer-1sps9b5 > *, .framer-FVMDF .framer-9ro2eb > *, .framer-FVMDF .framer-22zarx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-FVMDF .framer-7q055d > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-FVMDF .framer-ny05l > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-FVMDF .framer-wtc4c0 > *, .framer-FVMDF .framer-w6inrs > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-FVMDF .framer-1lx84u7 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-FVMDF .framer-1aox4sj > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-FVMDF .framer-161d9ji > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-FVMDF .framer-149ijw2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-FVMDF .framer-1qw008m > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-FVMDF .framer-1oiwn8s > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } }\",\".framer-FVMDF.framer-v-8jjsyy.framer-q72x09 { padding: 48px 0px 0px 0px; width: 810px; }\",\".framer-FVMDF.framer-v-8jjsyy .framer-n5d00e { align-content: center; align-items: center; flex-direction: column; gap: 64px; width: 100%; }\",\".framer-FVMDF.framer-v-8jjsyy .framer-plejld { flex-direction: row; gap: unset; justify-content: space-between; order: 1; width: 762px; }\",\".framer-FVMDF.framer-v-8jjsyy .framer-1hlnlr4 { gap: 0px; height: 265px; }\",\".framer-FVMDF.framer-v-8jjsyy .framer-hy2z2z, .framer-FVMDF.framer-v-hv9t72 .framer-22zarx { order: 0; }\",\".framer-FVMDF.framer-v-8jjsyy .framer-19kpc1h, .framer-FVMDF.framer-v-hv9t72 .framer-19kpc1h { align-content: flex-end; align-items: flex-end; }\",\".framer-FVMDF.framer-v-8jjsyy .framer-1lx84u7 { order: 0; width: 762px; }\",\".framer-FVMDF.framer-v-8jjsyy .framer-1aox4sj { flex-direction: row; gap: unset; height: min-content; justify-content: space-between; order: 0; width: 100%; }\",\".framer-FVMDF.framer-v-8jjsyy .framer-9kw4xk { width: 415px; }\",\".framer-FVMDF.framer-v-8jjsyy .framer-161d9ji { gap: 32px; justify-content: flex-start; order: 1; width: 100%; }\",\".framer-FVMDF.framer-v-8jjsyy .framer-149ijw2, .framer-FVMDF.framer-v-8jjsyy .framer-c9k87n { flex: 1 0 0px; width: 1px; }\",\".framer-FVMDF.framer-v-8jjsyy .framer-h9gruj { left: 0px; }\",\".framer-FVMDF.framer-v-8jjsyy .framer-b9yah3-container, .framer-FVMDF.framer-v-hv9t72 .framer-b9yah3-container { order: 2; }\",\".framer-FVMDF.framer-v-8jjsyy .framer-86z9z { width: 762px; }\",\".framer-FVMDF.framer-v-8jjsyy .framer-jvkuk0 { white-space: pre-wrap; width: 292px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FVMDF.framer-v-8jjsyy .framer-n5d00e, .framer-FVMDF.framer-v-8jjsyy .framer-plejld, .framer-FVMDF.framer-v-8jjsyy .framer-1hlnlr4, .framer-FVMDF.framer-v-8jjsyy .framer-1aox4sj, .framer-FVMDF.framer-v-8jjsyy .framer-161d9ji { gap: 0px; } .framer-FVMDF.framer-v-8jjsyy .framer-n5d00e > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-FVMDF.framer-v-8jjsyy .framer-n5d00e > :first-child { margin-top: 0px; } .framer-FVMDF.framer-v-8jjsyy .framer-n5d00e > :last-child { margin-bottom: 0px; } .framer-FVMDF.framer-v-8jjsyy .framer-plejld > *, .framer-FVMDF.framer-v-8jjsyy .framer-plejld > :first-child, .framer-FVMDF.framer-v-8jjsyy .framer-plejld > :last-child, .framer-FVMDF.framer-v-8jjsyy .framer-1aox4sj > *, .framer-FVMDF.framer-v-8jjsyy .framer-1aox4sj > :first-child, .framer-FVMDF.framer-v-8jjsyy .framer-1aox4sj > :last-child { margin: 0px; } .framer-FVMDF.framer-v-8jjsyy .framer-1hlnlr4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-FVMDF.framer-v-8jjsyy .framer-1hlnlr4 > :first-child, .framer-FVMDF.framer-v-8jjsyy .framer-161d9ji > :first-child { margin-left: 0px; } .framer-FVMDF.framer-v-8jjsyy .framer-1hlnlr4 > :last-child, .framer-FVMDF.framer-v-8jjsyy .framer-161d9ji > :last-child { margin-right: 0px; } .framer-FVMDF.framer-v-8jjsyy .framer-161d9ji > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",\".framer-FVMDF.framer-v-hv9t72.framer-q72x09 { padding: 48px 0px 0px 0px; width: 390px; }\",\".framer-FVMDF.framer-v-hv9t72 .framer-n5d00e { align-content: center; align-items: center; flex-direction: column; gap: 48px; width: 100%; }\",\".framer-FVMDF.framer-v-hv9t72 .framer-plejld { align-content: center; align-items: center; gap: 80px; justify-content: flex-start; order: 1; padding: 0px 24px 0px 24px; width: 100%; }\",\".framer-FVMDF.framer-v-hv9t72 .framer-1hlnlr4 { gap: 0px; height: 270px; }\",\".framer-FVMDF.framer-v-hv9t72 .framer-hy2z2z { height: 311px; width: var(--framer-aspect-ratio-supported, 270px); }\",\".framer-FVMDF.framer-v-hv9t72 .framer-ny05l { order: 0; padding: 10px; }\",\".framer-FVMDF.framer-v-hv9t72 .framer-9ro2eb { width: 320px; }\",\".framer-FVMDF.framer-v-hv9t72 .framer-b05vlg { order: 1; }\",\".framer-FVMDF.framer-v-hv9t72 .framer-1lx84u7 { gap: 64px; order: 0; padding: 0px 24px 0px 24px; width: 100%; }\",\".framer-FVMDF.framer-v-hv9t72 .framer-1aox4sj { height: min-content; justify-content: flex-start; order: 0; width: 100%; }\",\".framer-FVMDF.framer-v-hv9t72 .framer-161d9ji { flex-direction: column; gap: 48px; justify-content: flex-start; order: 1; width: 100%; }\",\".framer-FVMDF.framer-v-hv9t72 .framer-149ijw2, .framer-FVMDF.framer-v-hv9t72 .framer-c9k87n { width: 100%; }\",\".framer-FVMDF.framer-v-hv9t72 .framer-1htcanq { height: 80px; }\",\".framer-FVMDF.framer-v-hv9t72 .framer-86z9z { flex-direction: column; gap: 8px; justify-content: flex-start; padding: 0px 24px 0px 24px; width: 100%; }\",\".framer-FVMDF.framer-v-hv9t72 .framer-1oiwn8s { flex: none; justify-content: center; order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FVMDF.framer-v-hv9t72 .framer-n5d00e, .framer-FVMDF.framer-v-hv9t72 .framer-plejld, .framer-FVMDF.framer-v-hv9t72 .framer-1hlnlr4, .framer-FVMDF.framer-v-hv9t72 .framer-1lx84u7, .framer-FVMDF.framer-v-hv9t72 .framer-161d9ji, .framer-FVMDF.framer-v-hv9t72 .framer-86z9z { gap: 0px; } .framer-FVMDF.framer-v-hv9t72 .framer-n5d00e > *, .framer-FVMDF.framer-v-hv9t72 .framer-161d9ji > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-FVMDF.framer-v-hv9t72 .framer-n5d00e > :first-child, .framer-FVMDF.framer-v-hv9t72 .framer-plejld > :first-child, .framer-FVMDF.framer-v-hv9t72 .framer-1lx84u7 > :first-child, .framer-FVMDF.framer-v-hv9t72 .framer-161d9ji > :first-child, .framer-FVMDF.framer-v-hv9t72 .framer-86z9z > :first-child { margin-top: 0px; } .framer-FVMDF.framer-v-hv9t72 .framer-n5d00e > :last-child, .framer-FVMDF.framer-v-hv9t72 .framer-plejld > :last-child, .framer-FVMDF.framer-v-hv9t72 .framer-1lx84u7 > :last-child, .framer-FVMDF.framer-v-hv9t72 .framer-161d9ji > :last-child, .framer-FVMDF.framer-v-hv9t72 .framer-86z9z > :last-child { margin-bottom: 0px; } .framer-FVMDF.framer-v-hv9t72 .framer-plejld > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-FVMDF.framer-v-hv9t72 .framer-1hlnlr4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-FVMDF.framer-v-hv9t72 .framer-1hlnlr4 > :first-child { margin-left: 0px; } .framer-FVMDF.framer-v-hv9t72 .framer-1hlnlr4 > :last-child { margin-right: 0px; } .framer-FVMDF.framer-v-hv9t72 .framer-1lx84u7 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-FVMDF.framer-v-hv9t72 .framer-86z9z > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 605.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FOCOgd13u\":{\"layout\":[\"fixed\",\"auto\"]},\"mVSvhZOxW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNRUWp3aCo=withCSS(Component,css,\"framer-FVMDF\");export default FramerNRUWp3aCo;FramerNRUWp3aCo.displayName=\"Footer\";FramerNRUWp3aCo.defaultProps={height:605.5,width:1200};addPropertyControls(FramerNRUWp3aCo,{variant:{options:[\"EkZ98MmqV\",\"FOCOgd13u\",\"mVSvhZOxW\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerNRUWp3aCo,[{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\"},{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...GdfgdFonts,...StopScrollFonts,...ButtonFonts,...FooterSocialLinkFonts,...LocaleSelectorFonts,...TimeDateFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNRUWp3aCo\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"605.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FOCOgd13u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mVSvhZOxW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["fontStack", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "defaultProps", "Time", "props", "mergedProps", "color", "font", "tabularFont", "useLocaleCode", "getTextContent", "te", "timeoutRef", "pe", "updateCountdown", "node", "prev", "tick", "next", "textContent", "visible", "setIsVisible", "ye", "isCanvas", "RenderTarget", "ue", "Z", "p", "addPropertyControls", "ControlType", "withSpotifyLastTrack", "Component", "props", "p", "data", "spotifyLink", "window", "error", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NRUWp3aCo_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "u", "motion", "Link", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "__FramerMetadata__", "valuesByLocaleId", "NRUWp3aCo_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "SVG", "RichText2", "Link", "css", "FramerCs_i3CA9B", "withCSS", "Cs_i3CA9B_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Component", "Home_default", "React", "title", "titleId", "props", "svgRef", "iconKeys", "moduleBaseUrl", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "Home_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "defaultEvents", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "HeroFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "query", "prefetch", "toResponsiveImage", "value", "transition1", "transition2", "animation", "animation1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "preload", "prequery", "props", "preloadStatements", "useLoadingVariant", "gestures", "clearLoadingVariant", "setGestureState", "usePreloadQuery", "usePrefetch", "ue", "_gestures_variant", "promise", "humanReadableVariantMap", "getProps", "height", "id", "width", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Fetcher", "fetchResult", "u", "Image2", "getLoadingLazyAtYPosition", "cx", "ComponentViewportProvider", "css", "Framerl4izfkmg4", "withCSS", "l4izfkmg4_default", "addPropertyControls", "ControlType", "addFonts", "GdfgdFonts", "getFonts", "l4izfkmg4_default", "MotionDivWithSpotifyLastTrack", "withSpotifyLastTrack", "motion", "StopScrollFonts", "Component", "MotionDivWithFX", "withFX", "ButtonFonts", "oFNBPS1at_default", "FooterSocialLinkFonts", "Cs_i3CA9B_default", "LocaleSelectorFonts", "LocaleSelector_default", "TimeDateFonts", "Time", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "query", "prefetch", "toString", "value", "query1", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transformTemplate1", "_", "t", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "preload", "prequery", "props", "preload1", "preloadStatements", "useLoadingVariant", "gestures", "clearLoadingVariant", "setGestureState", "usePreloadQuery", "usePrefetch", "ue", "_gestures_variant", "promise", "humanReadableVariantMap", "getProps", "height", "id", "width", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterizu9gt", "overlay", "paginationInfo", "args", "ref1", "pe", "ref2", "ref3", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "getLocalizedValue", "Link", "l", "AnimatePresence", "Floating", "ComponentViewportProvider", "Fetcher", "fetchResult", "fetchResult1", "fetchResult2", "fetchResult3", "SVG", "css", "FramerNRUWp3aCo", "withCSS", "NRUWp3aCo_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
