{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js", "ssg:https://framerusercontent.com/modules/ct3NIai78Q9Caitj0QK3/H78r4ufKZnP7oxYlyzTN/RFTG7A04t.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}from\"framer\";import{useState,useEffect,useCallback}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;function useForceRender(){const[_,set]=useState(0);return useCallback(()=>set(v=>v+1),[]);}function formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showMinutes,showSeconds},timeFormat,monthFormat,localCode){const date=new Date;const onlyYearIsShown=!showWeekday&&!showMonth&&showYear;switch(outputType){case\"date\":return new Intl.DateTimeFormat(localCode,{weekday:showWeekday?\"long\":undefined,day:onlyYearIsShown?undefined:\"numeric\",month:showMonth?monthFormat:undefined,year:showYear?\"numeric\":undefined}).format(date);case\"time\":return new Intl.DateTimeFormat(localCode,{hour:\"numeric\",minute:showMinutes?\"numeric\":undefined,second:showSeconds&&showMinutes?\"numeric\":undefined,hour12:timeFormat===\"12h\"}).format(date);default:return new Intl.DateTimeFormat(localCode).format(date);}}/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const{outputType,fontFamily,fontSize,fontWeight,timeFormat,showYear,showMonth,showWeekday,showHours,showMinutes,showSeconds,monthFormat,color,font,tabularFont,alignment}=props;const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const render=useForceRender();const localCode=useLocaleCode();const textContent=formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showHours,showMinutes,showSeconds},timeFormat,monthFormat,localCode);useEffect(()=>{setIsVisible(true);// Don\u2019t want real time on Canvas\nif(isCanvas)return;const int=setInterval(()=>{render();});return()=>{clearInterval(int);};},[]);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{margin:0,padding:0,color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,visibility:visible?\"visible\":\"hidden\",...font,fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},children:textContent});}Time.defaultProps={height:20,width:140,outputType:\"time\",color:\"#999\",timeFormat:\"24h\",showYear:true,showMonth:true,showWeekday:true,showMinutes:true,showSeconds:true,monthFormat:\"long\",alignment:\"center\"};Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:Time.defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:Time.defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:Time.defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: Time.defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showSeconds,hidden:props=>props.outputType!==\"time\"||!props.showMinutes},font:{type:ControlType.Font,controls:\"extended\"},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true},color:{type:ControlType.Color,defaultValue:Time.defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"140\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "// Generated by Framer (d275c2b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js\";import Button from\"https://framerusercontent.com/modules/m2IirtKFynrRG2RZm08Y/h6FQ6gr0VqAELOabMB3T/GjHZzzxwD.js\";const ButtonFonts=getFonts(Button);const TimeDateFonts=getFonts(TimeDate);const cycleOrder=[\"qU_C78Vbj\",\"v3GtlcdPI\"];const serializationHash=\"framer-nXFNZ\";const variantClassNames={qU_C78Vbj:\"framer-v-tw0xmm\",v3GtlcdPI:\"framer-v-1mdrvj3\"};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(React.Fragment);const humanReadableVariantMap={Desktop:\"qU_C78Vbj\",Mobile:\"v3GtlcdPI\"};const getProps=({dnACReative,height,id,linkedInCursor,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,NYhRyWJAi:linkedInCursor!==null&&linkedInCursor!==void 0?linkedInCursor:props.NYhRyWJAi,SGMx0xdl3:dnACReative!==null&&dnACReative!==void 0?dnACReative:props.SGMx0xdl3,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"qU_C78Vbj\"};};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,NYhRyWJAi,SGMx0xdl3,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qU_C78Vbj\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const sIX7WDIzc2xyfeh=activeVariantCallback(async(...args)=>{setVariant(\"qU_C78Vbj\");});const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-tw0xmm\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"qU_C78Vbj\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({v3GtlcdPI:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pswye5\",\"data-framer-name\":\"Contact and Social\",layoutDependency:layoutDependency,layoutId:\"QVjZIr9MP\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aincug\",\"data-framer-name\":\"Contact Me\",layoutDependency:layoutDependency,layoutId:\"VfqhPvsvI\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cy1eby\",\"data-framer-name\":\"Phone and Email\",layoutDependency:layoutDependency,layoutId:\"xLZc9sZfd\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uuZEmvrKF\"},implicitPathVariables:undefined},{href:{webPageId:\"uuZEmvrKF\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17gfl8b-container\",layoutDependency:layoutDependency,layoutId:\"iEl5vND0J-container\",children:/*#__PURE__*/_jsx(Button,{bGXKran9l:resolvedLinks[0],E3sMJqdyg:\"rgb(0, 0, 0)\",height:\"100%\",id:\"iEl5vND0J\",iiNMG_vXP:\"var(--token-6bef2831-d541-489a-82bb-da4e27db4e2c, rgb(255, 255, 255))\",IJooVlaof:\"Back\",IzpkIlCCL:\"var(--token-6bef2831-d541-489a-82bb-da4e27db4e2c, rgb(255, 255, 255))\",jbqbpFWTR:\"var(--token-1dfb5f8e-6d59-4a6a-bbc6-917bc568117f, rgb(0, 0, 0))\",layoutId:\"iEl5vND0J\",O1r1SHWDe:\"Get in Touch!\",sIX7WDIzc:sIX7WDIzc2xyfeh,variant:\"X4VGbMEbN\",width:\"100%\",YAeBepFkC:\"ArrowDownRight\",...addPropertyOverrides({v3GtlcdPI:{bGXKran9l:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yf4jb4\",layoutDependency:layoutDependency,layoutId:\"pxAyuyF4n\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nk1eeh\",\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"ckjF5BKLo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(77, 77, 77)))\"},children:\"\\xa9 Copyright\"})}),className:\"framer-d069js\",fonts:[\"GF;Public Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"vy3zKV5KH\",style:{\"--extracted-r6o4lv\":\"var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(77, 77, 77))\",\"--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-1frwdaa-container\",layoutDependency:layoutDependency,layoutId:\"AO_v7pkof-container\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(77, 77, 77))\",font:{fontFamily:'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",id:\"AO_v7pkof\",layoutId:\"AO_v7pkof\",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-1ea21wl\",\"data-framer-cursor\":NYhRyWJAi,\"data-framer-name\":\"Credentials\",layoutDependency:layoutDependency,layoutId:\"sZEtx6Q5b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(77, 77, 77)))\"},children:\"By\"})}),className:\"framer-w83gm1\",\"data-framer-name\":\"Made by\",fonts:[\"GF;Public Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"WytsjGNVy\",style:{\"--extracted-r6o4lv\":\"var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(77, 77, 77))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNzAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(77, 77, 77)))\"},children:\"DnACreative\"})}),className:\"framer-1w6j9of\",\"data-framer-cursor\":SGMx0xdl3,\"data-framer-name\":\"UXUIcristian\",fonts:[\"GF;Public Sans-700\"],layoutDependency:layoutDependency,layoutId:\"ASyRWXC4l\",style:{\"--extracted-r6o4lv\":\"var(--token-d1efab36-84ca-4c47-98a0-f9f61fd3586c, rgb(77, 77, 77))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nXFNZ.framer-1856k2b, .framer-nXFNZ .framer-1856k2b { display: block; }\",\".framer-nXFNZ.framer-tw0xmm { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1152px; }\",\".framer-nXFNZ .framer-pswye5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 197px; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-nXFNZ .framer-1aincug { 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; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 410px; }\",\".framer-nXFNZ .framer-cy1eby { align-content: center; align-items: center; 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-nXFNZ .framer-17gfl8b-container, .framer-nXFNZ .framer-1frwdaa-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-nXFNZ .framer-yf4jb4 { 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-nXFNZ .framer-1nk1eeh, .framer-nXFNZ .framer-1ea21wl { 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-nXFNZ .framer-d069js, .framer-nXFNZ .framer-w83gm1, .framer-nXFNZ .framer-1w6j9of { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nXFNZ .framer-pswye5, .framer-nXFNZ .framer-1aincug, .framer-nXFNZ .framer-cy1eby, .framer-nXFNZ .framer-1nk1eeh, .framer-nXFNZ .framer-1ea21wl { gap: 0px; } .framer-nXFNZ .framer-pswye5 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-nXFNZ .framer-pswye5 > :first-child, .framer-nXFNZ .framer-1nk1eeh > :first-child, .framer-nXFNZ .framer-1ea21wl > :first-child { margin-left: 0px; } .framer-nXFNZ .framer-pswye5 > :last-child, .framer-nXFNZ .framer-1nk1eeh > :last-child, .framer-nXFNZ .framer-1ea21wl > :last-child { margin-right: 0px; } .framer-nXFNZ .framer-1aincug > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-nXFNZ .framer-1aincug > :first-child, .framer-nXFNZ .framer-cy1eby > :first-child { margin-top: 0px; } .framer-nXFNZ .framer-1aincug > :last-child, .framer-nXFNZ .framer-cy1eby > :last-child { margin-bottom: 0px; } .framer-nXFNZ .framer-cy1eby > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-nXFNZ .framer-1nk1eeh > *, .framer-nXFNZ .framer-1ea21wl > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-nXFNZ.framer-v-1mdrvj3.framer-tw0xmm { width: 390px; }\",\".framer-nXFNZ.framer-v-1mdrvj3 .framer-pswye5 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 96px; height: min-content; padding: 0px 20px 0px 0px; }\",\".framer-nXFNZ.framer-v-1mdrvj3 .framer-1aincug { width: 391px; }\",\".framer-nXFNZ.framer-v-1mdrvj3 .framer-17gfl8b-container { order: 0; }\",\".framer-nXFNZ.framer-v-1mdrvj3 .framer-yf4jb4 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; padding: 22px 0px 22px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nXFNZ.framer-v-1mdrvj3 .framer-pswye5, .framer-nXFNZ.framer-v-1mdrvj3 .framer-yf4jb4 { gap: 0px; } .framer-nXFNZ.framer-v-1mdrvj3 .framer-pswye5 > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-nXFNZ.framer-v-1mdrvj3 .framer-pswye5 > :first-child, .framer-nXFNZ.framer-v-1mdrvj3 .framer-yf4jb4 > :first-child { margin-top: 0px; } .framer-nXFNZ.framer-v-1mdrvj3 .framer-pswye5 > :last-child, .framer-nXFNZ.framer-v-1mdrvj3 .framer-yf4jb4 > :last-child { margin-bottom: 0px; } .framer-nXFNZ.framer-v-1mdrvj3 .framer-yf4jb4 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 216\n * @framerIntrinsicWidth 1152\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"v3GtlcdPI\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerVariables {\"NYhRyWJAi\":\"linkedInCursor\",\"SGMx0xdl3\":\"dnACReative\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRFTG7A04t=withCSS(Component,css,\"framer-nXFNZ\");export default FramerRFTG7A04t;FramerRFTG7A04t.displayName=\"Footer\";FramerRFTG7A04t.defaultProps={height:216,width:1152};addPropertyControls(FramerRFTG7A04t,{variant:{options:[\"qU_C78Vbj\",\"v3GtlcdPI\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},NYhRyWJAi:{title:\"LinkedIn Cursor\",type:ControlType.CustomCursor},SGMx0xdl3:{title:\"DnACreative\",type:ControlType.CustomCursor}});addFonts(FramerRFTG7A04t,[{explicitInter:true,fonts:[{family:\"Public Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpm5xg0pX189fg.woff2\",weight:\"400\"},{family:\"Public Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65xg0pX189fg.woff2\",weight:\"700\"}]},...ButtonFonts,...TimeDateFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRFTG7A04t\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1152\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"v3GtlcdPI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"216\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"NYhRyWJAi\\\":\\\"linkedInCursor\\\",\\\"SGMx0xdl3\\\":\\\"dnACReative\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RFTG7A04t.map"],
  "mappings": "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",
  "names": ["fontStack", "useForceRender", "_", "set", "ye", "te", "v", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "Time", "props", "fontFamily", "fontSize", "fontWeight", "showHours", "color", "font", "tabularFont", "alignment", "visible", "setIsVisible", "isCanvas", "RenderTarget", "render", "useLocaleCode", "textContent", "ue", "int", "p", "addPropertyControls", "ControlType", "ButtonFonts", "getFonts", "GjHZzzxwD_default", "TimeDateFonts", "Time", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "dnACReative", "height", "id", "linkedInCursor", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "NYhRyWJAi", "SGMx0xdl3", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "sIX7WDIzc2xyfeh", "args", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "RichText2", "css", "FramerRFTG7A04t", "withCSS", "RFTG7A04t_default", "addPropertyControls", "ControlType", "addFonts"]
}
