{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/lkmazvrHp38ktpQ7ka7N/c0sinHS2GXdE4LOFHjzY/LineClamp.js", "ssg:https://framerusercontent.com/modules/n9Pos4y5xkwJ9NIJMpGg/EkZN8nl4gODeZwhvYVdB/DHGhNDtzm.js", "ssg:https://framerusercontent.com/modules/1htIAwb1EFvvHvZZJ407/ZJuakMUjfrBBAT0YJxp4/cqOFiTgJ1.js", "ssg:https://framerusercontent.com/modules/8izSxuV33sCNRKs9fTmo/U2GQEeTOldsVsT8ly22D/B7HiPpZai.js", "ssg:https://framerusercontent.com/modules/wyJrCe6k2xsCn61GHntf/WryyfSEtO14sCd8ANUYM/dqngQQWDj.js", "ssg:https://framerusercontent.com/modules/d3Mb26MZf1jt3xuyUjfp/GT7fKPA7D1GvBUvZBAdS/tLXeG44Sj.js", "ssg:https://framerusercontent.com/modules/mnf3I3vb3OYySM7GsuPs/HuWMABUYxdAA1A6fpffC/I5ovOHfew.js", "ssg:https://framerusercontent.com/modules/8OtmehsJibwZJfqM8IQl/8bOwqra3lfuDDCZuw0HY/IvUmD2crZ.js", "ssg:https://framerusercontent.com/modules/bOcuhGQwRRj2MGrP2cNP/vxYf3ixNJN6oSgi7kgLE/JjcUJMO5U.js", "ssg:https://framerusercontent.com/modules/vEhYLFK6xkHEfLtFx05y/ExanaA0Rzflo1fh02ABl/qTa4I1IQE.js", "ssg:https://framerusercontent.com/modules/l1NVcS3GvHthw9A3oiki/RajmkFVmT5LjoeBZXS4g/W0wmBZpSG.js", "ssg:https://framerusercontent.com/modules/qxEc2OyXTSc88l5bOWKG/vjt6GrACFCnDKya4W56f/ZWpqkbScP.js", "ssg:https://framerusercontent.com/modules/g7C7nGtn8XmRFQWDmay8/WMu5xqj2N7boCUSNnFlB/ei68GZy_X.js", "ssg:https://framerusercontent.com/modules/i0qJInUFwAr5ZwC6ThMa/bTSoaaa1TTNScwQSzaH5/RqtU1cXGM.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/ _jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}export function withLineClamp2(Component){return props=>{const{text,...otherProps}=props;const lineCount=2 // Set line count for line-clamp\n;return /*#__PURE__*/ _jsx(Component,{...otherProps,text:text,style:{display:\"-webkit-box\",WebkitLineClamp:lineCount,WebkitBoxOrient:\"vertical\",overflow:\"hidden\",...otherProps.style}});};}export function withLineClamp3(Component){return props=>{const{text,...otherProps}=props;const lineCount=3 // Set line count for line-clamp\n;return /*#__PURE__*/ _jsx(Component,{...otherProps,text:text,style:{display:\"-webkit-box\",WebkitLineClamp:lineCount,WebkitBoxOrient:\"vertical\",overflow:\"hidden\",...otherProps.style}});};}export function withLineClamp4(Component){return props=>{const{text,...otherProps}=props;const lineCount=4 // Set line count for line-clamp\n;return /*#__PURE__*/ _jsx(Component,{...otherProps,text:text,style:{display:\"-webkit-box\",WebkitLineClamp:lineCount,WebkitBoxOrient:\"vertical\",overflow:\"hidden\",...otherProps.style}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withLineClamp4\":{\"type\":\"reactHoc\",\"name\":\"withLineClamp4\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withLineClamp2\":{\"type\":\"reactHoc\",\"name\":\"withLineClamp2\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withLineClamp3\":{\"type\":\"reactHoc\",\"name\":\"withLineClamp3\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LineClamp.map", "// Generated by Framer (af04cc1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/1htIAwb1EFvvHvZZJ407/ZJuakMUjfrBBAT0YJxp4/cqOFiTgJ1.js\";import FooterNavCopy from\"https://framerusercontent.com/modules/g7C7nGtn8XmRFQWDmay8/WMu5xqj2N7boCUSNnFlB/ei68GZy_X.js\";import GoTopButton from\"https://framerusercontent.com/modules/i0qJInUFwAr5ZwC6ThMa/bTSoaaa1TTNScwQSzaH5/RqtU1cXGM.js\";const FooterNavCopyFonts=getFonts(FooterNavCopy);const GoTopButtonFonts=getFonts(GoTopButton);const cycleOrder=[\"XqDFQE07Z\",\"cJhnEU9Ep\",\"gpXJggNu0\",\"cE7eKe7Qx\"];const serializationHash=\"framer-xOfwZ\";const variantClassNames={cE7eKe7Qx:\"framer-v-2dhfof\",cJhnEU9Ep:\"framer-v-1awzbxr\",gpXJggNu0:\"framer-v-1v6q2yn\",XqDFQE07Z:\"framer-v-1nfrifj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 4\":\"cE7eKe7Qx\",Default:\"XqDFQE07Z\",Mobile:\"gpXJggNu0\",Tablet:\"cJhnEU9Ep\"};const getProps=({height,id,image,link,width,...props})=>{return{...props,FXjO73sPy:image??props.FXjO73sPy??{src:\"https://framerusercontent.com/images/9lzUJQVx6BtIPEuT8vZnZKvFOR4.svg\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"XqDFQE07Z\",VUdvkQj1U:link??props.VUdvkQj1U};};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,FXjO73sPy,VUdvkQj1U,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XqDFQE07Z\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"cJhnEU9Ep\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1nfrifj\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"XqDFQE07Z\",ref:ref??ref1,style:{...style},...addPropertyOverrides({cE7eKe7Qx:{\"data-framer-name\":\"Variant 4\"},cJhnEU9Ep:{\"data-framer-name\":\"Tablet\"},gpXJggNu0:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5zeu06\",layoutDependency:layoutDependency,layoutId:\"sXYP6WKk0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-twyic8\",\"data-framer-name\":\"Footer Top\",layoutDependency:layoutDependency,layoutId:\"Rgv1WZ4qa\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q7k8he\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"I1lWA_VaF\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o4g0b0\",layoutDependency:layoutDependency,layoutId:\"uSrh5lIEE\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ogezr\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:64,intrinsicWidth:56,layoutDependency:layoutDependency,layoutId:\"EhX2K41sJ\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" class=\"h-[44px]\" height=\"64\" data-component-name=\"shopify-logo\" width=\"56\"><g clip-path=\"url(#a)\"><path d=\"M37.71 7.429s-.706.2-1.865.552a14.65 14.65 0 0 0-.908-2.209c-1.31-2.51-3.277-3.865-5.596-3.865-.15 0-.302 0-.504.05-.05-.1-.151-.15-.201-.25C27.627.601 26.316.1 24.754.15c-3.025.1-6.05 2.26-8.47 6.124-1.714 2.71-3.025 6.124-3.378 8.785-3.478 1.054-5.898 1.807-5.949 1.857-1.764.552-1.815.602-2.016 2.259C4.79 20.43.15 55.768.15 55.768l38.114 6.575V7.38c-.303 0-.454.05-.555.05Zm-8.822 2.71c-2.017.603-4.235 1.306-6.403 1.958.605-2.36 1.815-4.718 3.227-6.274.554-.553 1.31-1.205 2.167-1.607.857 1.807 1.06 4.267 1.009 5.923Zm-4.134-7.93c.705 0 1.31.15 1.815.451-.807.402-1.614 1.054-2.37 1.807-1.916 2.058-3.378 5.27-3.983 8.333-1.815.552-3.63 1.104-5.293 1.606 1.109-4.819 5.193-12.097 9.83-12.198Zm-5.848 27.607c.201 3.213 8.721 3.916 9.225 11.495.353 5.974-3.176 10.04-8.268 10.34-6.15.402-9.528-3.212-9.528-3.212l1.31-5.522s3.379 2.56 6.101 2.36c1.765-.1 2.42-1.556 2.37-2.56-.253-4.217-7.21-3.966-7.663-10.893-.404-5.823 3.428-11.696 11.897-12.248 3.277-.2 4.941.603 4.941.603l-1.916 7.228s-2.168-1.004-4.739-.803c-3.73.25-3.78 2.61-3.73 3.212ZM30.904 9.537c0-1.506-.201-3.664-.907-5.471 2.319.451 3.428 3.011 3.932 4.568a84.95 84.95 0 0 0-3.025.903Zm8.52 52.706 15.83-3.915s-6.806-45.83-6.856-46.13c-.05-.302-.303-.503-.555-.503-.252 0-4.689-.1-4.689-.1s-2.722-2.61-3.73-3.614v54.262Z\" fill=\"#FFF\"/><path d=\"m29.25 20.213-1.935 7.216s-2.16-.986-4.725-.807c-3.78.224-3.78 2.6-3.78 3.182.225 3.227 8.73 3.944 9.225 11.518.36 5.96-3.15 10.04-8.28 10.353-6.12.314-9.495-3.272-9.495-3.272l1.305-5.512s3.42 2.554 6.12 2.375c1.755-.09 2.43-1.569 2.34-2.554-.27-4.213-7.2-3.945-7.65-10.891-.36-5.827 3.465-11.698 11.925-12.236 3.285-.224 4.95.628 4.95.628Z\" fill=\"#000\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h225v64H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x2amll\",layoutDependency:layoutDependency,layoutId:\"Se50leI4i\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xpY2Vuc2VkIGZvciB1c2UgYXQgaHR0cHM6Ly93d3cuY3liZXJ3b3Jrc2hvcC5jby5uei4g\",\"--framer-font-family\":'\"Licensed for use at https://www.cyberworkshop.co.nz. \", \"Licensed for use at https://www.cyberworkshop.co.nz.  Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Accredited Shopify Experts\"})}),className:\"framer-2qjz0w\",fonts:[\"CUSTOM;Licensed for use at https://www.cyberworkshop.co.nz. \"],layoutDependency:layoutDependency,layoutId:\"FhQ8PunC5\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--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__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xlbWFuY2UgUmVndWxhcg==\",\"--framer-font-family\":'\"Lemance Regular\", \"Lemance Regular Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(224, 224, 224))\"},children:[/*#__PURE__*/_jsx(motion.strong,{children:\"NZ-based \"}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ANPi_GgZ0\"},nodeId:\"U1agUWd2C\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1a1l45w\",\"data-styles-preset\":\"cqOFiTgJ1\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Shopify Experts\"})})}),/*#__PURE__*/_jsx(motion.strong,{children:\" helping businesses succeed online since 2012. Ready to transform your digital commerce?\"})]})}),className:\"framer-1tqgw34\",fonts:[\"CUSTOM;Lemance Regular\"],layoutDependency:layoutDependency,layoutId:\"U1agUWd2C\",style:{\"--extracted-r6o4lv\":\"rgb(224, 224, 224)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16kvkqv\",layoutDependency:layoutDependency,layoutId:\"D5OuUAhZA\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:168,width:`max(min(${componentViewport?.width||\"100vw\"} - 90px, 1350px), 1px)`,...addPropertyOverrides({cE7eKe7Qx:{width:`max(max(min(${componentViewport?.width||\"100vw\"} - 90px, 1350px), 1px) - 92px, 1px)`},cJhnEU9Ep:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1350px), 1px)`},gpXJggNu0:{width:`max(min(${componentViewport?.width||\"100vw\"} - 50px, 1350px), 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-899)/2+0+0)+0+0+40+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tj2gl4-container\",layoutDependency:layoutDependency,layoutId:\"HhK_W2miS-container\",children:/*#__PURE__*/_jsx(FooterNavCopy,{height:\"100%\",id:\"HhK_W2miS\",layoutId:\"HhK_W2miS\",style:{width:\"100%\"},variant:\"wU9l6_pjm\",width:\"100%\",...addPropertyOverrides({cE7eKe7Qx:{variant:\"nmRv0aiH5\"},gpXJggNu0:{variant:\"nmRv0aiH5\"}},baseVariant,gestureVariant)})})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rcfuhf\",\"data-border\":true,\"data-framer-name\":\"Footer Bottom\",layoutDependency:layoutDependency,layoutId:\"uiic0SyYQ\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-epmch9\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"CodKo0Irq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xlbWFuY2UgUmVndWxhcg==\",\"--framer-font-family\":'\"Lemance Regular\", \"Lemance Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\\xa9 2024 CyberWorkshop. All Rights Reserved. \"})}),className:\"framer-a2o87b\",\"data-framer-name\":\"Header Bttom Start\",fonts:[\"CUSTOM;Lemance Regular\"],layoutDependency:layoutDependency,layoutId:\"fDafbuMw6\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{cE7eKe7Qx:{\"--extracted-2gxw0f\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({cE7eKe7Qx:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JsaXNzUmVndWxhciBSZWd1bGFy\",\"--framer-font-family\":'\"BlissRegular Regular\", \"BlissRegular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\\xa9 2024 CyberWorkshop.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JsaXNzUmVndWxhciBSZWd1bGFy\",\"--framer-font-family\":'\"BlissRegular Regular\", \"BlissRegular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:\"Building bridges between e-commerce & ERP.\"})]}),fonts:[\"CUSTOM;BlissRegular Regular\"]},gpXJggNu0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JsaXNzUmVndWxhciBSZWd1bGFy\",\"--framer-font-family\":'\"BlissRegular Regular\", \"BlissRegular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\\xa9 2024 CyberWorkShop Limited\"})}),fonts:[\"CUSTOM;BlissRegular Regular\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JsaXNzUmVndWxhciBSZWd1bGFy\",\"--framer-font-family\":'\"BlissRegular Regular\", \"BlissRegular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})}),className:\"framer-1pk83fb\",\"data-framer-name\":\"Header Bottom Center\",fonts:[\"CUSTOM;BlissRegular Regular\"],layoutDependency:layoutDependency,layoutId:\"Jj88Sg6lR\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.8},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rgji71\",\"data-framer-name\":\"Header Bottom End\",layoutDependency:layoutDependency,layoutId:\"FwXIAKJDF\",...addPropertyOverrides({cE7eKe7Qx:{transformTemplate:transformTemplate2},gpXJggNu0:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({gpXJggNu0:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-899)/2+0+0)+0+615+32+90.00000000000004+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5481wb-container\",layoutDependency:layoutDependency,layoutId:\"EbTc7xg6F-container\",children:/*#__PURE__*/_jsx(GoTopButton,{height:\"100%\",id:\"EbTc7xg6F\",layoutId:\"EbTc7xg6F\",lbF8D2J7x:toResponsiveImage(FXjO73sPy),width:\"100%\",Yrl9tODuP:VUdvkQj1U})})})})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xOfwZ.framer-1kwemxe, .framer-xOfwZ .framer-1kwemxe { display: block; }\",\".framer-xOfwZ.framer-1nfrifj { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 45px 0px 45px; position: relative; width: 1200px; }\",\".framer-xOfwZ .framer-5zeu06 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xOfwZ .framer-twyic8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1350px; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-xOfwZ .framer-1q7k8he { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 30px 0px; position: relative; width: 1px; }\",\".framer-xOfwZ .framer-1o4g0b0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 7px 16px 0px 0px; position: relative; width: min-content; }\",\".framer-xOfwZ .framer-1ogezr { aspect-ratio: 0.875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 39px; }\",\".framer-xOfwZ .framer-1x2amll { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: wrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 7px 0px 0px 16px; position: relative; width: 1px; }\",\".framer-xOfwZ .framer-2qjz0w, .framer-xOfwZ .framer-1tqgw34 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 320px; word-break: break-word; word-wrap: break-word; }\",\".framer-xOfwZ .framer-16kvkqv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: center; overflow: hidden; padding: 7px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-xOfwZ .framer-tj2gl4-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-xOfwZ .framer-rcfuhf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 32px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-xOfwZ .framer-epmch9 { display: grid; flex: 1 0 0px; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; max-width: 1350px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-xOfwZ .framer-a2o87b { -webkit-user-select: none; align-self: center; flex: none; height: auto; justify-self: start; position: relative; user-select: none; white-space: pre; width: fit-content; }\",\".framer-xOfwZ .framer-1pk83fb { align-self: center; flex: none; height: auto; justify-self: center; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xOfwZ .framer-rgji71 { align-content: center; align-items: center; align-self: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; justify-self: end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xOfwZ .framer-5481wb-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xOfwZ.framer-1nfrifj, .framer-xOfwZ .framer-5zeu06, .framer-xOfwZ .framer-twyic8, .framer-xOfwZ .framer-1o4g0b0, .framer-xOfwZ .framer-1x2amll, .framer-xOfwZ .framer-16kvkqv, .framer-xOfwZ .framer-rcfuhf, .framer-xOfwZ .framer-rgji71 { gap: 0px; } .framer-xOfwZ.framer-1nfrifj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xOfwZ.framer-1nfrifj > :first-child, .framer-xOfwZ .framer-5zeu06 > :first-child { margin-top: 0px; } .framer-xOfwZ.framer-1nfrifj > :last-child, .framer-xOfwZ .framer-5zeu06 > :last-child { margin-bottom: 0px; } .framer-xOfwZ .framer-5zeu06 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xOfwZ .framer-twyic8 > *, .framer-xOfwZ .framer-1o4g0b0 > *, .framer-xOfwZ .framer-rcfuhf > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-xOfwZ .framer-twyic8 > :first-child, .framer-xOfwZ .framer-1o4g0b0 > :first-child, .framer-xOfwZ .framer-1x2amll > :first-child, .framer-xOfwZ .framer-16kvkqv > :first-child, .framer-xOfwZ .framer-rcfuhf > :first-child, .framer-xOfwZ .framer-rgji71 > :first-child { margin-left: 0px; } .framer-xOfwZ .framer-twyic8 > :last-child, .framer-xOfwZ .framer-1o4g0b0 > :last-child, .framer-xOfwZ .framer-1x2amll > :last-child, .framer-xOfwZ .framer-16kvkqv > :last-child, .framer-xOfwZ .framer-rcfuhf > :last-child, .framer-xOfwZ .framer-rgji71 > :last-child { margin-right: 0px; } .framer-xOfwZ .framer-1x2amll > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-xOfwZ .framer-16kvkqv > * { margin: 0px; margin-left: calc(37px / 2); margin-right: calc(37px / 2); } .framer-xOfwZ .framer-rgji71 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-xOfwZ.framer-v-1awzbxr.framer-1nfrifj { padding: 0px 30px 0px 30px; width: 810px; }\",\".framer-xOfwZ.framer-v-1awzbxr .framer-5zeu06 { padding: 40px 0px 0px 0px; }\",\".framer-xOfwZ.framer-v-1awzbxr .framer-twyic8 { padding: 0px; }\",\".framer-xOfwZ.framer-v-1awzbxr .framer-1q7k8he { gap: 72px; justify-content: flex-start; }\",\".framer-xOfwZ.framer-v-1awzbxr .framer-16kvkqv { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xOfwZ.framer-v-1awzbxr .framer-1q7k8he { gap: 0px; } .framer-xOfwZ.framer-v-1awzbxr .framer-1q7k8he > * { margin: 0px; margin-left: calc(72px / 2); margin-right: calc(72px / 2); } .framer-xOfwZ.framer-v-1awzbxr .framer-1q7k8he > :first-child { margin-left: 0px; } .framer-xOfwZ.framer-v-1awzbxr .framer-1q7k8he > :last-child { margin-right: 0px; } }\",\".framer-xOfwZ.framer-v-1v6q2yn.framer-1nfrifj { padding: 0px 25px 0px 25px; width: 390px; }\",\".framer-xOfwZ.framer-v-1v6q2yn .framer-twyic8 { padding: 40px 0px 25px 0px; }\",\".framer-xOfwZ.framer-v-1v6q2yn .framer-1q7k8he { align-content: center; align-items: center; flex-direction: column; gap: 38px; justify-content: flex-start; padding: 0px; }\",\".framer-xOfwZ.framer-v-1v6q2yn .framer-1o4g0b0 { order: 2; padding: 0px; width: 100%; }\",\".framer-xOfwZ.framer-v-1v6q2yn .framer-1x2amll { flex: none; flex-direction: column; order: 3; padding: 0px; width: 100%; }\",\".framer-xOfwZ.framer-v-1v6q2yn .framer-2qjz0w, .framer-xOfwZ.framer-v-1v6q2yn .framer-1tqgw34, .framer-xOfwZ.framer-v-2dhfof .framer-1tqgw34 { width: 100%; }\",\".framer-xOfwZ.framer-v-1v6q2yn .framer-16kvkqv { align-content: center; align-items: center; flex: none; gap: 0px; order: 0; padding: 0px; width: 100%; }\",\".framer-xOfwZ.framer-v-1v6q2yn .framer-epmch9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; overflow: visible; padding: 0px 60px 0px 60px; }\",\".framer-xOfwZ.framer-v-1v6q2yn .framer-a2o87b, .framer-xOfwZ.framer-v-2dhfof .framer-a2o87b { align-self: unset; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xOfwZ.framer-v-1v6q2yn .framer-1pk83fb, .framer-xOfwZ.framer-v-2dhfof .framer-1pk83fb { align-self: unset; }\",\".framer-xOfwZ.framer-v-1v6q2yn .framer-rgji71 { align-self: unset; position: absolute; right: 10px; top: 50%; width: min-content; z-index: 1; }\",\".framer-xOfwZ.framer-v-1v6q2yn .framer-5481wb-container { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xOfwZ.framer-v-1v6q2yn .framer-1q7k8he, .framer-xOfwZ.framer-v-1v6q2yn .framer-1x2amll, .framer-xOfwZ.framer-v-1v6q2yn .framer-16kvkqv, .framer-xOfwZ.framer-v-1v6q2yn .framer-epmch9 { gap: 0px; } .framer-xOfwZ.framer-v-1v6q2yn .framer-1q7k8he > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-xOfwZ.framer-v-1v6q2yn .framer-1q7k8he > :first-child, .framer-xOfwZ.framer-v-1v6q2yn .framer-1x2amll > :first-child, .framer-xOfwZ.framer-v-1v6q2yn .framer-epmch9 > :first-child { margin-top: 0px; } .framer-xOfwZ.framer-v-1v6q2yn .framer-1q7k8he > :last-child, .framer-xOfwZ.framer-v-1v6q2yn .framer-1x2amll > :last-child, .framer-xOfwZ.framer-v-1v6q2yn .framer-epmch9 > :last-child { margin-bottom: 0px; } .framer-xOfwZ.framer-v-1v6q2yn .framer-1x2amll > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-xOfwZ.framer-v-1v6q2yn .framer-16kvkqv > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-xOfwZ.framer-v-1v6q2yn .framer-16kvkqv > :first-child { margin-left: 0px; } .framer-xOfwZ.framer-v-1v6q2yn .framer-16kvkqv > :last-child { margin-right: 0px; } .framer-xOfwZ.framer-v-1v6q2yn .framer-epmch9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-xOfwZ.framer-v-2dhfof.framer-1nfrifj { width: 390px; }\",\".framer-xOfwZ.framer-v-2dhfof .framer-1q7k8he { align-content: center; align-items: center; flex-direction: column; gap: 38px; justify-content: flex-start; padding: 0px 44px 30px 0px; }\",\".framer-xOfwZ.framer-v-2dhfof .framer-1o4g0b0 { order: 2; width: 100%; }\",\".framer-xOfwZ.framer-v-2dhfof .framer-1x2amll { flex: none; order: 3; padding: 7px 24px 0px 24px; width: 100%; }\",\".framer-xOfwZ.framer-v-2dhfof .framer-2qjz0w { flex: 1 0 0px; width: 1px; }\",\".framer-xOfwZ.framer-v-2dhfof .framer-16kvkqv { align-content: center; align-items: center; flex: none; order: 0; padding: 7px 24px 0px 24px; width: 100%; }\",\".framer-xOfwZ.framer-v-2dhfof .framer-epmch9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; min-height: 76px; }\",\".framer-xOfwZ.framer-v-2dhfof .framer-rgji71 { align-self: unset; left: 91%; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xOfwZ.framer-v-2dhfof .framer-1q7k8he, .framer-xOfwZ.framer-v-2dhfof .framer-epmch9 { gap: 0px; } .framer-xOfwZ.framer-v-2dhfof .framer-1q7k8he > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-xOfwZ.framer-v-2dhfof .framer-1q7k8he > :first-child, .framer-xOfwZ.framer-v-2dhfof .framer-epmch9 > :first-child { margin-top: 0px; } .framer-xOfwZ.framer-v-2dhfof .framer-1q7k8he > :last-child, .framer-xOfwZ.framer-v-2dhfof .framer-epmch9 > :last-child { margin-bottom: 0px; } .framer-xOfwZ.framer-v-2dhfof .framer-epmch9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,'.framer-xOfwZ[data-border=\"true\"]::after, .framer-xOfwZ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 359\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cJhnEU9Ep\":{\"layout\":[\"fixed\",\"auto\"]},\"gpXJggNu0\":{\"layout\":[\"fixed\",\"auto\"]},\"cE7eKe7Qx\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"FXjO73sPy\":\"image\",\"VUdvkQj1U\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDHGhNDtzm=withCSS(Component,css,\"framer-xOfwZ\");export default FramerDHGhNDtzm;FramerDHGhNDtzm.displayName=\"Footer\";FramerDHGhNDtzm.defaultProps={height:359,width:1200};addPropertyControls(FramerDHGhNDtzm,{variant:{options:[\"XqDFQE07Z\",\"cJhnEU9Ep\",\"gpXJggNu0\",\"cE7eKe7Qx\"],optionTitles:[\"Default\",\"Tablet\",\"Mobile\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},FXjO73sPy:{__defaultAssetReference:\"data:framer/asset-reference,9lzUJQVx6BtIPEuT8vZnZKvFOR4.svg?originalFilename=nav-arrow-up.svg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},VUdvkQj1U:{title:\"Link\",type:ControlType.Link}});addFonts(FramerDHGhNDtzm,[{explicitInter:true,fonts:[{family:\"Licensed for use at https://www.cyberworkshop.co.nz. \",source:\"custom\",url:\"https://framerusercontent.com/assets/unEgbumC0ExYhzh78DRxq2tNQ2U.woff\"},{family:\"Lemance Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/q90sTd3xEuX4dOATpRx3NEBOQM.woff\"},{family:\"BlissRegular Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/mNDSwszZ9U8ynFHkR9ZnR1xPA.woff2\"}]},...FooterNavCopyFonts,...GoTopButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDHGhNDtzm\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"359\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cJhnEU9Ep\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gpXJggNu0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cE7eKe7Qx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"FXjO73sPy\\\":\\\"image\\\",\\\"VUdvkQj1U\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c126521)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-7Y28y .framer-styles-preset-1a1l45w:not(.rich-text-wrapper), .framer-7Y28y .framer-styles-preset-1a1l45w.rich-text-wrapper a { --framer-link-current-text-color: #ffffff; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #ffffff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #ffffff; --framer-link-text-decoration: underline; }\"];export const className=\"framer-7Y28y\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (838580a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"D4xwMjJS9\",\"RP6HeRiL7\"];const serializationHash=\"framer-Stooe\";const variantClassNames={D4xwMjJS9:\"framer-v-1erv1c8\",RP6HeRiL7:\"framer-v-1ymw08c\"};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={\"Footer Link\":\"D4xwMjJS9\",\"Hidden Link\":\"RP6HeRiL7\"};const getProps=({height,id,link,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,gdoxB2m4z:(_ref=text!==null&&text!==void 0?text:props.gdoxB2m4z)!==null&&_ref!==void 0?_ref:\"Podcast Editor\",NYFfnnmLz:link!==null&&link!==void 0?link:props.NYFfnnmLz,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"D4xwMjJS9\"};};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,gdoxB2m4z,NYFfnnmLz,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"D4xwMjJS9\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isDisplayed=()=>{if(baseVariant===\"RP6HeRiL7\")return false;return true;};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:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:NYFfnnmLz,openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1erv1c8\",className,classNames)} framer-iobtzl`,\"data-framer-name\":\"Footer Link\",layoutDependency:layoutDependency,layoutId:\"D4xwMjJS9\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xlbWFuY2UgUmVndWxhcg==\",\"--framer-font-family\":'\"Lemance Regular\", \"Lemance Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(224, 224, 224))\"},children:\"Podcast Editor\"})}),className:\"framer-123krsn\",\"data-framer-name\":\"Podcast Editor\",fonts:[\"CUSTOM;Lemance Regular\"],layoutDependency:layoutDependency,layoutId:\"Ht07a5f0X\",style:{\"--extracted-r6o4lv\":\"rgb(224, 224, 224)\",\"--framer-paragraph-spacing\":\"0px\"},text:gdoxB2m4z,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Stooe.framer-iobtzl, .framer-Stooe .framer-iobtzl { display: block; }\",\".framer-Stooe.framer-1erv1c8 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 26px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Stooe .framer-123krsn { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Stooe.framer-1erv1c8 { gap: 0px; } .framer-Stooe.framer-1erv1c8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Stooe.framer-1erv1c8 > :first-child { margin-left: 0px; } .framer-Stooe.framer-1erv1c8 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 107.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"RP6HeRiL7\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"gdoxB2m4z\":\"text\",\"NYFfnnmLz\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerB7HiPpZai=withCSS(Component,css,\"framer-Stooe\");export default FramerB7HiPpZai;FramerB7HiPpZai.displayName=\"Footer Link Copy 6\";FramerB7HiPpZai.defaultProps={height:26,width:107.5};addPropertyControls(FramerB7HiPpZai,{variant:{options:[\"D4xwMjJS9\",\"RP6HeRiL7\"],optionTitles:[\"Footer Link\",\"Hidden Link\"],title:\"Variant\",type:ControlType.Enum},gdoxB2m4z:{defaultValue:\"Podcast Editor\",displayTextArea:false,title:\"Text\",type:ControlType.String},NYFfnnmLz:{title:\"Link\",type:ControlType.Link}});addFonts(FramerB7HiPpZai,[{explicitInter:true,fonts:[{family:\"Lemance Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/q90sTd3xEuX4dOATpRx3NEBOQM.woff\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerB7HiPpZai\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"26\",\"framerIntrinsicWidth\":\"107.5\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"gdoxB2m4z\\\":\\\"text\\\",\\\"NYFfnnmLz\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"RP6HeRiL7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./B7HiPpZai.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"QrujZv_fp\",\"hzt6buARQ\"];const serializationHash=\"framer-wMt7i\";const variantClassNames={hzt6buARQ:\"framer-v-azagy0\",QrujZv_fp:\"framer-v-13jr0mi\"};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={\"Footer Link\":\"QrujZv_fp\",\"Hidden Link\":\"hzt6buARQ\"};const getProps=({height,id,link,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,gdoxB2m4z:(_ref=text!==null&&text!==void 0?text:props.gdoxB2m4z)!==null&&_ref!==void 0?_ref:\"Podcast Editor\",NYFfnnmLz:link!==null&&link!==void 0?link:props.NYFfnnmLz,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"QrujZv_fp\"};};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,gdoxB2m4z,NYFfnnmLz,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QrujZv_fp\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isDisplayed=()=>{if(baseVariant===\"hzt6buARQ\")return false;return true;};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:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:NYFfnnmLz,openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-13jr0mi\",className,classNames)} framer-l0sevv`,\"data-framer-name\":\"Footer Link\",layoutDependency:layoutDependency,layoutId:\"QrujZv_fp\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xlbWFuY2UgUmVndWxhcg==\",\"--framer-font-family\":'\"Lemance Regular\", \"Lemance Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(224, 224, 224))\"},children:\"Podcast Editor\"})}),className:\"framer-1fpuwq7\",\"data-framer-name\":\"Podcast Editor\",fonts:[\"CUSTOM;Lemance Regular\"],layoutDependency:layoutDependency,layoutId:\"LDzEkDy_J\",style:{\"--extracted-r6o4lv\":\"rgb(224, 224, 224)\",\"--framer-paragraph-spacing\":\"0px\"},text:gdoxB2m4z,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wMt7i.framer-l0sevv, .framer-wMt7i .framer-l0sevv { display: block; }\",\".framer-wMt7i.framer-13jr0mi { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 26px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-wMt7i .framer-1fpuwq7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wMt7i.framer-13jr0mi { gap: 0px; } .framer-wMt7i.framer-13jr0mi > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wMt7i.framer-13jr0mi > :first-child { margin-left: 0px; } .framer-wMt7i.framer-13jr0mi > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 107.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"hzt6buARQ\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"gdoxB2m4z\":\"text\",\"NYFfnnmLz\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdqngQQWDj=withCSS(Component,css,\"framer-wMt7i\");export default FramerdqngQQWDj;FramerdqngQQWDj.displayName=\"Footer Link Copy 5\";FramerdqngQQWDj.defaultProps={height:26,width:107.5};addPropertyControls(FramerdqngQQWDj,{variant:{options:[\"QrujZv_fp\",\"hzt6buARQ\"],optionTitles:[\"Footer Link\",\"Hidden Link\"],title:\"Variant\",type:ControlType.Enum},gdoxB2m4z:{defaultValue:\"Podcast Editor\",displayTextArea:false,title:\"Text\",type:ControlType.String},NYFfnnmLz:{title:\"Link\",type:ControlType.Link}});addFonts(FramerdqngQQWDj,[{explicitInter:true,fonts:[{family:\"Lemance Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/q90sTd3xEuX4dOATpRx3NEBOQM.woff\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdqngQQWDj\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"26\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"gdoxB2m4z\\\":\\\"text\\\",\\\"NYFfnnmLz\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"hzt6buARQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"107.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dqngQQWDj.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"ZP21otY70\",\"CozOSCD0L\"];const serializationHash=\"framer-6ooBR\";const variantClassNames={CozOSCD0L:\"framer-v-xyhx7s\",ZP21otY70:\"framer-v-1qqqj2g\"};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={\"Footer Link\":\"ZP21otY70\",\"Hidden Link\":\"CozOSCD0L\"};const getProps=({height,id,link,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,gdoxB2m4z:(_ref=text!==null&&text!==void 0?text:props.gdoxB2m4z)!==null&&_ref!==void 0?_ref:\"Podcast Editor\",NYFfnnmLz:link!==null&&link!==void 0?link:props.NYFfnnmLz,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"ZP21otY70\"};};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,gdoxB2m4z,NYFfnnmLz,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZP21otY70\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isDisplayed=()=>{if(baseVariant===\"CozOSCD0L\")return false;return true;};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:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:NYFfnnmLz,openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1qqqj2g\",className,classNames)} framer-19bo46a`,\"data-framer-name\":\"Footer Link\",layoutDependency:layoutDependency,layoutId:\"ZP21otY70\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xpY2Vuc2VkIGZvciB1c2UgYXQgaHR0cHM6Ly93d3cuY3liZXJ3b3Jrc2hvcC5jby5uei4g\",\"--framer-font-family\":'\"Licensed for use at https://www.cyberworkshop.co.nz. \", \"Licensed for use at https://www.cyberworkshop.co.nz.  Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5c708e6e-9e4f-4b8a-9d1b-3d557aa7e0be, rgb(255, 255, 255)))\"},children:\"Podcast Editor\"})}),className:\"framer-z1ytln\",\"data-framer-name\":\"Podcast Editor\",fonts:[\"CUSTOM;Licensed for use at https://www.cyberworkshop.co.nz. \"],layoutDependency:layoutDependency,layoutId:\"PyldwFfyY\",style:{\"--extracted-r6o4lv\":\"var(--token-5c708e6e-9e4f-4b8a-9d1b-3d557aa7e0be, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:gdoxB2m4z,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6ooBR.framer-19bo46a, .framer-6ooBR .framer-19bo46a { display: block; }\",\".framer-6ooBR.framer-1qqqj2g { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 26px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-6ooBR .framer-z1ytln { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6ooBR.framer-1qqqj2g { gap: 0px; } .framer-6ooBR.framer-1qqqj2g > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6ooBR.framer-1qqqj2g > :first-child { margin-left: 0px; } .framer-6ooBR.framer-1qqqj2g > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 98\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"CozOSCD0L\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"gdoxB2m4z\":\"text\",\"NYFfnnmLz\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertLXeG44Sj=withCSS(Component,css,\"framer-6ooBR\");export default FramertLXeG44Sj;FramertLXeG44Sj.displayName=\"Footer Link Copy 8\";FramertLXeG44Sj.defaultProps={height:26,width:98};addPropertyControls(FramertLXeG44Sj,{variant:{options:[\"ZP21otY70\",\"CozOSCD0L\"],optionTitles:[\"Footer Link\",\"Hidden Link\"],title:\"Variant\",type:ControlType.Enum},gdoxB2m4z:{defaultValue:\"Podcast Editor\",displayTextArea:false,title:\"Text\",type:ControlType.String},NYFfnnmLz:{title:\"Link\",type:ControlType.Link}});addFonts(FramertLXeG44Sj,[{explicitInter:true,fonts:[{family:\"Licensed for use at https://www.cyberworkshop.co.nz. \",source:\"custom\",url:\"https://framerusercontent.com/assets/unEgbumC0ExYhzh78DRxq2tNQ2U.woff\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertLXeG44Sj\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"98\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"CozOSCD0L\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"26\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"gdoxB2m4z\\\":\\\"text\\\",\\\"NYFfnnmLz\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tLXeG44Sj.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FooterLinkCopy8 from\"https://framerusercontent.com/modules/d3Mb26MZf1jt3xuyUjfp/GT7fKPA7D1GvBUvZBAdS/tLXeG44Sj.js\";const FooterLinkCopy8Fonts=getFonts(FooterLinkCopy8);const serializationHash=\"framer-x7cdd\";const variantClassNames={TXDvYWYt7:\"framer-v-125lus6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({address,addressTitle,height,id,width,...props})=>{return{...props,rtWJAYWgC:address??props.rtWJAYWgC??\"177 Parnell Road Auckland\",tASuZt7VV:addressTitle??props.tASuZt7VV??\"New Zealand\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,tASuZt7VV,rtWJAYWgC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"TXDvYWYt7\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-125lus6\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"TXDvYWYt7\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xzwj2y-container\",layoutDependency:layoutDependency,layoutId:\"XpYNXXPfi-container\",nodeId:\"XpYNXXPfi\",rendersWithMotion:true,scopeId:\"I5ovOHfew\",children:/*#__PURE__*/_jsx(FooterLinkCopy8,{gdoxB2m4z:tASuZt7VV,height:\"100%\",id:\"XpYNXXPfi\",layoutId:\"XpYNXXPfi\",NYFfnnmLz:\"https://cyberworkshop.com.au\",style:{height:\"100%\"},variant:\"ZP21otY70\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JsaXNzUmVndWxhciBSZWd1bGFy\",\"--framer-font-family\":'\"BlissRegular Regular\", \"BlissRegular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-90bee933-e645-4eb2-abe2-32b83eeb2854, rgba(255, 255, 255, 0.8)))\"},children:\"Wibautstraat 131 D\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JsaXNzUmVndWxhciBSZWd1bGFy\",\"--framer-font-family\":'\"BlissRegular Regular\", \"BlissRegular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-90bee933-e645-4eb2-abe2-32b83eeb2854, rgba(255, 255, 255, 0.8)))\"},children:\"1091 GL Amsterdam\"})]}),className:\"framer-1lr5v5u\",\"data-framer-name\":\"Wibautstraat 131 D 1091 GL Amsterdam\",fonts:[\"CUSTOM;BlissRegular Regular\"],layoutDependency:layoutDependency,layoutId:\"dIWhHxJ7E\",style:{\"--extracted-2gxw0f\":\"var(--token-90bee933-e645-4eb2-abe2-32b83eeb2854, rgba(255, 255, 255, 0.8))\",\"--extracted-r6o4lv\":\"var(--token-90bee933-e645-4eb2-abe2-32b83eeb2854, rgba(255, 255, 255, 0.8))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.8},text:rtWJAYWgC,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-x7cdd.framer-1tvzxl9, .framer-x7cdd .framer-1tvzxl9 { display: block; }\",\".framer-x7cdd.framer-125lus6 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-x7cdd .framer-xzwj2y-container { flex: none; height: 26px; position: relative; width: auto; }\",\".framer-x7cdd .framer-1lr5v5u { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 166px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-x7cdd.framer-125lus6 { gap: 0px; } .framer-x7cdd.framer-125lus6 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-x7cdd.framer-125lus6 > :first-child { margin-top: 0px; } .framer-x7cdd.framer-125lus6 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 54\n * @framerIntrinsicWidth 166\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"tASuZt7VV\":\"addressTitle\",\"rtWJAYWgC\":\"address\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerI5ovOHfew=withCSS(Component,css,\"framer-x7cdd\");export default FramerI5ovOHfew;FramerI5ovOHfew.displayName=\"Footer Address Copy\";FramerI5ovOHfew.defaultProps={height:54,width:166};addPropertyControls(FramerI5ovOHfew,{tASuZt7VV:{defaultValue:\"New Zealand\",displayTextArea:false,title:\"Address Title\",type:ControlType.String},rtWJAYWgC:{defaultValue:\"177 Parnell Road Auckland\",displayTextArea:false,title:\"Address\",type:ControlType.String}});addFonts(FramerI5ovOHfew,[{explicitInter:true,fonts:[{family:\"BlissRegular Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/mNDSwszZ9U8ynFHkR9ZnR1xPA.woff2\"}]},...FooterLinkCopy8Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerI5ovOHfew\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"166\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"54\",\"framerVariables\":\"{\\\"tASuZt7VV\\\":\\\"addressTitle\\\",\\\"rtWJAYWgC\\\":\\\"address\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./I5ovOHfew.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"UaeEH7lHd\",\"QxQCkPdJJ\"];const serializationHash=\"framer-Hjfcb\";const variantClassNames={QxQCkPdJJ:\"framer-v-qcumo8\",UaeEH7lHd:\"framer-v-45jcil\"};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={\"Footer Link\":\"UaeEH7lHd\",\"Hidden Link\":\"QxQCkPdJJ\"};const getProps=({height,id,link,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,gdoxB2m4z:(_ref=text!==null&&text!==void 0?text:props.gdoxB2m4z)!==null&&_ref!==void 0?_ref:\"Podcast Editor\",NYFfnnmLz:link!==null&&link!==void 0?link:props.NYFfnnmLz,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"UaeEH7lHd\"};};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,gdoxB2m4z,NYFfnnmLz,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UaeEH7lHd\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isDisplayed=()=>{if(baseVariant===\"QxQCkPdJJ\")return false;return true;};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:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:NYFfnnmLz,openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-45jcil\",className,classNames)} framer-120bo4s`,\"data-framer-name\":\"Footer Link\",layoutDependency:layoutDependency,layoutId:\"UaeEH7lHd\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xlbWFuY2UgUmVndWxhcg==\",\"--framer-font-family\":'\"Lemance Regular\", \"Lemance Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(224, 224, 224))\"},children:\"Podcast Editor\"})}),className:\"framer-m0nq8v\",\"data-framer-name\":\"Podcast Editor\",fonts:[\"CUSTOM;Lemance Regular\"],layoutDependency:layoutDependency,layoutId:\"MuAolvFAI\",style:{\"--extracted-r6o4lv\":\"rgb(224, 224, 224)\",\"--framer-paragraph-spacing\":\"0px\"},text:gdoxB2m4z,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Hjfcb.framer-120bo4s, .framer-Hjfcb .framer-120bo4s { display: block; }\",\".framer-Hjfcb.framer-45jcil { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 26px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Hjfcb .framer-m0nq8v { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Hjfcb.framer-45jcil { gap: 0px; } .framer-Hjfcb.framer-45jcil > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Hjfcb.framer-45jcil > :first-child { margin-left: 0px; } .framer-Hjfcb.framer-45jcil > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 107.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"QxQCkPdJJ\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"gdoxB2m4z\":\"text\",\"NYFfnnmLz\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIvUmD2crZ=withCSS(Component,css,\"framer-Hjfcb\");export default FramerIvUmD2crZ;FramerIvUmD2crZ.displayName=\"Footer Link Copy 3\";FramerIvUmD2crZ.defaultProps={height:26,width:107.5};addPropertyControls(FramerIvUmD2crZ,{variant:{options:[\"UaeEH7lHd\",\"QxQCkPdJJ\"],optionTitles:[\"Footer Link\",\"Hidden Link\"],title:\"Variant\",type:ControlType.Enum},gdoxB2m4z:{defaultValue:\"Podcast Editor\",displayTextArea:false,title:\"Text\",type:ControlType.String},NYFfnnmLz:{title:\"Link\",type:ControlType.Link}});addFonts(FramerIvUmD2crZ,[{explicitInter:true,fonts:[{family:\"Lemance Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/q90sTd3xEuX4dOATpRx3NEBOQM.woff\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIvUmD2crZ\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"107.5\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"QxQCkPdJJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"gdoxB2m4z\\\":\\\"text\\\",\\\"NYFfnnmLz\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"26\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IvUmD2crZ.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"esrgRwxAy\",\"u88hczyM2\"];const serializationHash=\"framer-4X95N\";const variantClassNames={esrgRwxAy:\"framer-v-5uk0p5\",u88hczyM2:\"framer-v-1nosn6s\"};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={\"Footer Link\":\"esrgRwxAy\",\"Hidden Link\":\"u88hczyM2\"};const getProps=({height,id,link,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,gdoxB2m4z:(_ref=text!==null&&text!==void 0?text:props.gdoxB2m4z)!==null&&_ref!==void 0?_ref:\"Podcast Editor\",NYFfnnmLz:link!==null&&link!==void 0?link:props.NYFfnnmLz,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"esrgRwxAy\"};};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,gdoxB2m4z,NYFfnnmLz,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"esrgRwxAy\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isDisplayed=()=>{if(baseVariant===\"u88hczyM2\")return false;return true;};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:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:NYFfnnmLz,openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-5uk0p5\",className,classNames)} framer-1qjkirc`,\"data-framer-name\":\"Footer Link\",layoutDependency:layoutDependency,layoutId:\"esrgRwxAy\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xlbWFuY2UgUmVndWxhcg==\",\"--framer-font-family\":'\"Lemance Regular\", \"Lemance Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(224, 224, 224))\"},children:\"Podcast Editor\"})}),className:\"framer-10u9ydi\",\"data-framer-name\":\"Podcast Editor\",fonts:[\"CUSTOM;Lemance Regular\"],layoutDependency:layoutDependency,layoutId:\"akA2Yab0x\",style:{\"--extracted-r6o4lv\":\"rgb(224, 224, 224)\",\"--framer-paragraph-spacing\":\"0px\"},text:gdoxB2m4z,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4X95N.framer-1qjkirc, .framer-4X95N .framer-1qjkirc { display: block; }\",\".framer-4X95N.framer-5uk0p5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 26px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-4X95N .framer-10u9ydi { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4X95N.framer-5uk0p5 { gap: 0px; } .framer-4X95N.framer-5uk0p5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4X95N.framer-5uk0p5 > :first-child { margin-left: 0px; } .framer-4X95N.framer-5uk0p5 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 107.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"u88hczyM2\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"gdoxB2m4z\":\"text\",\"NYFfnnmLz\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJjcUJMO5U=withCSS(Component,css,\"framer-4X95N\");export default FramerJjcUJMO5U;FramerJjcUJMO5U.displayName=\"Footer Link\";FramerJjcUJMO5U.defaultProps={height:26,width:107.5};addPropertyControls(FramerJjcUJMO5U,{variant:{options:[\"esrgRwxAy\",\"u88hczyM2\"],optionTitles:[\"Footer Link\",\"Hidden Link\"],title:\"Variant\",type:ControlType.Enum},gdoxB2m4z:{defaultValue:\"Podcast Editor\",displayTextArea:false,title:\"Text\",type:ControlType.String},NYFfnnmLz:{title:\"Link\",type:ControlType.Link}});addFonts(FramerJjcUJMO5U,[{explicitInter:true,fonts:[{family:\"Lemance Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/q90sTd3xEuX4dOATpRx3NEBOQM.woff\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJjcUJMO5U\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"gdoxB2m4z\\\":\\\"text\\\",\\\"NYFfnnmLz\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"u88hczyM2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"107.5\",\"framerIntrinsicHeight\":\"26\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JjcUJMO5U.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"IhkVvpBJC\",\"bfQmxv3My\"];const serializationHash=\"framer-8AzI6\";const variantClassNames={bfQmxv3My:\"framer-v-1ogn8ea\",IhkVvpBJC:\"framer-v-78xc2r\"};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={\"Footer Link\":\"IhkVvpBJC\",\"Hidden Link\":\"bfQmxv3My\"};const getProps=({height,id,link,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,gdoxB2m4z:(_ref=text!==null&&text!==void 0?text:props.gdoxB2m4z)!==null&&_ref!==void 0?_ref:\"Podcast Editor\",NYFfnnmLz:link!==null&&link!==void 0?link:props.NYFfnnmLz,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"IhkVvpBJC\"};};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,gdoxB2m4z,NYFfnnmLz,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"IhkVvpBJC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isDisplayed=()=>{if(baseVariant===\"bfQmxv3My\")return false;return true;};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:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:NYFfnnmLz,openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-78xc2r\",className,classNames)} framer-1n67y84`,\"data-framer-name\":\"Footer Link\",layoutDependency:layoutDependency,layoutId:\"IhkVvpBJC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xlbWFuY2UgUmVndWxhcg==\",\"--framer-font-family\":'\"Lemance Regular\", \"Lemance Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5c708e6e-9e4f-4b8a-9d1b-3d557aa7e0be, rgb(255, 255, 255)))\"},children:\"Podcast Editor\"})}),className:\"framer-kmv0u9\",\"data-framer-name\":\"Podcast Editor\",fonts:[\"CUSTOM;Lemance Regular\"],layoutDependency:layoutDependency,layoutId:\"kDifK3VYs\",style:{\"--extracted-r6o4lv\":\"var(--token-5c708e6e-9e4f-4b8a-9d1b-3d557aa7e0be, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:gdoxB2m4z,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8AzI6.framer-1n67y84, .framer-8AzI6 .framer-1n67y84 { display: block; }\",\".framer-8AzI6.framer-78xc2r { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 26px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-8AzI6 .framer-kmv0u9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8AzI6.framer-78xc2r { gap: 0px; } .framer-8AzI6.framer-78xc2r > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-8AzI6.framer-78xc2r > :first-child { margin-left: 0px; } .framer-8AzI6.framer-78xc2r > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 107.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"bfQmxv3My\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"gdoxB2m4z\":\"text\",\"NYFfnnmLz\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerqTa4I1IQE=withCSS(Component,css,\"framer-8AzI6\");export default FramerqTa4I1IQE;FramerqTa4I1IQE.displayName=\"Footer Link Copy 7\";FramerqTa4I1IQE.defaultProps={height:26,width:107.5};addPropertyControls(FramerqTa4I1IQE,{variant:{options:[\"IhkVvpBJC\",\"bfQmxv3My\"],optionTitles:[\"Footer Link\",\"Hidden Link\"],title:\"Variant\",type:ControlType.Enum},gdoxB2m4z:{defaultValue:\"Podcast Editor\",displayTextArea:false,title:\"Text\",type:ControlType.String},NYFfnnmLz:{title:\"Link\",type:ControlType.Link}});addFonts(FramerqTa4I1IQE,[{explicitInter:true,fonts:[{family:\"Lemance Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/q90sTd3xEuX4dOATpRx3NEBOQM.woff\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqTa4I1IQE\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"107.5\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"26\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"gdoxB2m4z\\\":\\\"text\\\",\\\"NYFfnnmLz\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"bfQmxv3My\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qTa4I1IQE.map", "// Generated by Framer (838580a)\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 FooterLinkCopy7 from\"https://framerusercontent.com/modules/vEhYLFK6xkHEfLtFx05y/ExanaA0Rzflo1fh02ABl/qTa4I1IQE.js\";const FooterLinkCopy7Fonts=getFonts(FooterLinkCopy7);const cycleOrder=[\"SKhyefFRw\"];const serializationHash=\"framer-kEWGI\";const variantClassNames={SKhyefFRw:\"framer-v-1h6crij\"};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 getProps=({address,addressTitle,height,id,width,...props})=>{var _ref,_ref1;return{...props,rtWJAYWgC:(_ref=address!==null&&address!==void 0?address:props.rtWJAYWgC)!==null&&_ref!==void 0?_ref:\"177 Parnell Road Auckland\",tASuZt7VV:(_ref1=addressTitle!==null&&addressTitle!==void 0?addressTitle:props.tASuZt7VV)!==null&&_ref1!==void 0?_ref1:\"New Zealand\"};};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,tASuZt7VV,rtWJAYWgC,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SKhyefFRw\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1h6crij\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"SKhyefFRw\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m043k4-container\",layoutDependency:layoutDependency,layoutId:\"VkmoMFUvC-container\",children:/*#__PURE__*/_jsx(FooterLinkCopy7,{gdoxB2m4z:tASuZt7VV,height:\"100%\",id:\"VkmoMFUvC\",layoutId:\"VkmoMFUvC\",style:{height:\"100%\"},variant:\"IhkVvpBJC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xlbWFuY2UgUmVndWxhcg==\",\"--framer-font-family\":'\"Lemance Regular\", \"Lemance Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-90bee933-e645-4eb2-abe2-32b83eeb2854, rgba(255, 255, 255, 0.8)))\"},children:\"177 Parnell Road Auckland\"})}),className:\"framer-7g6u4r\",\"data-framer-name\":\"Wibautstraat 131 D 1091 GL Amsterdam\",fonts:[\"CUSTOM;Lemance Regular\"],layoutDependency:layoutDependency,layoutId:\"mBJfUGF01\",style:{\"--extracted-r6o4lv\":\"var(--token-90bee933-e645-4eb2-abe2-32b83eeb2854, rgba(255, 255, 255, 0.8))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.8},text:rtWJAYWgC,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kEWGI.framer-kw2naf, .framer-kEWGI .framer-kw2naf { display: block; }\",\".framer-kEWGI.framer-1h6crij { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-kEWGI .framer-1m043k4-container { flex: none; height: 26px; position: relative; width: auto; }\",\".framer-kEWGI .framer-7g6u4r { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 166px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kEWGI.framer-1h6crij { gap: 0px; } .framer-kEWGI.framer-1h6crij > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-kEWGI.framer-1h6crij > :first-child { margin-top: 0px; } .framer-kEWGI.framer-1h6crij > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 56\n * @framerIntrinsicWidth 166\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"tASuZt7VV\":\"addressTitle\",\"rtWJAYWgC\":\"address\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerW0wmBZpSG=withCSS(Component,css,\"framer-kEWGI\");export default FramerW0wmBZpSG;FramerW0wmBZpSG.displayName=\"Footer Address\";FramerW0wmBZpSG.defaultProps={height:56,width:166};addPropertyControls(FramerW0wmBZpSG,{tASuZt7VV:{defaultValue:\"New Zealand\",displayTextArea:false,title:\"Address Title\",type:ControlType.String},rtWJAYWgC:{defaultValue:\"177 Parnell Road Auckland\",displayTextArea:false,title:\"Address\",type:ControlType.String}});addFonts(FramerW0wmBZpSG,[{explicitInter:true,fonts:[{family:\"Lemance Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/q90sTd3xEuX4dOATpRx3NEBOQM.woff\"}]},...FooterLinkCopy7Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW0wmBZpSG\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"166\",\"framerVariables\":\"{\\\"tASuZt7VV\\\":\\\"addressTitle\\\",\\\"rtWJAYWgC\\\":\\\"address\\\"}\",\"framerIntrinsicHeight\":\"56\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W0wmBZpSG.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"KPa9waonE\",\"cGVjsgUML\"];const serializationHash=\"framer-icXET\";const variantClassNames={cGVjsgUML:\"framer-v-1mguw5b\",KPa9waonE:\"framer-v-9xtjqe\"};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={\"Footer Link\":\"KPa9waonE\",\"Hidden Link\":\"cGVjsgUML\"};const getProps=({height,id,link,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,gdoxB2m4z:(_ref=text!==null&&text!==void 0?text:props.gdoxB2m4z)!==null&&_ref!==void 0?_ref:\"Podcast Editor\",NYFfnnmLz:link!==null&&link!==void 0?link:props.NYFfnnmLz,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"KPa9waonE\"};};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,gdoxB2m4z,NYFfnnmLz,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KPa9waonE\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isDisplayed=()=>{if(baseVariant===\"cGVjsgUML\")return false;return true;};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:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:NYFfnnmLz,openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-9xtjqe\",className,classNames)} framer-1yyweiy`,\"data-framer-name\":\"Footer Link\",layoutDependency:layoutDependency,layoutId:\"KPa9waonE\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xlbWFuY2UgUmVndWxhcg==\",\"--framer-font-family\":'\"Lemance Regular\", \"Lemance Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(224, 224, 224))\"},children:\"Podcast Editor\"})}),className:\"framer-5bih46\",\"data-framer-name\":\"Podcast Editor\",fonts:[\"CUSTOM;Lemance Regular\"],layoutDependency:layoutDependency,layoutId:\"Y5n3nR0Tl\",style:{\"--extracted-r6o4lv\":\"rgb(224, 224, 224)\",\"--framer-paragraph-spacing\":\"0px\"},text:gdoxB2m4z,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-icXET.framer-1yyweiy, .framer-icXET .framer-1yyweiy { display: block; }\",\".framer-icXET.framer-9xtjqe { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 26px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-icXET .framer-5bih46 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-icXET.framer-9xtjqe { gap: 0px; } .framer-icXET.framer-9xtjqe > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-icXET.framer-9xtjqe > :first-child { margin-left: 0px; } .framer-icXET.framer-9xtjqe > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 107.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"cGVjsgUML\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"gdoxB2m4z\":\"text\",\"NYFfnnmLz\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZWpqkbScP=withCSS(Component,css,\"framer-icXET\");export default FramerZWpqkbScP;FramerZWpqkbScP.displayName=\"Footer Link Copy 2\";FramerZWpqkbScP.defaultProps={height:26,width:107.5};addPropertyControls(FramerZWpqkbScP,{variant:{options:[\"KPa9waonE\",\"cGVjsgUML\"],optionTitles:[\"Footer Link\",\"Hidden Link\"],title:\"Variant\",type:ControlType.Enum},gdoxB2m4z:{defaultValue:\"Podcast Editor\",displayTextArea:false,title:\"Text\",type:ControlType.String},NYFfnnmLz:{title:\"Link\",type:ControlType.Link}});addFonts(FramerZWpqkbScP,[{explicitInter:true,fonts:[{family:\"Lemance Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/q90sTd3xEuX4dOATpRx3NEBOQM.woff\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZWpqkbScP\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"107.5\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"cGVjsgUML\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"26\",\"framerVariables\":\"{\\\"gdoxB2m4z\\\":\\\"text\\\",\\\"NYFfnnmLz\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZWpqkbScP.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FooterLinkCopy6 from\"https://framerusercontent.com/modules/8izSxuV33sCNRKs9fTmo/U2GQEeTOldsVsT8ly22D/B7HiPpZai.js\";import FooterLinkCopy5 from\"https://framerusercontent.com/modules/wyJrCe6k2xsCn61GHntf/WryyfSEtO14sCd8ANUYM/dqngQQWDj.js\";import FooterAddressCopy from\"https://framerusercontent.com/modules/mnf3I3vb3OYySM7GsuPs/HuWMABUYxdAA1A6fpffC/I5ovOHfew.js\";import FooterLinkCopy3 from\"https://framerusercontent.com/modules/8OtmehsJibwZJfqM8IQl/8bOwqra3lfuDDCZuw0HY/IvUmD2crZ.js\";import FooterLink from\"https://framerusercontent.com/modules/bOcuhGQwRRj2MGrP2cNP/vxYf3ixNJN6oSgi7kgLE/JjcUJMO5U.js\";import FooterAddress from\"https://framerusercontent.com/modules/l1NVcS3GvHthw9A3oiki/RajmkFVmT5LjoeBZXS4g/W0wmBZpSG.js\";import FooterLinkCopy2 from\"https://framerusercontent.com/modules/qxEc2OyXTSc88l5bOWKG/vjt6GrACFCnDKya4W56f/ZWpqkbScP.js\";const FooterLinkCopy3Fonts=getFonts(FooterLinkCopy3);const FooterLinkCopy5Fonts=getFonts(FooterLinkCopy5);const FooterLinkCopy6Fonts=getFonts(FooterLinkCopy6);const FooterLinkFonts=getFonts(FooterLink);const FooterLinkCopy2Fonts=getFonts(FooterLinkCopy2);const FooterAddressFonts=getFonts(FooterAddress);const FooterAddressCopyFonts=getFonts(FooterAddressCopy);const cycleOrder=[\"wU9l6_pjm\",\"nmRv0aiH5\"];const serializationHash=\"framer-thyMZ\";const variantClassNames={nmRv0aiH5:\"framer-v-1ue26l5\",wU9l6_pjm:\"framer-v-1eawhub\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Footer Nav\":\"wU9l6_pjm\",\"Mobile Footer Nav\":\"nmRv0aiH5\"};const getProps=({address,height,id,width,...props})=>{return{...props,CD94Z5ZUr:address??props.CD94Z5ZUr??\"+61 3 9994 1790\",variant:humanReadableVariantMap[props.variant]??props.variant??\"wU9l6_pjm\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,CD94Z5ZUr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wU9l6_pjm\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1eawhub\",className,classNames),\"data-framer-name\":\"Footer Nav\",layoutDependency:layoutDependency,layoutId:\"wU9l6_pjm\",ref:refBinding,style:{...style},...addPropertyOverrides({nmRv0aiH5:{\"data-framer-name\":\"Mobile Footer Nav\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kfdgm7\",\"data-framer-name\":\"Footer Link List Col\",layoutDependency:layoutDependency,layoutId:\"HipjIRmyl\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-132of1h\",\"data-framer-name\":\"Footer Links Header\",layoutDependency:layoutDependency,layoutId:\"VSE0sDrsA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xpY2Vuc2VkIGZvciB1c2UgYXQgaHR0cHM6Ly93d3cuY3liZXJ3b3Jrc2hvcC5jby5uei4g\",\"--framer-font-family\":'\"Licensed for use at https://www.cyberworkshop.co.nz. \", \"Licensed for use at https://www.cyberworkshop.co.nz.  Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Shopify ERP Integations\"})}),className:\"framer-1mjg74m\",\"data-framer-name\":\"Features\",fonts:[\"CUSTOM;Licensed for use at https://www.cyberworkshop.co.nz. \"],layoutDependency:layoutDependency,layoutId:\"Ew7F1tinF\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xn8ad8\",\"data-framer-name\":\"Footer Link List\",layoutDependency:layoutDependency,layoutId:\"huJX4czGo\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aqJl1waAz\"},implicitPathVariables:undefined},{href:{webPageId:\"aqJl1waAz\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+0+34+0+0,...addPropertyOverrides({nmRv0aiH5:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||556)-0-556)/2*0)+0+42+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1c7wmu0-container\",layoutDependency:layoutDependency,layoutId:\"EAA8OnCcX-container\",nodeId:\"EAA8OnCcX\",rendersWithMotion:true,scopeId:\"ei68GZy_X\",children:/*#__PURE__*/_jsx(FooterLinkCopy3,{gdoxB2m4z:\"MYOB Acumatica ERP\",height:\"100%\",id:\"EAA8OnCcX\",layoutId:\"EAA8OnCcX\",NYFfnnmLz:resolvedLinks[0],variant:\"UaeEH7lHd\",width:\"100%\",...addPropertyOverrides({nmRv0aiH5:{NYFfnnmLz:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PEkIQ8nxL\"},implicitPathVariables:undefined},{href:{webPageId:\"PEkIQ8nxL\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+0+34+0+32,...addPropertyOverrides({nmRv0aiH5:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||556)-0-556)/2*0)+0+42+0+32}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ve25oc-container\",layoutDependency:layoutDependency,layoutId:\"Wwf71047c-container\",nodeId:\"Wwf71047c\",rendersWithMotion:true,scopeId:\"ei68GZy_X\",children:/*#__PURE__*/_jsx(FooterLinkCopy3,{gdoxB2m4z:\"MYOB Advanced ERP\",height:\"100%\",id:\"Wwf71047c\",layoutId:\"Wwf71047c\",NYFfnnmLz:resolvedLinks1[0],variant:\"UaeEH7lHd\",width:\"100%\",...addPropertyOverrides({nmRv0aiH5:{NYFfnnmLz:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"V65YOA0qp\"},implicitPathVariables:undefined},{href:{webPageId:\"V65YOA0qp\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+0+34+0+64,...addPropertyOverrides({nmRv0aiH5:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||556)-0-556)/2*0)+0+42+0+64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-b05eff-container\",layoutDependency:layoutDependency,layoutId:\"d8ooCy7d4-container\",nodeId:\"d8ooCy7d4\",rendersWithMotion:true,scopeId:\"ei68GZy_X\",children:/*#__PURE__*/_jsx(FooterLinkCopy5,{gdoxB2m4z:\"MYOB Exo ERP\",height:\"100%\",id:\"d8ooCy7d4\",layoutId:\"d8ooCy7d4\",NYFfnnmLz:resolvedLinks2[0],variant:\"QrujZv_fp\",width:\"100%\",...addPropertyOverrides({nmRv0aiH5:{NYFfnnmLz:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"A5UDawoRS\"},implicitPathVariables:undefined},{href:{webPageId:\"A5UDawoRS\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+0+34+0+96,...addPropertyOverrides({nmRv0aiH5:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||556)-0-556)/2*0)+0+42+0+96}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t8t9k3-container\",layoutDependency:layoutDependency,layoutId:\"cVpzC__0W-container\",nodeId:\"cVpzC__0W\",rendersWithMotion:true,scopeId:\"ei68GZy_X\",children:/*#__PURE__*/_jsx(FooterLinkCopy6,{gdoxB2m4z:\"Unleashed Inventory\",height:\"100%\",id:\"cVpzC__0W\",layoutId:\"cVpzC__0W\",NYFfnnmLz:resolvedLinks3[0],variant:\"D4xwMjJS9\",width:\"100%\",...addPropertyOverrides({nmRv0aiH5:{NYFfnnmLz:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9yx3bq\",\"data-framer-name\":\"Footer Link List Col\",layoutDependency:layoutDependency,layoutId:\"ZNFS5vjYW\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b66kt0\",\"data-framer-name\":\"Footer Links Header\",layoutDependency:layoutDependency,layoutId:\"VY9NUZsUU\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xpY2Vuc2VkIGZvciB1c2UgYXQgaHR0cHM6Ly93d3cuY3liZXJ3b3Jrc2hvcC5jby5uei4g\",\"--framer-font-family\":'\"Licensed for use at https://www.cyberworkshop.co.nz. \", \"Licensed for use at https://www.cyberworkshop.co.nz.  Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Shopify Experts\"})}),className:\"framer-1bth12o\",\"data-framer-name\":\"Features\",fonts:[\"CUSTOM;Licensed for use at https://www.cyberworkshop.co.nz. \"],layoutDependency:layoutDependency,layoutId:\"Efsecy6Kv\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kis2p5\",\"data-framer-name\":\"Footer Link List\",layoutDependency:layoutDependency,layoutId:\"A8v2jS0dc\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"IDwtmM4ia\"},implicitPathVariables:undefined},{href:{webPageId:\"IDwtmM4ia\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+0+34+0+0,...addPropertyOverrides({nmRv0aiH5:{y:(componentViewport?.y||0)+0+(0+164+((componentViewport?.height||556)-0-556)/2*1)+32+42+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gdycx-container\",layoutDependency:layoutDependency,layoutId:\"lPuOYhPPD-container\",nodeId:\"lPuOYhPPD\",rendersWithMotion:true,scopeId:\"ei68GZy_X\",children:/*#__PURE__*/_jsx(FooterLink,{gdoxB2m4z:\"Shopify Support\",height:\"100%\",id:\"lPuOYhPPD\",layoutId:\"lPuOYhPPD\",NYFfnnmLz:resolvedLinks4[0],variant:\"esrgRwxAy\",width:\"100%\",...addPropertyOverrides({nmRv0aiH5:{NYFfnnmLz:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"y6CIP6vbx\"},implicitPathVariables:undefined},{href:{webPageId:\"y6CIP6vbx\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+0+34+0+32,...addPropertyOverrides({nmRv0aiH5:{y:(componentViewport?.y||0)+0+(0+164+((componentViewport?.height||556)-0-556)/2*1)+32+42+0+32}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1skisa0-container\",layoutDependency:layoutDependency,layoutId:\"WURgztEdz-container\",nodeId:\"WURgztEdz\",rendersWithMotion:true,scopeId:\"ei68GZy_X\",children:/*#__PURE__*/_jsx(FooterLinkCopy2,{gdoxB2m4z:\"Shopify Case Studies\",height:\"100%\",id:\"WURgztEdz\",layoutId:\"WURgztEdz\",NYFfnnmLz:resolvedLinks5[0],variant:\"KPa9waonE\",width:\"100%\",...addPropertyOverrides({nmRv0aiH5:{NYFfnnmLz:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"O_u6mOeZU\"},implicitPathVariables:undefined},{href:{webPageId:\"O_u6mOeZU\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+0+34+0+64,...addPropertyOverrides({nmRv0aiH5:{y:(componentViewport?.y||0)+0+(0+164+((componentViewport?.height||556)-0-556)/2*1)+32+42+0+64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yydg6g-container\",layoutDependency:layoutDependency,layoutId:\"kGboDB4tU-container\",nodeId:\"kGboDB4tU\",rendersWithMotion:true,scopeId:\"ei68GZy_X\",children:/*#__PURE__*/_jsx(FooterLinkCopy2,{gdoxB2m4z:\"Shopify Expert Reviews\",height:\"100%\",id:\"kGboDB4tU\",layoutId:\"kGboDB4tU\",NYFfnnmLz:resolvedLinks6[0],variant:\"KPa9waonE\",width:\"100%\",...addPropertyOverrides({nmRv0aiH5:{NYFfnnmLz:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MDyaJ9NZ4\"},implicitPathVariables:undefined},{href:{webPageId:\"MDyaJ9NZ4\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+0+34+0+96,...addPropertyOverrides({nmRv0aiH5:{y:(componentViewport?.y||0)+0+(0+164+((componentViewport?.height||556)-0-556)/2*1)+32+42+0+96}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14c1jy7-container\",layoutDependency:layoutDependency,layoutId:\"kYFf0UH3L-container\",nodeId:\"kYFf0UH3L\",rendersWithMotion:true,scopeId:\"ei68GZy_X\",children:/*#__PURE__*/_jsx(FooterLinkCopy2,{gdoxB2m4z:\"Shopify Builds\",height:\"100%\",id:\"kYFf0UH3L\",layoutId:\"kYFf0UH3L\",NYFfnnmLz:resolvedLinks7[0],variant:\"KPa9waonE\",width:\"100%\",...addPropertyOverrides({nmRv0aiH5:{NYFfnnmLz:resolvedLinks7[1]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n5nwis\",\"data-framer-name\":\"Address List Col\",layoutDependency:layoutDependency,layoutId:\"VXj0WlnPM\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ptj70a\",\"data-framer-name\":\"Footer Links Header\",layoutDependency:layoutDependency,layoutId:\"hSniXy0uw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0xpY2Vuc2VkIGZvciB1c2UgYXQgaHR0cHM6Ly93d3cuY3liZXJ3b3Jrc2hvcC5jby5uei4g\",\"--framer-font-family\":'\"Licensed for use at https://www.cyberworkshop.co.nz. \", \"Licensed for use at https://www.cyberworkshop.co.nz.  Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Phone Numbers  \"})}),className:\"framer-1f8q5x0\",\"data-framer-name\":\"Features\",fonts:[\"CUSTOM;Licensed for use at https://www.cyberworkshop.co.nz. \"],layoutDependency:layoutDependency,layoutId:\"KIIQ6s7Mz\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gxvwm\",\"data-framer-name\":\"Address List\",layoutDependency:layoutDependency,layoutId:\"BMLLjHlu4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+0+0+34+0+0,...addPropertyOverrides({nmRv0aiH5:{y:(componentViewport?.y||0)+0+(0+360+((componentViewport?.height||556)-0-556)/2*2)+32+34+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14th0li-container\",layoutDependency:layoutDependency,layoutId:\"ubCmP2pSa-container\",nodeId:\"ubCmP2pSa\",rendersWithMotion:true,scopeId:\"ei68GZy_X\",children:/*#__PURE__*/_jsx(FooterAddress,{height:\"100%\",id:\"ubCmP2pSa\",layoutId:\"ubCmP2pSa\",rtWJAYWgC:\"+64 9 889 8881\",tASuZt7VV:\"New Zealand\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+0+34+0+80,...addPropertyOverrides({nmRv0aiH5:{y:(componentViewport?.y||0)+0+(0+360+((componentViewport?.height||556)-0-556)/2*2)+32+34+0+76}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1g7tbsn-container\",layoutDependency:layoutDependency,layoutId:\"GlLhzt8lc-container\",nodeId:\"GlLhzt8lc\",rendersWithMotion:true,scopeId:\"ei68GZy_X\",children:/*#__PURE__*/_jsx(FooterAddressCopy,{height:\"100%\",id:\"GlLhzt8lc\",layoutId:\"GlLhzt8lc\",rtWJAYWgC:CD94Z5ZUr,tASuZt7VV:\"Australia\",width:\"100%\"})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-thyMZ.framer-jq87f5, .framer-thyMZ .framer-jq87f5 { display: block; }\",\".framer-thyMZ.framer-1eawhub { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-thyMZ .framer-1kfdgm7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-thyMZ .framer-132of1h { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-thyMZ .framer-1mjg74m, .framer-thyMZ .framer-1bth12o, .framer-thyMZ .framer-1f8q5x0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-thyMZ .framer-xn8ad8, .framer-thyMZ .framer-1kis2p5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-thyMZ .framer-1c7wmu0-container, .framer-thyMZ .framer-1ve25oc-container, .framer-thyMZ .framer-b05eff-container, .framer-thyMZ .framer-t8t9k3-container, .framer-thyMZ .framer-gdycx-container, .framer-thyMZ .framer-1skisa0-container, .framer-thyMZ .framer-1yydg6g-container, .framer-thyMZ .framer-14c1jy7-container, .framer-thyMZ .framer-14th0li-container, .framer-thyMZ .framer-1g7tbsn-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-thyMZ .framer-9yx3bq, .framer-thyMZ .framer-n5nwis { -webkit-user-select: none; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; user-select: none; width: 170px; }\",\".framer-thyMZ .framer-1b66kt0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-thyMZ .framer-ptj70a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-thyMZ .framer-gxvwm { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-thyMZ .framer-1kfdgm7, .framer-thyMZ .framer-132of1h, .framer-thyMZ .framer-xn8ad8, .framer-thyMZ .framer-9yx3bq, .framer-thyMZ .framer-1b66kt0, .framer-thyMZ .framer-1kis2p5, .framer-thyMZ .framer-n5nwis, .framer-thyMZ .framer-ptj70a, .framer-thyMZ .framer-gxvwm { gap: 0px; } .framer-thyMZ .framer-1kfdgm7 > *, .framer-thyMZ .framer-9yx3bq > *, .framer-thyMZ .framer-n5nwis > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-thyMZ .framer-1kfdgm7 > :first-child, .framer-thyMZ .framer-xn8ad8 > :first-child, .framer-thyMZ .framer-9yx3bq > :first-child, .framer-thyMZ .framer-1kis2p5 > :first-child, .framer-thyMZ .framer-n5nwis > :first-child, .framer-thyMZ .framer-ptj70a > :first-child, .framer-thyMZ .framer-gxvwm > :first-child { margin-top: 0px; } .framer-thyMZ .framer-1kfdgm7 > :last-child, .framer-thyMZ .framer-xn8ad8 > :last-child, .framer-thyMZ .framer-9yx3bq > :last-child, .framer-thyMZ .framer-1kis2p5 > :last-child, .framer-thyMZ .framer-n5nwis > :last-child, .framer-thyMZ .framer-ptj70a > :last-child, .framer-thyMZ .framer-gxvwm > :last-child { margin-bottom: 0px; } .framer-thyMZ .framer-132of1h > *, .framer-thyMZ .framer-1b66kt0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-thyMZ .framer-132of1h > :first-child, .framer-thyMZ .framer-1b66kt0 > :first-child { margin-left: 0px; } .framer-thyMZ .framer-132of1h > :last-child, .framer-thyMZ .framer-1b66kt0 > :last-child { margin-right: 0px; } .framer-thyMZ .framer-xn8ad8 > *, .framer-thyMZ .framer-1kis2p5 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-thyMZ .framer-ptj70a > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-thyMZ .framer-gxvwm > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-thyMZ.framer-v-1ue26l5.framer-1eawhub { flex-direction: column; }\",\".framer-thyMZ.framer-v-1ue26l5 .framer-1kfdgm7 { align-self: stretch; gap: 20px; width: auto; }\",\".framer-thyMZ.framer-v-1ue26l5 .framer-132of1h { align-self: unset; width: 100%; }\",\".framer-thyMZ.framer-v-1ue26l5 .framer-9yx3bq { gap: 20px; padding: 32px 0px 0px 0px; }\",\".framer-thyMZ.framer-v-1ue26l5 .framer-n5nwis { padding: 32px 0px 0px 0px; }\",\".framer-thyMZ.framer-v-1ue26l5 .framer-gxvwm { gap: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-thyMZ.framer-v-1ue26l5.framer-1eawhub, .framer-thyMZ.framer-v-1ue26l5 .framer-1kfdgm7, .framer-thyMZ.framer-v-1ue26l5 .framer-9yx3bq, .framer-thyMZ.framer-v-1ue26l5 .framer-gxvwm { gap: 0px; } .framer-thyMZ.framer-v-1ue26l5.framer-1eawhub > *, .framer-thyMZ.framer-v-1ue26l5.framer-1eawhub > :first-child, .framer-thyMZ.framer-v-1ue26l5.framer-1eawhub > :last-child { margin: 0px; } .framer-thyMZ.framer-v-1ue26l5 .framer-1kfdgm7 > *, .framer-thyMZ.framer-v-1ue26l5 .framer-9yx3bq > *, .framer-thyMZ.framer-v-1ue26l5 .framer-gxvwm > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-thyMZ.framer-v-1ue26l5 .framer-1kfdgm7 > :first-child, .framer-thyMZ.framer-v-1ue26l5 .framer-9yx3bq > :first-child, .framer-thyMZ.framer-v-1ue26l5 .framer-gxvwm > :first-child { margin-top: 0px; } .framer-thyMZ.framer-v-1ue26l5 .framer-1kfdgm7 > :last-child, .framer-thyMZ.framer-v-1ue26l5 .framer-9yx3bq > :last-child, .framer-thyMZ.framer-v-1ue26l5 .framer-gxvwm > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 168\n * @framerIntrinsicWidth 529\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"nmRv0aiH5\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"CD94Z5ZUr\":\"address\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerei68GZy_X=withCSS(Component,css,\"framer-thyMZ\");export default Framerei68GZy_X;Framerei68GZy_X.displayName=\"Footer Nav Copy\";Framerei68GZy_X.defaultProps={height:168,width:529};addPropertyControls(Framerei68GZy_X,{variant:{options:[\"wU9l6_pjm\",\"nmRv0aiH5\"],optionTitles:[\"Footer Nav\",\"Mobile Footer Nav\"],title:\"Variant\",type:ControlType.Enum},CD94Z5ZUr:{defaultValue:\"+61 3 9994 1790\",displayTextArea:false,title:\"Address\",type:ControlType.String}});addFonts(Framerei68GZy_X,[{explicitInter:true,fonts:[]},...FooterLinkCopy3Fonts,...FooterLinkCopy5Fonts,...FooterLinkCopy6Fonts,...FooterLinkFonts,...FooterLinkCopy2Fonts,...FooterAddressFonts,...FooterAddressCopyFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerei68GZy_X\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"529\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nmRv0aiH5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"168\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"CD94Z5ZUr\\\":\\\"address\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (04e0834)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"BwYKIU4_N\"];const serializationHash=\"framer-NbnjU\";const variantClassNames={BwYKIU4_N:\"framer-v-3uckt5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,image,link,width,...props})=>{var _ref;return{...props,lbF8D2J7x:(_ref=image!==null&&image!==void 0?image:props.lbF8D2J7x)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/9lzUJQVx6BtIPEuT8vZnZKvFOR4.svg\"},Yrl9tODuP:link!==null&&link!==void 0?link:props.Yrl9tODuP};};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,lbF8D2J7x,Yrl9tODuP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BwYKIU4_N\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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:Yrl9tODuP,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-3uckt5\",className,classNames)} framer-13uru98`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"BwYKIU4_N\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(50, 50, 50)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:20,intrinsicWidth:20,pixelHeight:20,pixelWidth:20,sizes:\"20px\",...toResponsiveImage(lbF8D2J7x),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1gzn6qq\",\"data-framer-name\":\"Up Icon\",layoutDependency:layoutDependency,layoutId:\"k29xs8b9Y\"})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NbnjU.framer-13uru98, .framer-NbnjU .framer-13uru98 { display: block; }\",\".framer-NbnjU.framer-3uckt5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; text-decoration: none; width: min-content; }\",\".framer-NbnjU .framer-1gzn6qq { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NbnjU.framer-3uckt5 { gap: 0px; } .framer-NbnjU.framer-3uckt5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NbnjU.framer-3uckt5 > :first-child { margin-left: 0px; } .framer-NbnjU.framer-3uckt5 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"lbF8D2J7x\":\"image\",\"Yrl9tODuP\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRqtU1cXGM=withCSS(Component,css,\"framer-NbnjU\");export default FramerRqtU1cXGM;FramerRqtU1cXGM.displayName=\"Go Top Button\";FramerRqtU1cXGM.defaultProps={height:40,width:40};addPropertyControls(FramerRqtU1cXGM,{lbF8D2J7x:{__defaultAssetReference:\"data:framer/asset-reference,9lzUJQVx6BtIPEuT8vZnZKvFOR4.svg?originalFilename=nav-arrow-up.svg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},Yrl9tODuP:{title:\"Link\",type:ControlType.Link}});addFonts(FramerRqtU1cXGM,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRqtU1cXGM\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"lbF8D2J7x\\\":\\\"image\\\",\\\"Yrl9tODuP\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"40\",\"framerIntrinsicHeight\":\"40\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RqtU1cXGM.map"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withLineClamp2", "Component", "props", "text", "otherProps", "p", "DHGhNDtzm_exports", "__export", "__FramerMetadata__", "DHGhNDtzm_default", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gdoxB2m4z", "NYFfnnmLz", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "isDisplayed", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "RichText2", "css", "FramerB7HiPpZai", "withCSS", "B7HiPpZai_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gdoxB2m4z", "NYFfnnmLz", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "isDisplayed", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "RichText2", "css", "FramerdqngQQWDj", "withCSS", "dqngQQWDj_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gdoxB2m4z", "NYFfnnmLz", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "isDisplayed", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "RichText2", "css", "FramertLXeG44Sj", "withCSS", "tLXeG44Sj_default", "addPropertyControls", "ControlType", "addFonts", "FooterLinkCopy8Fonts", "getFonts", "tLXeG44Sj_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "address", "addressTitle", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "tASuZt7VV", "rtWJAYWgC", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "tLXeG44Sj_default", "RichText2", "css", "FramerI5ovOHfew", "withCSS", "I5ovOHfew_default", "addPropertyControls", "ControlType", "addFonts", "FooterLinkCopy8Fonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gdoxB2m4z", "NYFfnnmLz", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "isDisplayed", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "RichText2", "css", "FramerIvUmD2crZ", "withCSS", "IvUmD2crZ_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gdoxB2m4z", "NYFfnnmLz", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "isDisplayed", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "RichText2", "css", "FramerJjcUJMO5U", "withCSS", "JjcUJMO5U_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gdoxB2m4z", "NYFfnnmLz", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "isDisplayed", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "RichText2", "css", "FramerqTa4I1IQE", "withCSS", "qTa4I1IQE_default", "addPropertyControls", "ControlType", "addFonts", "FooterLinkCopy7Fonts", "getFonts", "qTa4I1IQE_default", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "address", "addressTitle", "height", "id", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "tASuZt7VV", "rtWJAYWgC", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "qTa4I1IQE_default", "RichText2", "css", "FramerW0wmBZpSG", "withCSS", "W0wmBZpSG_default", "addPropertyControls", "ControlType", "addFonts", "FooterLinkCopy7Fonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gdoxB2m4z", "NYFfnnmLz", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "isDisplayed", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "RichText2", "css", "FramerZWpqkbScP", "withCSS", "ZWpqkbScP_default", "addPropertyControls", "ControlType", "addFonts", "FooterLinkCopy3Fonts", "getFonts", "IvUmD2crZ_default", "FooterLinkCopy5Fonts", "dqngQQWDj_default", "FooterLinkCopy6Fonts", "B7HiPpZai_default", "FooterLinkFonts", "JjcUJMO5U_default", "FooterLinkCopy2Fonts", "ZWpqkbScP_default", "FooterAddressFonts", "W0wmBZpSG_default", "FooterAddressCopyFonts", "I5ovOHfew_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "address", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "CD94Z5ZUr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "u", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "css", "Framerei68GZy_X", "withCSS", "ei68GZy_X_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "link", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "lbF8D2J7x", "Yrl9tODuP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "Image2", "css", "FramerRqtU1cXGM", "withCSS", "RqtU1cXGM_default", "addPropertyControls", "ControlType", "addFonts", "FooterNavCopyFonts", "getFonts", "ei68GZy_X_default", "GoTopButtonFonts", "RqtU1cXGM_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "transformTemplate2", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "FXjO73sPy", "VUdvkQj1U", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "SVG", "RichText2", "Link", "ComponentViewportProvider", "css", "FramerDHGhNDtzm", "withCSS", "DHGhNDtzm_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
