{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js", "ssg:https://framerusercontent.com/modules/tHxdDp9A5rxEx95bvc4p/cCN965hmYkUR8DJoeaBw/Cstcr8c7x-0.js", "ssg:https://framerusercontent.com/modules/Gw0fGXP8fV1otObSwPno/7FJ3q7g6hcGHHCBXBEQV/lATIpNPKp.js", "ssg:https://framerusercontent.com/modules/tHxdDp9A5rxEx95bvc4p/cCN965hmYkUR8DJoeaBw/Cstcr8c7x.js", "ssg:https://framerusercontent.com/modules/wPCjM1lBtkmKWEvr7ZxR/KXjhOYNYop200CZ9EIhV/L7Ld68Ixt-0.js", "ssg:https://framerusercontent.com/modules/wPCjM1lBtkmKWEvr7ZxR/KXjhOYNYop200CZ9EIhV/L7Ld68Ixt.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}from\"framer\";import{useState,useEffect,useCallback}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;function useForceRender(){const[_,set]=useState(0);return useCallback(()=>set(v=>v+1),[]);}function formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showMinutes,showSeconds},timeFormat,monthFormat,localCode){const date=new Date;const onlyYearIsShown=!showWeekday&&!showMonth&&showYear;switch(outputType){case\"date\":return new Intl.DateTimeFormat(localCode,{weekday:showWeekday?\"long\":undefined,day:onlyYearIsShown?undefined:\"numeric\",month:showMonth?monthFormat:undefined,year:showYear?\"numeric\":undefined}).format(date);case\"time\":return new Intl.DateTimeFormat(localCode,{hour:\"numeric\",minute:showMinutes?\"numeric\":undefined,second:showSeconds&&showMinutes?\"numeric\":undefined,hour12:timeFormat===\"12h\"}).format(date);default:return new Intl.DateTimeFormat(localCode).format(date);}}/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const{outputType,fontFamily,fontSize,fontWeight,timeFormat,showYear,showMonth,showWeekday,showHours,showMinutes,showSeconds,monthFormat,color,font,tabularFont,alignment}=props;const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const render=useForceRender();const localCode=useLocaleCode();const textContent=formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showHours,showMinutes,showSeconds},timeFormat,monthFormat,localCode);useEffect(()=>{setIsVisible(true);// Don\u2019t want real time on Canvas\nif(isCanvas)return;const int=setInterval(()=>{render();});return()=>{clearInterval(int);};},[]);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{margin:0,padding:0,color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,visibility:visible?\"visible\":\"hidden\",...font,fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},children:textContent});}Time.defaultProps={height:20,width:140,outputType:\"time\",color:\"#999\",timeFormat:\"24h\",showYear:true,showMonth:true,showWeekday:true,showMinutes:true,showSeconds:true,monthFormat:\"long\",alignment:\"center\"};Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:Time.defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:Time.defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:Time.defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: Time.defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showSeconds,hidden:props=>props.outputType!==\"time\"||!props.showMinutes},font:{type:ControlType.Font,controls:\"extended\"},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true},color:{type:ControlType.Color,defaultValue:Time.defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"140\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TWFyY2VsbHVzLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Marcellus\", \"Marcellus Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75)))\"},children:\"Contacte\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TWFyY2VsbHVzLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Marcellus\", \"Marcellus Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75)))\"},children:\"Enlla\\xe7os R\\xe0pids\"})});export const v2=\"Inici\";export const v3=\"Sobre Nosaltres\";export const v4=\"Membres\";export const v5=\"Agenda\";export const v6=\"Ofertes Musicals\";export const v7=\"Contacte\";export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TWFyY2VsbHVzLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Marcellus\", \"Marcellus Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75)))\"},children:\"Xarxes Socials\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e1877f1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./lATIpNPKp-0.js\";const enabledGestures={iAVT7ORNe:{hover:true},StHQNhEf3:{hover:true},XTLIVmo42:{hover:true}};const cycleOrder=[\"StHQNhEf3\",\"TyQKsH0x7\",\"tA5RKNTbZ\",\"ymAtizGrS\",\"XTLIVmo42\",\"iAVT7ORNe\"];const serializationHash=\"framer-YZFst\";const variantClassNames={iAVT7ORNe:\"framer-v-cfshxs\",StHQNhEf3:\"framer-v-18cdc9y\",tA5RKNTbZ:\"framer-v-1scmvc7\",TyQKsH0x7:\"framer-v-54vxb3\",XTLIVmo42:\"framer-v-1bvve5q\",ymAtizGrS:\"framer-v-bg17tn\"};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 valuesByLocaleId={JeiG1TJRz:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Link - New Tab\":\"tA5RKNTbZ\",\"new tap\":\"iAVT7ORNe\",\"sin espacio\":\"XTLIVmo42\",Default:\"StHQNhEf3\",Link:\"ymAtizGrS\",Selected:\"TyQKsH0x7\"};const getProps=({height,id,link,tap,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,fTygCC59F:tap!==null&&tap!==void 0?tap:props.fTygCC59F,GNUG1wpDE:(_ref=title!==null&&title!==void 0?title:props.GNUG1wpDE)!==null&&_ref!==void 0?_ref:\"Playground\",nZyVRsMIS:link!==null&&link!==void 0?link:props.nZyVRsMIS,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"StHQNhEf3\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,GNUG1wpDE,fTygCC59F,nZyVRsMIS,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"StHQNhEf3\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapm09qx0=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(fTygCC59F){const res=await fTygCC59F(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:nZyVRsMIS,openInNewTab:false,smoothScroll:false,...addPropertyOverrides({iAVT7ORNe:{openInNewTab:true},tA5RKNTbZ:{openInNewTab:true},XTLIVmo42:{openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-18cdc9y\",className,classNames)} framer-xtnp9r`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"StHQNhEf3\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTapm09qx0,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"iAVT7ORNe-hover\":{\"data-framer-name\":undefined},\"StHQNhEf3-hover\":{\"data-framer-name\":undefined},\"XTLIVmo42-hover\":{\"data-framer-name\":undefined},iAVT7ORNe:{\"data-framer-name\":\"new tap\"},tA5RKNTbZ:{\"data-framer-name\":\"Link - New Tab\"},TyQKsH0x7:{\"data-framer-name\":\"Selected\"},XTLIVmo42:{\"data-framer-name\":\"sin espacio\"},ymAtizGrS:{\"data-framer-name\":\"Link\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNTAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(77, 77, 77)))\"},children:\"Playground\"})}),className:\"framer-140o30y\",fonts:[\"GF;Public Sans-500\"],layoutDependency:layoutDependency,layoutId:\"jzWormc1z\",style:{\"--extracted-tcooor\":\"var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(77, 77, 77))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},text:GNUG1wpDE,variants:{tA5RKNTbZ:{\"--extracted-r6o4lv\":\"var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(77, 77, 77))\"},TyQKsH0x7:{\"--extracted-tcooor\":\"var(--token-6bef2831-d541-489a-82bb-da4e27db4e2c, rgb(255, 255, 255))\"},ymAtizGrS:{\"--extracted-r6o4lv\":\"var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(77, 77, 77))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({tA5RKNTbZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(77, 77, 77)))\"},children:\"Playground\"})}),fonts:[\"Inter\"]},TyQKsH0x7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNTAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-6bef2831-d541-489a-82bb-da4e27db4e2c, rgb(255, 255, 255)))\"},children:\"Playground\"})})},ymAtizGrS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(77, 77, 77)))\"},children:\"Playground\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTMwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75)))\"},children:\"Playground\"})}),className:\"framer-1ox0t6z\",fonts:[\"GF;Ubuntu-300\"],layoutDependency:layoutDependency,layoutId:\"sSXO_9eQa\",style:{\"--extracted-tcooor\":\"var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:GNUG1wpDE,transformTemplate:transformTemplate1,variants:{tA5RKNTbZ:{\"--extracted-r6o4lv\":\"var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75))\"},TyQKsH0x7:{\"--extracted-tcooor\":\"var(--token-6bef2831-d541-489a-82bb-da4e27db4e2c, rgb(255, 255, 255))\"},ymAtizGrS:{\"--extracted-r6o4lv\":\"var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"StHQNhEf3-hover\":{transformTemplate:transformTemplate2},\"XTLIVmo42-hover\":{transformTemplate:transformTemplate2},tA5RKNTbZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTMwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75)))\"},children:\"Playground\"})})},TyQKsH0x7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTMwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-6bef2831-d541-489a-82bb-da4e27db4e2c, rgb(255, 255, 255)))\"},children:\"Playground\"})})},XTLIVmo42:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTMwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75)))\"},children:\"Playground\"})})},ymAtizGrS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTMwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75)))\"},children:\"Playground\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YZFst.framer-xtnp9r, .framer-YZFst .framer-xtnp9r { display: block; }\",\".framer-YZFst.framer-18cdc9y { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 6px 18px 6px 18px; position: relative; text-decoration: none; width: min-content; }\",\".framer-YZFst .framer-140o30y { flex: none; height: 20px; position: relative; white-space: pre; width: auto; }\",\".framer-YZFst .framer-1ox0t6z { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YZFst.framer-18cdc9y { gap: 0px; } .framer-YZFst.framer-18cdc9y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-YZFst.framer-18cdc9y > :first-child { margin-left: 0px; } .framer-YZFst.framer-18cdc9y > :last-child { margin-right: 0px; } }\",\".framer-YZFst.framer-v-1scmvc7.framer-18cdc9y, .framer-YZFst.framer-v-bg17tn.framer-18cdc9y { height: min-content; padding: 0px; }\",\".framer-YZFst.framer-v-1scmvc7 .framer-140o30y, .framer-YZFst.framer-v-bg17tn .framer-140o30y { height: auto; }\",\".framer-YZFst.framer-v-1bvve5q.framer-18cdc9y { padding: 4px; }\",\".framer-YZFst.framer-v-18cdc9y.hover .framer-1ox0t6z { top: 2px; }\",\".framer-YZFst.framer-v-1bvve5q.hover .framer-1ox0t6z { left: 49%; top: 2px; }\",\".framer-YZFst.framer-v-cfshxs.hover .framer-1ox0t6z { left: 49%; top: 38%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 111\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"TyQKsH0x7\":{\"layout\":[\"auto\",\"fixed\"]},\"tA5RKNTbZ\":{\"layout\":[\"auto\",\"auto\"]},\"ymAtizGrS\":{\"layout\":[\"auto\",\"auto\"]},\"XTLIVmo42\":{\"layout\":[\"auto\",\"fixed\"]},\"iAVT7ORNe\":{\"layout\":[\"auto\",\"fixed\"]},\"YEUftNl8o\":{\"layout\":[\"auto\",\"fixed\"]},\"rqmbOWugc\":{\"layout\":[\"auto\",\"fixed\"]},\"WEHUIHUTX\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"GNUG1wpDE\":\"title\",\"fTygCC59F\":\"tap\",\"nZyVRsMIS\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlATIpNPKp=withCSS(Component,css,\"framer-YZFst\");export default FramerlATIpNPKp;FramerlATIpNPKp.displayName=\"Nav Link Copy\";FramerlATIpNPKp.defaultProps={height:32,width:111};addPropertyControls(FramerlATIpNPKp,{variant:{options:[\"StHQNhEf3\",\"TyQKsH0x7\",\"tA5RKNTbZ\",\"ymAtizGrS\",\"XTLIVmo42\",\"iAVT7ORNe\"],optionTitles:[\"Default\",\"Selected\",\"Link - New Tab\",\"Link\",\"sin espacio\",\"new tap\"],title:\"Variant\",type:ControlType.Enum},GNUG1wpDE:{defaultValue:\"Playground\",displayTextArea:false,title:\"Title\",type:ControlType.String},fTygCC59F:{title:\"Tap\",type:ControlType.EventHandler},nZyVRsMIS:{title:\"Link\",type:ControlType.Link}});addFonts(FramerlATIpNPKp,[{explicitInter:true,fonts:[{family:\"Public Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5xg0pX189fg.woff2\",weight:\"500\"},{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Ubuntu\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzTsmaMH4V_gg.woff2\",weight:\"300\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlATIpNPKp\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"111\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"GNUG1wpDE\\\":\\\"title\\\",\\\"fTygCC59F\\\":\\\"tap\\\",\\\"nZyVRsMIS\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"TyQKsH0x7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"tA5RKNTbZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ymAtizGrS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"XTLIVmo42\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"iAVT7ORNe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"YEUftNl8o\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"rqmbOWugc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"WEHUIHUTX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"32\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lATIpNPKp.map", "// Generated by Framer (d2515d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js\";import*as localizedValues from\"./Cstcr8c7x-0.js\";import NavLinkCopy from\"https://framerusercontent.com/modules/Gw0fGXP8fV1otObSwPno/7FJ3q7g6hcGHHCBXBEQV/lATIpNPKp.js\";const NavLinkCopyFonts=getFonts(NavLinkCopy);const TimeDateFonts=getFonts(TimeDate);const cycleOrder=[\"LAZ0tza4Q\",\"SPtQPtSoF\"];const serializationHash=\"framer-c3CNe\";const variantClassNames={LAZ0tza4Q:\"framer-v-1bczulf\",SPtQPtSoF:\"framer-v-1xkydcz\"};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 valuesByLocaleId={JeiG1TJRz:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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(React.Fragment);const humanReadableVariantMap={Desktop:\"LAZ0tza4Q\",Mobile:\"SPtQPtSoF\"};const getProps=({_404,designer,emailCursor,facebook,height,home,id,instagram,page,telephoneCursor,width,youTube,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,AFe649ShZ:telephoneCursor!==null&&telephoneCursor!==void 0?telephoneCursor:props.AFe649ShZ,cPR6f93ZG:instagram!==null&&instagram!==void 0?instagram:props.cPR6f93ZG,gPgWUFa9z:page!==null&&page!==void 0?page:props.gPgWUFa9z,lPTkc7R8v:emailCursor!==null&&emailCursor!==void 0?emailCursor:props.lPTkc7R8v,Ml_sx0HaY:_404!==null&&_404!==void 0?_404:props.Ml_sx0HaY,twc15ZAh6:facebook!==null&&facebook!==void 0?facebook:props.twc15ZAh6,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"LAZ0tza4Q\",wTIF_D7kj:youTube!==null&&youTube!==void 0?youTube:props.wTIF_D7kj,xt2Xgpg4r:designer!==null&&designer!==void 0?designer:props.xt2Xgpg4r,yHcaRCJBm:home!==null&&home!==void 0?home:props.yHcaRCJBm};};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,AFe649ShZ,lPTkc7R8v,twc15ZAh6,wTIF_D7kj,cPR6f93ZG,xt2Xgpg4r,Ml_sx0HaY,gPgWUFa9z,yHcaRCJBm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LAZ0tza4Q\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2;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-1bczulf\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"LAZ0tza4Q\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({SPtQPtSoF:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5xmo11\",\"data-framer-name\":\"Contact and Social\",layoutDependency:layoutDependency,layoutId:\"IZTKWJudF\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x2dfy3\",\"data-framer-name\":\"Contact Me\",layoutDependency:layoutDependency,layoutId:\"zZRQn6cT5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TWFyY2VsbHVzLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Marcellus\", \"Marcellus Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75)))\"},children:\"Contacto\"})}),className:\"framer-drjslo\",fonts:[\"GF;Marcellus-regular\"],layoutDependency:layoutDependency,layoutId:\"qBUTT2R8x\",style:{\"--extracted-1of0zx5\":\"var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m252mu\",\"data-framer-name\":\"Phone and Email\",layoutDependency:layoutDependency,layoutId:\"NE42asy8N\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17cd4o6-container\",\"data-framer-cursor\":AFe649ShZ,\"data-framer-name\":\"telephone\",layoutDependency:layoutDependency,layoutId:\"x1OuvodJr-container\",name:\"telephone\",children:/*#__PURE__*/_jsx(NavLinkCopy,{GNUG1wpDE:\"+34 676 864 855\",height:\"100%\",id:\"x1OuvodJr\",layoutId:\"x1OuvodJr\",name:\"telephone\",nZyVRsMIS:\"tel: +34676864855\",variant:\"StHQNhEf3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-iscy13-container\",\"data-framer-cursor\":AFe649ShZ,\"data-framer-name\":\"telephone\",layoutDependency:layoutDependency,layoutId:\"ci843nZYN-container\",name:\"telephone\",children:/*#__PURE__*/_jsx(NavLinkCopy,{GNUG1wpDE:\"+34 660 410 355\",height:\"100%\",id:\"ci843nZYN\",layoutId:\"ci843nZYN\",name:\"telephone\",nZyVRsMIS:\"tel: +34660410355\",variant:\"StHQNhEf3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4pc3y3-container\",\"data-framer-cursor\":lPTkc7R8v,layoutDependency:layoutDependency,layoutId:\"qhqvWjBTA-container\",children:/*#__PURE__*/_jsx(NavLinkCopy,{GNUG1wpDE:\"amalthea.cdc@gmail.com\",height:\"100%\",id:\"qhqvWjBTA\",layoutId:\"qhqvWjBTA\",nZyVRsMIS:\"mailto: amalthea.cdc@gmail.com\",variant:\"StHQNhEf3\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qjpxjp\",\"data-framer-name\":\"Useful Links\",layoutDependency:layoutDependency,layoutId:\"Kz7SHUvM5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TWFyY2VsbHVzLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Marcellus\", \"Marcellus Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75)))\"},children:\"Enlaces R\\xe1pidos\"})}),className:\"framer-wac2xr\",fonts:[\"GF;Marcellus-regular\"],layoutDependency:layoutDependency,layoutId:\"NGF1zZZE0\",style:{\"--extracted-1of0zx5\":\"var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z58bpk\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"buLk32xbY\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Gq98jnb2X\"},implicitPathVariables:undefined},{href:{webPageId:\"Gq98jnb2X\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xp6xzx-container\",\"data-framer-cursor\":yHcaRCJBm,layoutDependency:layoutDependency,layoutId:\"QgR9LBI4X-container\",children:/*#__PURE__*/_jsx(NavLinkCopy,{GNUG1wpDE:(_getLocalizedValue=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Inicio\",height:\"100%\",id:\"QgR9LBI4X\",layoutId:\"QgR9LBI4X\",nZyVRsMIS:resolvedLinks[0],variant:\"StHQNhEf3\",width:\"100%\",...addPropertyOverrides({SPtQPtSoF:{nZyVRsMIS:resolvedLinks[1]}},baseVariant,gestureVariant)})})});}}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bwuprn7Zs\"},implicitPathVariables:undefined},{href:{webPageId:\"bwuprn7Zs\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9atgdf-container\",\"data-framer-cursor\":gPgWUFa9z,layoutDependency:layoutDependency,layoutId:\"YCpAhoDlL-container\",children:/*#__PURE__*/_jsx(NavLinkCopy,{GNUG1wpDE:(_getLocalizedValue=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Sobre Nosotros \",height:\"100%\",id:\"YCpAhoDlL\",layoutId:\"YCpAhoDlL\",nZyVRsMIS:resolvedLinks1[0],variant:\"StHQNhEf3\",width:\"100%\",...addPropertyOverrides({SPtQPtSoF:{nZyVRsMIS:resolvedLinks1[1]}},baseVariant,gestureVariant)})})});}}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VCFQPL8wx\"},implicitPathVariables:undefined},{href:{webPageId:\"VCFQPL8wx\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wjt0k0-container\",\"data-framer-cursor\":gPgWUFa9z,layoutDependency:layoutDependency,layoutId:\"KjDOrpwky-container\",children:/*#__PURE__*/_jsx(NavLinkCopy,{GNUG1wpDE:(_getLocalizedValue=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Miembros\",height:\"100%\",id:\"KjDOrpwky\",layoutId:\"KjDOrpwky\",nZyVRsMIS:resolvedLinks2[0],variant:\"StHQNhEf3\",width:\"100%\",...addPropertyOverrides({SPtQPtSoF:{nZyVRsMIS:resolvedLinks2[1]}},baseVariant,gestureVariant)})})});}}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yuCNY_41Y\"},implicitPathVariables:undefined},{href:{webPageId:\"yuCNY_41Y\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14bxr0m-container\",\"data-framer-cursor\":gPgWUFa9z,layoutDependency:layoutDependency,layoutId:\"OZYrGDRmF-container\",children:/*#__PURE__*/_jsx(NavLinkCopy,{GNUG1wpDE:(_getLocalizedValue=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Eventos\",height:\"100%\",id:\"OZYrGDRmF\",layoutId:\"OZYrGDRmF\",nZyVRsMIS:resolvedLinks3[0],variant:\"StHQNhEf3\",width:\"100%\",...addPropertyOverrides({SPtQPtSoF:{nZyVRsMIS:resolvedLinks3[1]}},baseVariant,gestureVariant)})})});}}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rGfBsLEBN\"},implicitPathVariables:undefined},{href:{webPageId:\"rGfBsLEBN\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d0j2fv-container\",\"data-framer-cursor\":gPgWUFa9z,layoutDependency:layoutDependency,layoutId:\"cdeETfTmQ-container\",children:/*#__PURE__*/_jsx(NavLinkCopy,{GNUG1wpDE:(_getLocalizedValue=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Ofertas Musicales \",height:\"100%\",id:\"cdeETfTmQ\",layoutId:\"cdeETfTmQ\",nZyVRsMIS:resolvedLinks4[0],variant:\"StHQNhEf3\",width:\"100%\",...addPropertyOverrides({SPtQPtSoF:{nZyVRsMIS:resolvedLinks4[1]}},baseVariant,gestureVariant)})})});}}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"EsyN7en5m\"},implicitPathVariables:undefined},{href:{webPageId:\"EsyN7en5m\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-er7a4u-container\",\"data-framer-cursor\":gPgWUFa9z,layoutDependency:layoutDependency,layoutId:\"q6DbmRLmM-container\",children:/*#__PURE__*/_jsx(NavLinkCopy,{GNUG1wpDE:(_getLocalizedValue=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Contacto\",height:\"100%\",id:\"q6DbmRLmM\",layoutId:\"q6DbmRLmM\",nZyVRsMIS:resolvedLinks5[0],variant:\"StHQNhEf3\",width:\"100%\",...addPropertyOverrides({SPtQPtSoF:{nZyVRsMIS:resolvedLinks5[1]}},baseVariant,gestureVariant)})})});}}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ZbTFsoE_I\"},implicitPathVariables:undefined},{href:{webPageId:\"ZbTFsoE_I\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e9j9lx-container\",\"data-framer-cursor\":Ml_sx0HaY,layoutDependency:layoutDependency,layoutId:\"K26HBDTEW-container\",children:/*#__PURE__*/_jsx(NavLinkCopy,{GNUG1wpDE:\"404 Page\",height:\"100%\",id:\"K26HBDTEW\",layoutId:\"K26HBDTEW\",nZyVRsMIS:resolvedLinks6[0],variant:\"StHQNhEf3\",width:\"100%\",...addPropertyOverrides({SPtQPtSoF:{nZyVRsMIS:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wxg3q2\",\"data-framer-name\":\"Social Links\",layoutDependency:layoutDependency,layoutId:\"x41QQy7vO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TWFyY2VsbHVzLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Marcellus\", \"Marcellus Placeholder\", serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75)))\"},children:\"Redes Sociales\"})}),className:\"framer-1a4luxh\",fonts:[\"GF;Marcellus-regular\"],layoutDependency:layoutDependency,layoutId:\"rhNASTYsR\",style:{\"--extracted-1of0zx5\":\"var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1urj64a\",\"data-framer-name\":\"Social\",layoutDependency:layoutDependency,layoutId:\"uq8YY1LjL\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fhql47-container\",\"data-framer-cursor\":twc15ZAh6,layoutDependency:layoutDependency,layoutId:\"muACsiepf-container\",children:/*#__PURE__*/_jsx(NavLinkCopy,{GNUG1wpDE:\"Facebook\",height:\"100%\",id:\"muACsiepf\",layoutId:\"muACsiepf\",nZyVRsMIS:\"https://www.facebook.com/CorDeCambraAmalthea\",variant:\"iAVT7ORNe\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mn4ldx-container\",\"data-framer-cursor\":wTIF_D7kj,layoutDependency:layoutDependency,layoutId:\"PmvsxSnJW-container\",children:/*#__PURE__*/_jsx(NavLinkCopy,{GNUG1wpDE:\"Youtube\",height:\"100%\",id:\"PmvsxSnJW\",layoutId:\"PmvsxSnJW\",nZyVRsMIS:\"https://www.youtube.com/@cordecambraamalthea\",variant:\"iAVT7ORNe\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vluuww-container\",\"data-framer-cursor\":cPR6f93ZG,layoutDependency:layoutDependency,layoutId:\"Rfiu5Mhqw-container\",children:/*#__PURE__*/_jsx(NavLinkCopy,{GNUG1wpDE:\"Instagram\",height:\"100%\",id:\"Rfiu5Mhqw\",layoutId:\"Rfiu5Mhqw\",nZyVRsMIS:\"https://www.instagram.com/cordecambraamalthea/\",variant:\"iAVT7ORNe\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h4fheq\",layoutDependency:layoutDependency,layoutId:\"pTv2upp4h\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ufbay8\",\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"h05AzhH2L\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTMwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75)))\"},children:\"\\xa9 Copyright\"})}),className:\"framer-dplkhl\",fonts:[\"GF;Ubuntu-300\"],layoutDependency:layoutDependency,layoutId:\"s_aq72ZRo\",style:{\"--extracted-r6o4lv\":\"var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gji7n7-container\",layoutDependency:layoutDependency,layoutId:\"h7x7hSgcO-container\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(77, 77, 77))\",font:{fontFamily:'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:300,letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",id:\"h7x7hSgcO\",layoutId:\"h7x7hSgcO\",monthFormat:\"long\",outputType:\"date\",showMinutes:true,showMonth:false,showSeconds:true,showWeekday:false,showYear:true,tabularFont:true,timeFormat:\"24h\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q2cwxu\",\"data-framer-name\":\"Credencias\",layoutDependency:layoutDependency,layoutId:\"slh8KDy2B\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTMwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75)))\"},children:\"Made by\"})}),className:\"framer-e4rykv\",\"data-framer-name\":\"Made by\",fonts:[\"GF;Ubuntu-300\"],layoutDependency:layoutDependency,layoutId:\"T8Yxq3T1j\",style:{\"--extracted-r6o4lv\":\"var(--token-065ba12e-27a4-4b87-bebe-68af3ab6d59f, rgb(69, 64, 75))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tp3izq-container\",\"data-framer-cursor\":xt2Xgpg4r,layoutDependency:layoutDependency,layoutId:\"vBCZ0ZebJ-container\",children:/*#__PURE__*/_jsx(NavLinkCopy,{GNUG1wpDE:\"DanijelKostadi\",height:\"100%\",id:\"vBCZ0ZebJ\",layoutId:\"vBCZ0ZebJ\",nZyVRsMIS:\"mailto:danijel.kostadinovski@gmail.com\",variant:\"XTLIVmo42\",width:\"100%\"})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-c3CNe.framer-3u6p9h, .framer-c3CNe .framer-3u6p9h { display: block; }\",\".framer-c3CNe.framer-1bczulf { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 192px; height: 408px; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1152px; }\",\".framer-c3CNe .framer-5xmo11 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c3CNe .framer-1x2dfy3, .framer-c3CNe .framer-1qjpxjp, .framer-c3CNe .framer-wxg3q2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-c3CNe .framer-drjslo, .framer-c3CNe .framer-wac2xr, .framer-c3CNe .framer-1a4luxh, .framer-c3CNe .framer-dplkhl, .framer-c3CNe .framer-e4rykv { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-c3CNe .framer-1m252mu, .framer-c3CNe .framer-z58bpk, .framer-c3CNe .framer-1urj64a { 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-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c3CNe .framer-17cd4o6-container, .framer-c3CNe .framer-iscy13-container, .framer-c3CNe .framer-4pc3y3-container, .framer-c3CNe .framer-1xp6xzx-container, .framer-c3CNe .framer-9atgdf-container, .framer-c3CNe .framer-wjt0k0-container, .framer-c3CNe .framer-14bxr0m-container, .framer-c3CNe .framer-1d0j2fv-container, .framer-c3CNe .framer-er7a4u-container, .framer-c3CNe .framer-1e9j9lx-container, .framer-c3CNe .framer-fhql47-container, .framer-c3CNe .framer-1mn4ldx-container, .framer-c3CNe .framer-vluuww-container, .framer-c3CNe .framer-gji7n7-container, .framer-c3CNe .framer-tp3izq-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-c3CNe .framer-1h4fheq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-c3CNe .framer-ufbay8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-c3CNe .framer-q2cwxu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-c3CNe.framer-1bczulf, .framer-c3CNe .framer-5xmo11, .framer-c3CNe .framer-1x2dfy3, .framer-c3CNe .framer-1m252mu, .framer-c3CNe .framer-1qjpxjp, .framer-c3CNe .framer-z58bpk, .framer-c3CNe .framer-wxg3q2, .framer-c3CNe .framer-1urj64a, .framer-c3CNe .framer-ufbay8, .framer-c3CNe .framer-q2cwxu { gap: 0px; } .framer-c3CNe.framer-1bczulf > * { margin: 0px; margin-bottom: calc(192px / 2); margin-top: calc(192px / 2); } .framer-c3CNe.framer-1bczulf > :first-child, .framer-c3CNe .framer-1x2dfy3 > :first-child, .framer-c3CNe .framer-1m252mu > :first-child, .framer-c3CNe .framer-1qjpxjp > :first-child, .framer-c3CNe .framer-z58bpk > :first-child, .framer-c3CNe .framer-wxg3q2 > :first-child, .framer-c3CNe .framer-1urj64a > :first-child { margin-top: 0px; } .framer-c3CNe.framer-1bczulf > :last-child, .framer-c3CNe .framer-1x2dfy3 > :last-child, .framer-c3CNe .framer-1m252mu > :last-child, .framer-c3CNe .framer-1qjpxjp > :last-child, .framer-c3CNe .framer-z58bpk > :last-child, .framer-c3CNe .framer-wxg3q2 > :last-child, .framer-c3CNe .framer-1urj64a > :last-child { margin-bottom: 0px; } .framer-c3CNe .framer-5xmo11 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-c3CNe .framer-5xmo11 > :first-child, .framer-c3CNe .framer-ufbay8 > :first-child, .framer-c3CNe .framer-q2cwxu > :first-child { margin-left: 0px; } .framer-c3CNe .framer-5xmo11 > :last-child, .framer-c3CNe .framer-ufbay8 > :last-child, .framer-c3CNe .framer-q2cwxu > :last-child { margin-right: 0px; } .framer-c3CNe .framer-1x2dfy3 > *, .framer-c3CNe .framer-1qjpxjp > *, .framer-c3CNe .framer-wxg3q2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-c3CNe .framer-1m252mu > *, .framer-c3CNe .framer-z58bpk > *, .framer-c3CNe .framer-1urj64a > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-c3CNe .framer-ufbay8 > *, .framer-c3CNe .framer-q2cwxu > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-c3CNe.framer-v-1xkydcz.framer-1bczulf { gap: 96px; height: min-content; width: 390px; }\",\".framer-c3CNe.framer-v-1xkydcz .framer-5xmo11 { flex: none; flex-direction: column; gap: 96px; height: min-content; }\",\".framer-c3CNe.framer-v-1xkydcz .framer-1x2dfy3, .framer-c3CNe.framer-v-1xkydcz .framer-1qjpxjp, .framer-c3CNe.framer-v-1xkydcz .framer-wxg3q2 { flex: none; width: 100%; }\",\".framer-c3CNe.framer-v-1xkydcz .framer-1h4fheq { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-c3CNe.framer-v-1xkydcz.framer-1bczulf, .framer-c3CNe.framer-v-1xkydcz .framer-5xmo11, .framer-c3CNe.framer-v-1xkydcz .framer-1h4fheq { gap: 0px; } .framer-c3CNe.framer-v-1xkydcz.framer-1bczulf > *, .framer-c3CNe.framer-v-1xkydcz .framer-5xmo11 > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-c3CNe.framer-v-1xkydcz.framer-1bczulf > :first-child, .framer-c3CNe.framer-v-1xkydcz .framer-5xmo11 > :first-child, .framer-c3CNe.framer-v-1xkydcz .framer-1h4fheq > :first-child { margin-top: 0px; } .framer-c3CNe.framer-v-1xkydcz.framer-1bczulf > :last-child, .framer-c3CNe.framer-v-1xkydcz .framer-5xmo11 > :last-child, .framer-c3CNe.framer-v-1xkydcz .framer-1h4fheq > :last-child { margin-bottom: 0px; } .framer-c3CNe.framer-v-1xkydcz .framer-1h4fheq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 408\n * @framerIntrinsicWidth 1152\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1200px\",null,null]},\"SPtQPtSoF\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerVariables {\"AFe649ShZ\":\"telephoneCursor\",\"lPTkc7R8v\":\"emailCursor\",\"twc15ZAh6\":\"facebook\",\"wTIF_D7kj\":\"youTube\",\"cPR6f93ZG\":\"instagram\",\"xt2Xgpg4r\":\"designer\",\"Ml_sx0HaY\":\"_404\",\"gPgWUFa9z\":\"page\",\"yHcaRCJBm\":\"home\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCstcr8c7x=withCSS(Component,css,\"framer-c3CNe\");export default FramerCstcr8c7x;FramerCstcr8c7x.displayName=\"Text Footer\";FramerCstcr8c7x.defaultProps={height:408,width:1152};addPropertyControls(FramerCstcr8c7x,{variant:{options:[\"LAZ0tza4Q\",\"SPtQPtSoF\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},AFe649ShZ:{title:\"Telephone Cursor\",type:ControlType.CustomCursor},lPTkc7R8v:{title:\"Email Cursor\",type:ControlType.CustomCursor},twc15ZAh6:{title:\"Facebook\",type:ControlType.CustomCursor},wTIF_D7kj:{title:\"YouTube\",type:ControlType.CustomCursor},cPR6f93ZG:{title:\"Instagram\",type:ControlType.CustomCursor},xt2Xgpg4r:{title:\"Designer\",type:ControlType.CustomCursor},Ml_sx0HaY:{title:\"404\",type:ControlType.CustomCursor},gPgWUFa9z:{title:\"Page \",type:ControlType.CustomCursor},yHcaRCJBm:{title:\"Home\",type:ControlType.CustomCursor}});addFonts(FramerCstcr8c7x,[{explicitInter:true,fonts:[{family:\"Marcellus\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/marcellus/v13/wEO_EBrOk8hQLDvIAF8FVPAL3EsHiA.woff2\",weight:\"400\"},{family:\"Ubuntu\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzTsmaMH4V_gg.woff2\",weight:\"300\"}]},...NavLinkCopyFonts,...TimeDateFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCstcr8c7x\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1152\",\"framerVariables\":\"{\\\"AFe649ShZ\\\":\\\"telephoneCursor\\\",\\\"lPTkc7R8v\\\":\\\"emailCursor\\\",\\\"twc15ZAh6\\\":\\\"facebook\\\",\\\"wTIF_D7kj\\\":\\\"youTube\\\",\\\"cPR6f93ZG\\\":\\\"instagram\\\",\\\"xt2Xgpg4r\\\":\\\"designer\\\",\\\"Ml_sx0HaY\\\":\\\"_404\\\",\\\"gPgWUFa9z\\\":\\\"page\\\",\\\"yHcaRCJBm\\\":\\\"home\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"SPtQPtSoF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\",\"framerIntrinsicHeight\":\"408\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Cstcr8c7x.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTMwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6bef2831-d541-489a-82bb-da4e27db4e2c, rgb(255, 255, 255)))\"},children:\"Truca'ns\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTMwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6bef2831-d541-489a-82bb-da4e27db4e2c, rgb(255, 255, 255)))\"},children:\"Envia'ns un correu\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTMwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6bef2831-d541-489a-82bb-da4e27db4e2c, rgb(255, 255, 255)))\"},children:\"Segueix-nos\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTMwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6bef2831-d541-489a-82bb-da4e27db4e2c, rgb(255, 255, 255)))\"},children:\"Visita la nostra p\\xe0gina\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (44d7d2d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as localizedValues from\"./L7Ld68Ixt-0.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"VjOc1ANZZ\",\"EVlCWU04i\",\"gXn3dqA3f\",\"oXOZuPjpO\",\"XxCvIkvG2\",\"ga9po38Sp\",\"K04vzMBjL\",\"pkpdwwBUf\"];const serializationHash=\"framer-NotXv\";const variantClassNames={EVlCWU04i:\"framer-v-3o8c7r\",ga9po38Sp:\"framer-v-4fqg5p\",gXn3dqA3f:\"framer-v-1dq6adl\",K04vzMBjL:\"framer-v-7gcz97\",oXOZuPjpO:\"framer-v-gjtdag\",pkpdwwBUf:\"framer-v-ptuqe8\",VjOc1ANZZ:\"framer-v-1pdx84u\",XxCvIkvG2:\"framer-v-doyerg\"};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 valuesByLocaleId={JeiG1TJRz:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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(React.Fragment);const humanReadableVariantMap={\"Siguenos FB \":\"pkpdwwBUf\",\"Siguenos IN\":\"oXOZuPjpO\",\"Siguenos YT\":\"K04vzMBjL\",Designer:\"ga9po38Sp\",Email:\"gXn3dqA3f\",Follow:\"EVlCWU04i\",Llamanos:\"VjOc1ANZZ\",Visita:\"XxCvIkvG2\"};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:\"VjOc1ANZZ\"};};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:\"VjOc1ANZZ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"EVlCWU04i\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5;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.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1pdx84u\",className,classNames),\"data-framer-name\":\"Llamanos\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"VjOc1ANZZ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:\"blur(5px)\",backgroundColor:\"var(--token-8ec846b1-b854-4197-9f91-81fdc35f99d3, rgb(200, 163, 74))\",borderBottomLeftRadius:96,borderBottomRightRadius:96,borderTopLeftRadius:96,borderTopRightRadius:96,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.1)\",WebkitBackdropFilter:\"blur(5px)\",...style},...addPropertyOverrides({EVlCWU04i:{\"data-framer-name\":\"Follow\"},ga9po38Sp:{\"data-framer-name\":\"Designer\"},gXn3dqA3f:{\"data-framer-name\":\"Email\"},K04vzMBjL:{\"data-framer-name\":\"Siguenos YT\"},oXOZuPjpO:{\"data-framer-name\":\"Siguenos IN\"},pkpdwwBUf:{\"data-framer-name\":\"Siguenos FB \"},XxCvIkvG2:{\"data-framer-name\":\"Visita\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xyg8h4-container\",layoutDependency:layoutDependency,layoutId:\"Eg2vMzdqr-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-83fd0f07-ae5f-4e8d-9da0-949463d4d0c9, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"music\",iconSelection:\"Phone\",id:\"Eg2vMzdqr\",layoutId:\"Eg2vMzdqr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\",...addPropertyOverrides({EVlCWU04i:{iconSelection:\"MusicNoteSimple\"},ga9po38Sp:{iconSearch:\"paint\",selectByList:false},gXn3dqA3f:{iconSearch:\"envelop\",selectByList:false},K04vzMBjL:{iconSearch:\"youtube\",selectByList:false},oXOZuPjpO:{iconSearch:\"instagram\",selectByList:false},pkpdwwBUf:{iconSearch:\"facebook\",selectByList:false},XxCvIkvG2:{iconSearch:\"browsers\",selectByList:false}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTMwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6bef2831-d541-489a-82bb-da4e27db4e2c, rgb(255, 255, 255)))\"},children:\"Llamanos\"})}),className:\"framer-1qn1vb6\",fonts:[\"GF;Ubuntu-300\"],layoutDependency:layoutDependency,layoutId:\"dQh80oGFv\",style:{\"--extracted-r6o4lv\":\"var(--token-6bef2831-d541-489a-82bb-da4e27db4e2c, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ga9po38Sp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTMwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6bef2831-d541-489a-82bb-da4e27db4e2c, rgb(255, 255, 255)))\"},children:\"Great Designer\"})})},gXn3dqA3f:{children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTMwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6bef2831-d541-489a-82bb-da4e27db4e2c, rgb(255, 255, 255)))\"},children:\"Mandanos un correo\"})})},K04vzMBjL:{children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTMwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6bef2831-d541-489a-82bb-da4e27db4e2c, rgb(255, 255, 255)))\"},children:\"Siguenos\"})})},oXOZuPjpO:{children:(_getLocalizedValue3=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTMwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6bef2831-d541-489a-82bb-da4e27db4e2c, rgb(255, 255, 255)))\"},children:\"Siguenos\"})})},pkpdwwBUf:{children:(_getLocalizedValue4=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTMwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6bef2831-d541-489a-82bb-da4e27db4e2c, rgb(255, 255, 255)))\"},children:\"Siguenos\"})})},XxCvIkvG2:{children:(_getLocalizedValue5=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTMwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6bef2831-d541-489a-82bb-da4e27db4e2c, rgb(255, 255, 255)))\"},children:\"Visita nuestra pagina\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NotXv.framer-opt0na, .framer-NotXv .framer-opt0na { display: block; }\",\".framer-NotXv.framer-1pdx84u { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 12px 24px 12px 24px; position: relative; width: min-content; }\",\".framer-NotXv .framer-xyg8h4-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-NotXv .framer-1qn1vb6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NotXv.framer-1pdx84u { gap: 0px; } .framer-NotXv.framer-1pdx84u > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NotXv.framer-1pdx84u > :first-child { margin-left: 0px; } .framer-NotXv.framer-1pdx84u > :last-child { margin-right: 0px; } }\",\".framer-NotXv.framer-v-3o8c7r.framer-1pdx84u { gap: 0px; height: 32px; padding: 0px; width: 32px; }\",\".framer-NotXv.framer-v-3o8c7r .framer-xyg8h4-container { height: 14px; width: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NotXv.framer-v-3o8c7r.framer-1pdx84u { gap: 0px; } .framer-NotXv.framer-v-3o8c7r.framer-1pdx84u > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-NotXv.framer-v-3o8c7r.framer-1pdx84u > :first-child { margin-left: 0px; } .framer-NotXv.framer-v-3o8c7r.framer-1pdx84u > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 141\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"EVlCWU04i\":{\"layout\":[\"fixed\",\"fixed\"]},\"gXn3dqA3f\":{\"layout\":[\"auto\",\"auto\"]},\"oXOZuPjpO\":{\"layout\":[\"auto\",\"auto\"]},\"XxCvIkvG2\":{\"layout\":[\"auto\",\"auto\"]},\"ga9po38Sp\":{\"layout\":[\"auto\",\"auto\"]},\"K04vzMBjL\":{\"layout\":[\"auto\",\"auto\"]},\"pkpdwwBUf\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerL7Ld68Ixt=withCSS(Component,css,\"framer-NotXv\");export default FramerL7Ld68Ixt;FramerL7Ld68Ixt.displayName=\"courser\";FramerL7Ld68Ixt.defaultProps={height:48,width:141};addPropertyControls(FramerL7Ld68Ixt,{variant:{options:[\"VjOc1ANZZ\",\"EVlCWU04i\",\"gXn3dqA3f\",\"oXOZuPjpO\",\"XxCvIkvG2\",\"ga9po38Sp\",\"K04vzMBjL\",\"pkpdwwBUf\"],optionTitles:[\"Llamanos\",\"Follow\",\"Email\",\"Siguenos IN\",\"Visita\",\"Designer\",\"Siguenos YT\",\"Siguenos FB \"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerL7Ld68Ixt,[{explicitInter:true,fonts:[{family:\"Ubuntu\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzTsmaMH4V_gg.woff2\",weight:\"300\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerL7Ld68Ixt\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"48\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EVlCWU04i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gXn3dqA3f\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"oXOZuPjpO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"XxCvIkvG2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ga9po38Sp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"K04vzMBjL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pkpdwwBUf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"141\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./L7Ld68Ixt.map"],
  "mappings": "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",
  "names": ["fontStack", "useForceRender", "_", "set", "ye", "te", "v", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "Time", "props", "fontFamily", "fontSize", "fontWeight", "showHours", "color", "font", "tabularFont", "alignment", "visible", "setIsVisible", "isCanvas", "RenderTarget", "render", "useLocaleCode", "textContent", "ue", "int", "p", "addPropertyControls", "ControlType", "Cstcr8c7x_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "__FramerMetadata__", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "tap", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "GNUG1wpDE", "fTygCC59F", "nZyVRsMIS", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapm09qx0", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "addPropertyOverrides", "u", "cx", "serializationHash", "RichText2", "css", "FramerlATIpNPKp", "withCSS", "lATIpNPKp_default", "addPropertyControls", "ControlType", "addFonts", "NavLinkCopyFonts", "getFonts", "lATIpNPKp_default", "TimeDateFonts", "Time", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "Cstcr8c7x_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "_404", "designer", "emailCursor", "facebook", "height", "home", "id", "instagram", "page", "telephoneCursor", "width", "youTube", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "AFe649ShZ", "lPTkc7R8v", "twc15ZAh6", "wTIF_D7kj", "cPR6f93ZG", "xt2Xgpg4r", "Ml_sx0HaY", "gPgWUFa9z", "yHcaRCJBm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "css", "FramerCstcr8c7x", "withCSS", "Cstcr8c7x_default", "addPropertyControls", "ControlType", "addFonts", "L7Ld68Ixt_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v0", "p", "x", "motion", "v1", "v2", "v3", "__FramerMetadata__", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "L7Ld68Ixt_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "Transition", "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", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerL7Ld68Ixt", "withCSS", "L7Ld68Ixt_default", "addPropertyControls", "ControlType", "addFonts"]
}
