{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js", "ssg:https://framerusercontent.com/modules/Bhk6UF9o9titdaOT9cCn/R0wTymTZwpVEOo91Ppcn/SbcncWkhb.js", "ssg:https://framerusercontent.com/modules/YIboqLT202NyCOHAg5Ws/gZagsR2yV4LXYSA1gfDN/VhhwaDUXx.js", "ssg:https://framerusercontent.com/modules/80Y9rcUAhn2T4MqToz4c/szGWoXEWYXQLaRb6fSXt/hnqyZAHQy.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){const circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){const updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{replacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};const accessibilityProps={role:\"img\",...props.title&&{\"aria-label\":props.title},...props.description&&{\"aria-description\":props.description}};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle,...accessibilityProps});}SVG.displayName=\"SVG\";SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\",title:\"\",description:\"\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},title:{type:ControlType.String,title:\"Title\",defaultValue:\"\",placeholder:\"Icon name...\"},description:{type:ControlType.String,title:\"Description\",defaultValue:\"\",placeholder:\"Icon purpose...\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG_Prod.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";const SVGFonts=getFonts(SVG);const enabledGestures={ApkA8hN0y:{pressed:true},sVbbj7cfy:{pressed:true}};const cycleOrder=[\"sVbbj7cfy\",\"UG_GUzYBR\",\"p8OASCdNn\",\"ApkA8hN0y\"];const serializationHash=\"framer-gPP8N\";const variantClassNames={ApkA8hN0y:\"framer-v-yqgag3\",p8OASCdNn:\"framer-v-1rhliwl\",sVbbj7cfy:\"framer-v-blddi8\",UG_GUzYBR:\"framer-v-1e7yuw9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={duration:0,type:\"tween\"};const transition3={delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const transition4={delay:0,duration:.3,ease:[.12,.23,.35,1.69],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Anim 1\":\"UG_GUzYBR\",\"Anim 2\":\"p8OASCdNn\",\"Anim 3\":\"ApkA8hN0y\",Default:\"sVbbj7cfy\"};const getProps=({heartColor,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,AQGj2DLW6:(_ref=heartColor!==null&&heartColor!==void 0?heartColor:props.AQGj2DLW6)!==null&&_ref!==void 0?_ref:\"var(--token-b92d8a79-6df7-494c-b673-734142dc2b51, rgb(26, 26, 26))\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"sVbbj7cfy\"};};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,AQGj2DLW6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sVbbj7cfy\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaphll6de=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"UG_GUzYBR\");});const onAppear1objhg3=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"p8OASCdNn\"),50);});const onAppear1oh4oct=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ApkA8hN0y\"),310);});const onTapmktxou=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"sVbbj7cfy\");});useOnVariantChange(baseVariant,{p8OASCdNn:onAppear1oh4oct,UG_GUzYBR:onAppear1objhg3});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"ApkA8hN0y-pressed\")return true;if([\"UG_GUzYBR\",\"p8OASCdNn\",\"ApkA8hN0y\"].includes(baseVariant))return true;return false;};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,...addPropertyOverrides({ApkA8hN0y:{value:transition4},p8OASCdNn:{value:transition3},UG_GUzYBR:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-blddi8\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sVbbj7cfy\",onTap:onTaphll6de,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"ApkA8hN0y-pressed\":{\"data-framer-name\":undefined},\"sVbbj7cfy-pressed\":{\"data-framer-name\":undefined},ApkA8hN0y:{\"data-framer-name\":\"Anim 3\",onTap:onTapmktxou},p8OASCdNn:{\"data-framer-name\":\"Anim 2\",onTap:undefined},UG_GUzYBR:{\"data-framer-name\":\"Anim 1\",onTap:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gftf27\",\"data-framer-name\":\"Heart\",layoutDependency:layoutDependency,layoutId:\"M5DlS2xHW\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lgkgzw-container\",layoutDependency:layoutDependency,layoutId:\"VVAdiGkNe-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:AQGj2DLW6,customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.4884 21.3725C21.0163 16.5927 23.1144 10.9028 21.5102 6.90294C20.7314 4.96087 19.0967 3.56916 17.1686 3.13926C15.4711 2.76077 13.616 3.14222 11.9994 4.42553C10.3828 3.14222 8.52778 2.76077 6.83026 3.13927C4.9022 3.56917 3.26747 4.96089 2.48861 6.90295C0.884467 10.9029 2.98263 16.5927 11.5105 21.3725C11.8143 21.5428 12.1847 21.5428 12.4884 21.3725Z\" fill=\"black\"/> </svg>',description:\"\",height:\"100%\",id:\"VVAdiGkNe\",layoutId:\"VVAdiGkNe\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({ApkA8hN0y:{customColor:\"rgb(19, 101, 255)\"},p8OASCdNn:{customColor:\"rgb(19, 101, 255)\"},UG_GUzYBR:{customColor:\"rgb(247, 21, 77)\"}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q55ae6\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"dsWRHw05l\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wt2v2\",\"data-border\":true,\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"CqYuXvo0Y\",style:{\"--border-bottom-width\":\"8px\",\"--border-color\":\"var(--token-a042497d-749d-4d03-8d3a-78930210d354, rgb(32, 96, 223))\",\"--border-left-width\":\"8px\",\"--border-right-width\":\"8px\",\"--border-style\":\"solid\",\"--border-top-width\":\"8px\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},transformTemplate:transformTemplate1,variants:{ApkA8hN0y:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},p8OASCdNn:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(0, 128, 255)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},UG_GUzYBR:{\"--border-color\":\"rgb(0, 128, 255)\"}},...addPropertyOverrides({\"ApkA8hN0y-pressed\":{transformTemplate:undefined},ApkA8hN0y:{transformTemplate:undefined},p8OASCdNn:{transformTemplate:undefined}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t2esuf\",\"data-framer-name\":\"Dots\",layoutDependency:layoutDependency,layoutId:\"sDeaZ_zUa\",style:{opacity:0},variants:{p8OASCdNn:{opacity:1}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-z1okyx\",\"data-framer-name\":\"Dot 1\",layoutDependency:layoutDependency,layoutId:\"pLO4lqwGC\",style:{backgroundColor:\"rgb(47, 125, 254)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},transformTemplate:transformTemplate2,...addPropertyOverrides({\"ApkA8hN0y-pressed\":{transformTemplate:undefined},ApkA8hN0y:{transformTemplate:undefined},p8OASCdNn:{transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-v1z5ja\",\"data-framer-name\":\"Dot 2\",layoutDependency:layoutDependency,layoutId:\"QT7NbT1Te\",style:{backgroundColor:\"rgb(233, 61, 196)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11phty4\",\"data-framer-name\":\"Dot 3\",layoutDependency:layoutDependency,layoutId:\"lv1tnVV6z\",style:{backgroundColor:\"rgb(3, 199, 119)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9lp31h\",\"data-framer-name\":\"Dot 4\",layoutDependency:layoutDependency,layoutId:\"gw5HNCOFQ\",style:{backgroundColor:\"rgb(249, 201, 10)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sypf34\",\"data-framer-name\":\"Dot 5\",layoutDependency:layoutDependency,layoutId:\"vJriI_DuE\",style:{backgroundColor:\"rgb(236, 52, 128)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},transformTemplate:transformTemplate3,...addPropertyOverrides({\"ApkA8hN0y-pressed\":{transformTemplate:undefined},ApkA8hN0y:{transformTemplate:undefined},p8OASCdNn:{transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-28f6f3\",\"data-framer-name\":\"Dot 6\",layoutDependency:layoutDependency,layoutId:\"xKR_TLjZ0\",style:{backgroundColor:\"rgb(74, 155, 183)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15e1kul\",\"data-framer-name\":\"Dot 7\",layoutDependency:layoutDependency,layoutId:\"LMVdOHVS7\",style:{backgroundColor:\"rgb(126, 78, 255)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yc1dmo\",\"data-framer-name\":\"Dot 8\",layoutDependency:layoutDependency,layoutId:\"ijCTWIAY4\",style:{backgroundColor:\"rgb(233, 61, 196)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},transformTemplate:transformTemplate3,...addPropertyOverrides({\"ApkA8hN0y-pressed\":{transformTemplate:undefined},ApkA8hN0y:{transformTemplate:undefined},p8OASCdNn:{transformTemplate:undefined}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gPP8N.framer-1j40elp, .framer-gPP8N .framer-1j40elp { display: block; }\",\".framer-gPP8N.framer-blddi8 { cursor: pointer; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-gPP8N .framer-gftf27 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-gPP8N .framer-lgkgzw-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-gPP8N .framer-1q55ae6 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-gPP8N .framer-wt2v2 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 15px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gPP8N .framer-t2esuf { bottom: 0px; flex: none; left: 0px; overflow: visible; pointer-events: none; position: absolute; right: 0px; top: 0px; }\",\".framer-gPP8N .framer-z1okyx { aspect-ratio: 1 / 1; bottom: 7px; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 54%; overflow: hidden; position: absolute; width: 3px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gPP8N .framer-v1z5ja { aspect-ratio: 1 / 1; bottom: 7px; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 9px; overflow: hidden; position: absolute; width: 3px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gPP8N .framer-11phty4 { aspect-ratio: 1 / 1; bottom: 9px; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 7px; overflow: hidden; position: absolute; width: 3px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gPP8N .framer-9lp31h { aspect-ratio: 1 / 1; bottom: 9px; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 14px; overflow: hidden; position: absolute; width: 3px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gPP8N .framer-1sypf34 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 15px; overflow: hidden; position: absolute; top: 46%; width: 3px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gPP8N .framer-28f6f3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 13px; overflow: hidden; position: absolute; top: 7px; width: 3px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gPP8N .framer-15e1kul { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 9px; overflow: hidden; position: absolute; top: 7px; width: 3px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gPP8N .framer-yc1dmo { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 7px; overflow: hidden; position: absolute; top: 46%; width: 3px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gPP8N.framer-v-1e7yuw9.framer-blddi8, .framer-gPP8N.framer-v-1rhliwl.framer-blddi8 { cursor: unset; }\",\".framer-gPP8N.framer-v-1e7yuw9 .framer-gftf27 { bottom: unset; height: 2px; left: calc(50.00000000000002% - 2px / 2); right: unset; top: calc(50.00000000000002% - 2px / 2); width: 2px; }\",\".framer-gPP8N.framer-v-1rhliwl .framer-gftf27 { bottom: -2px; left: -2px; right: -2px; top: -2px; }\",\".framer-gPP8N.framer-v-1rhliwl .framer-1q55ae6, .framer-gPP8N.framer-v-yqgag3 .framer-1q55ae6 { bottom: -10px; left: -10px; right: -10px; top: -10px; }\",\".framer-gPP8N.framer-v-1rhliwl .framer-wt2v2, .framer-gPP8N.framer-v-yqgag3 .framer-wt2v2 { height: var(--framer-aspect-ratio-supported, 27px); left: -1px; right: -1px; top: -1px; width: unset; }\",\".framer-gPP8N.framer-v-1rhliwl .framer-z1okyx { bottom: -2px; left: unset; right: 2px; }\",\".framer-gPP8N.framer-v-1rhliwl .framer-v1z5ja { bottom: -7px; left: -2px; }\",\".framer-gPP8N.framer-v-1rhliwl .framer-11phty4 { bottom: 4px; left: -5px; }\",\".framer-gPP8N.framer-v-1rhliwl .framer-9lp31h { bottom: 6px; left: unset; right: -5px; }\",\".framer-gPP8N.framer-v-1rhliwl .framer-1sypf34 { left: unset; right: -11px; top: -8px; }\",\".framer-gPP8N.framer-v-1rhliwl .framer-28f6f3 { left: unset; right: 1px; top: -3px; }\",\".framer-gPP8N.framer-v-1rhliwl .framer-15e1kul { left: 4px; top: -14px; }\",\".framer-gPP8N.framer-v-1rhliwl .framer-yc1dmo { left: -9px; top: -6px; }\",\".framer-gPP8N.framer-v-yqgag3 .framer-z1okyx { bottom: -5px; height: var(--framer-aspect-ratio-supported, 1px); left: unset; right: -4px; width: 1px; }\",\".framer-gPP8N.framer-v-yqgag3 .framer-v1z5ja { bottom: -6px; height: var(--framer-aspect-ratio-supported, 1px); left: -10px; width: 1px; }\",\".framer-gPP8N.framer-v-yqgag3 .framer-11phty4 { bottom: 1px; height: var(--framer-aspect-ratio-supported, 1px); left: -11px; width: 1px; }\",\".framer-gPP8N.framer-v-yqgag3 .framer-9lp31h { bottom: 1px; height: var(--framer-aspect-ratio-supported, 1px); left: unset; right: -9px; width: 1px; }\",\".framer-gPP8N.framer-v-yqgag3 .framer-1sypf34 { height: var(--framer-aspect-ratio-supported, 1px); left: unset; right: -10px; top: -7px; width: 1px; }\",\".framer-gPP8N.framer-v-yqgag3 .framer-28f6f3 { height: var(--framer-aspect-ratio-supported, 1px); left: unset; right: -4px; top: -13px; width: 1px; }\",\".framer-gPP8N.framer-v-yqgag3 .framer-15e1kul { height: var(--framer-aspect-ratio-supported, 1px); left: -7px; top: -14px; width: 1px; }\",\".framer-gPP8N.framer-v-yqgag3 .framer-yc1dmo { height: var(--framer-aspect-ratio-supported, 1px); left: -12px; top: -9px; width: 1px; }\",\".framer-gPP8N.framer-v-blddi8.pressed .framer-gftf27, .framer-gPP8N.framer-v-yqgag3.pressed .framer-gftf27 { bottom: unset; height: 20px; left: calc(50.00000000000002% - 20px / 2); right: unset; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-gPP8N.framer-v-blddi8.pressed .framer-lgkgzw-container, .framer-gPP8N.framer-v-yqgag3.pressed .framer-lgkgzw-container { bottom: unset; height: 16px; left: calc(50.00000000000002% - 16px / 2); right: unset; top: calc(50.00000000000002% - 16px / 2); width: 16px; }\",\".framer-gPP8N.framer-v-yqgag3.pressed .framer-wt2v2 { width: unset; }\",\".framer-gPP8N.framer-v-yqgag3.pressed .framer-z1okyx, .framer-gPP8N.framer-v-yqgag3.pressed .framer-9lp31h, .framer-gPP8N.framer-v-yqgag3.pressed .framer-1sypf34, .framer-gPP8N.framer-v-yqgag3.pressed .framer-28f6f3 { left: unset; }\",'.framer-gPP8N[data-border=\"true\"]::after, .framer-gPP8N [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 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"UG_GUzYBR\":{\"layout\":[\"fixed\",\"fixed\"]},\"p8OASCdNn\":{\"layout\":[\"fixed\",\"fixed\"]},\"ApkA8hN0y\":{\"layout\":[\"fixed\",\"fixed\"]},\"iMAl_6wJe\":{\"layout\":[\"fixed\",\"fixed\"]},\"ub7v1aeC3\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"AQGj2DLW6\":\"heartColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSbcncWkhb=withCSS(Component,css,\"framer-gPP8N\");export default FramerSbcncWkhb;FramerSbcncWkhb.displayName=\"Heart Anim\";FramerSbcncWkhb.defaultProps={height:24,width:24};addPropertyControls(FramerSbcncWkhb,{variant:{options:[\"sVbbj7cfy\",\"UG_GUzYBR\",\"p8OASCdNn\",\"ApkA8hN0y\"],optionTitles:[\"Default\",\"Anim 1\",\"Anim 2\",\"Anim 3\"],title:\"Variant\",type:ControlType.Enum},AQGj2DLW6:{defaultValue:'var(--token-b92d8a79-6df7-494c-b673-734142dc2b51, rgb(26, 26, 26)) /* {\"name\":\"Charcoal\"} */',title:\"Heart Color\",type:ControlType.Color}});addFonts(FramerSbcncWkhb,[{explicitInter:true,fonts:[]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSbcncWkhb\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"24\",\"framerVariables\":\"{\\\"AQGj2DLW6\\\":\\\"heartColor\\\"}\",\"framerIntrinsicWidth\":\"24\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UG_GUzYBR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"p8OASCdNn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ApkA8hN0y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iMAl_6wJe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ub7v1aeC3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SbcncWkhb.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={EO3WPVArN:{hover:true},L62ZEuyiX:{hover:true}};const cycleOrder=[\"L62ZEuyiX\",\"EO3WPVArN\"];const serializationHash=\"framer-Urxc0\";const variantClassNames={EO3WPVArN:\"framer-v-ykhrhl\",L62ZEuyiX:\"framer-v-e5ikug\"};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:400,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={Dark:\"L62ZEuyiX\",Light:\"EO3WPVArN\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"L62ZEuyiX\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"L62ZEuyiX\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"L62ZEuyiX-hover\",\"EO3WPVArN-hover\"].includes(gestureVariant))return true;return false;};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-e5ikug\",className,classNames),\"data-framer-name\":\"Dark\",layoutDependency:layoutDependency,layoutId:\"L62ZEuyiX\",ref:refBinding,style:{...style},...addPropertyOverrides({\"EO3WPVArN-hover\":{\"data-framer-name\":undefined},\"L62ZEuyiX-hover\":{\"data-framer-name\":undefined},EO3WPVArN:{\"data-framer-name\":\"Light\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-d086nu\",\"data-framer-name\":\"JK\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"C5z0SA2_9\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 58 40\"><path d=\"M 40.343 28.878 L 48.687 39.99 L 37.923 39.99 L 30.626 29.58 L 30.64 39.99 L 21.897 39.99 L 21.916 28.878 L 12.199 28.878 L 0 11.551 L 10.507 11.551 L 21.916 28.18 L 21.954 0 L 30.588 0 L 30.626 28.18 L 42.031 11.551 L 52.538 11.551 Z M 49.457 35.6 C 49.457 33.173 51.375 31.205 53.74 31.205 C 56.106 31.205 58.024 33.173 58.024 35.6 C 58.024 38.027 56.106 39.995 53.74 39.995 C 51.375 39.995 49.457 38.027 49.457 35.6 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:9681451173,variants:{\"L62ZEuyiX-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},EO3WPVArN:{backgroundColor:\"rgba(255, 0, 0, 0)\"}},withExternalLayout:true,...addPropertyOverrides({EO3WPVArN:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 58 40\"><path d=\"M 40.343 28.878 L 48.687 39.99 L 37.923 39.99 L 30.626 29.58 L 30.64 39.99 L 21.897 39.99 L 21.916 28.878 L 12.199 28.878 L 0 11.551 L 10.507 11.551 L 21.916 28.18 L 21.954 0 L 30.588 0 L 30.626 28.18 L 42.031 11.551 L 52.538 11.551 Z M 49.457 35.6 C 49.457 33.173 51.375 31.205 53.74 31.205 C 56.106 31.205 58.024 33.173 58.024 35.6 C 58.024 38.027 56.106 39.995 53.74 39.995 C 51.375 39.995 49.457 38.027 49.457 35.6 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9612313443}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"upBCJgGlN\",scopeId:\"VhhwaDUXx\",...addPropertyOverrides({\"EO3WPVArN-hover\":{href:{webPageId:\"XBVPI60Fd\"},openInNewTab:false},\"L62ZEuyiX-hover\":{href:{webPageId:\"XBVPI60Fd\"},openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ra4a14 framer-1l2aibf\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"upBCJgGlN\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.1)\"},variants:{\"EO3WPVArN-hover\":{backgroundColor:\"var(--token-b92d8a79-6df7-494c-b673-734142dc2b51, rgb(51, 51, 51))\"},\"L62ZEuyiX-hover\":{backgroundColor:\"var(--token-f073e871-7969-4b51-a05f-93a876aeb5f5, rgb(255, 255, 255))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\"},children:\"Made with \u2665\"})}),className:\"framer-rbb81y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tee0S6juT\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"EO3WPVArN-hover\":{\"--extracted-r6o4lv\":\"var(--token-f073e871-7969-4b51-a05f-93a876aeb5f5, rgb(255, 255, 255))\"},\"L62ZEuyiX-hover\":{\"--extracted-r6o4lv\":\"var(--token-b92d8a79-6df7-494c-b673-734142dc2b51, rgb(51, 51, 51))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"EO3WPVArN-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f073e871-7969-4b51-a05f-93a876aeb5f5, rgb(255, 255, 255)))\"},children:\"Made with \u2665\"})})},\"L62ZEuyiX-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b92d8a79-6df7-494c-b673-734142dc2b51, rgb(51, 51, 51)))\"},children:\"Made with \u2665\"})})}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Urxc0.framer-1l2aibf, .framer-Urxc0 .framer-1l2aibf { display: block; }\",\".framer-Urxc0.framer-e5ikug { cursor: pointer; height: 40px; overflow: visible; position: relative; width: 58px; }\",\".framer-Urxc0 .framer-d086nu { flex: none; height: 40px; left: calc(50.00000000000002% - 58px / 2); position: absolute; top: calc(50.00000000000002% - 40px / 2); width: 58px; }\",\".framer-Urxc0 .framer-ra4a14 { align-content: center; align-items: center; bottom: 38px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 42px; overflow: hidden; padding: 4px 8px 4px 8px; position: absolute; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Urxc0 .framer-rbb81y { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Urxc0 .framer-ra4a14 { gap: 0px; } .framer-Urxc0 .framer-ra4a14 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Urxc0 .framer-ra4a14 > :first-child { margin-left: 0px; } .framer-Urxc0 .framer-ra4a14 > :last-child { margin-right: 0px; } }\",\".framer-Urxc0.framer-v-e5ikug.hover .framer-ra4a14, .framer-Urxc0.framer-v-ykhrhl.hover .framer-ra4a14 { text-decoration: none; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 58\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"EO3WPVArN\":{\"layout\":[\"fixed\",\"fixed\"]},\"nIEFffRM0\":{\"layout\":[\"fixed\",\"fixed\"]},\"gTATXb57B\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVhhwaDUXx=withCSS(Component,css,\"framer-Urxc0\");export default FramerVhhwaDUXx;FramerVhhwaDUXx.displayName=\"JK Logo (heart)\";FramerVhhwaDUXx.defaultProps={height:40,width:58};addPropertyControls(FramerVhhwaDUXx,{variant:{options:[\"L62ZEuyiX\",\"EO3WPVArN\"],optionTitles:[\"Dark\",\"Light\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerVhhwaDUXx,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVhhwaDUXx\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"58\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EO3WPVArN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nIEFffRM0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gTATXb57B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"40\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VhhwaDUXx.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Fetcher,getFonts,getPropertyControls,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,usePrefetch,usePreloadQuery,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import HeartAnim from\"https://framerusercontent.com/modules/Bhk6UF9o9titdaOT9cCn/R0wTymTZwpVEOo91Ppcn/SbcncWkhb.js\";import JKLogoHeart from\"https://framerusercontent.com/modules/YIboqLT202NyCOHAg5Ws/gZagsR2yV4LXYSA1gfDN/VhhwaDUXx.js\";import SocialIcon from\"https://framerusercontent.com/modules/PLSym46fpuOFJsT27ECv/BokcxBMwB7f3c7aNZu59/xrbizgYVG.js\";const JKLogoHeartFonts=getFonts(JKLogoHeart);const HeartAnimFonts=getFonts(HeartAnim);const SocialIconFonts=getFonts(SocialIcon);const JKLogoHeartControls=getPropertyControls(JKLogoHeart);const cycleOrder=[\"NincZzXhK\",\"UEJ2qMyAn\"];const serializationHash=\"framer-LTZxq\";const variantClassNames={NincZzXhK:\"framer-v-1gtr4n8\",UEJ2qMyAn:\"framer-v-i9xfvj\"};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 query=prefetch=>prefetch({cacheDuration:86400,credentials:\"same-origin\",errorFallbackValue:\"Error\",fallbackValue:\"Location\",resultKeyPath:\"city\",resultOutputType:\"string\",url:`https://api.fetch.tools/location`});const toString=value=>{return typeof value===\"string\"?value:String(value);};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 preload=async(prequery,prefetch,props)=>await Promise.all([query(prefetch)]);const preloadStatements={NincZzXhK:preload,UEJ2qMyAn:preload};const useLoadingVariant=(variant,gestures,clearLoadingVariant,setGestureState,props)=>{const prequery=usePreloadQuery();const prefetch=usePrefetch();React.useEffect(()=>{const promise=preloadStatements[variant];if(!promise||!gestures?.[variant]?.loading)return;promise(prequery,prefetch,props).then(()=>clearLoadingVariant()).catch(()=>setGestureState({isError:true}));},[variant]);};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Dark:\"L62ZEuyiX\",Light:\"EO3WPVArN\"};const humanReadableVariantMap={Dektop:\"NincZzXhK\",Mobile:\"UEJ2qMyAn\"};const getProps=({backgroundColour,heartColor,height,id,logoMode,mainColour,text,width,...props})=>{return{...props,clgjFwVRt:heartColor??props.clgjFwVRt??\"var(--token-b92d8a79-6df7-494c-b673-734142dc2b51, rgb(26, 26, 26))\",cyMwZ287M:text??props.cyMwZ287M??\"Copyright \\xa9 2025 - John Kappa - All Rights Reserved\",k8Zx6UwHx:backgroundColour??props.k8Zx6UwHx??\"var(--token-f073e871-7969-4b51-a05f-93a876aeb5f5, rgb(255, 255, 255))\",p5P92BJFM:mainColour??props.p5P92BJFM??\"var(--token-b92d8a79-6df7-494c-b673-734142dc2b51, rgb(51, 51, 51))\",Ru4TIgo2Q:humanReadableEnumMap[logoMode]??logoMode??props.Ru4TIgo2Q??\"L62ZEuyiX\",variant:humanReadableVariantMap[props.variant]??props.variant??\"NincZzXhK\"};};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,cyMwZ287M,k8Zx6UwHx,p5P92BJFM,Ru4TIgo2Q,clgjFwVRt,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NincZzXhK\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"UEJ2qMyAn\")return false;return true;};useLoadingVariant(baseVariant,undefined,clearLoadingGesture,setGestureState);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.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1gtr4n8\",className,classNames),\"data-framer-name\":\"Dektop\",layoutDependency:layoutDependency,layoutId:\"NincZzXhK\",ref:refBinding,style:{backgroundColor:k8Zx6UwHx,...style},...addPropertyOverrides({UEJ2qMyAn:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"58px\",y:(componentViewport?.y||0)+40+((componentViewport?.height||300)-80-40),...addPropertyOverrides({UEJ2qMyAn:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xndwhi-container\",layoutDependency:layoutDependency,layoutId:\"dW2yeZeDL-container\",nodeId:\"dW2yeZeDL\",rendersWithMotion:true,scopeId:\"hnqyZAHQy\",children:/*#__PURE__*/_jsx(JKLogoHeart,{height:\"100%\",id:\"dW2yeZeDL\",layoutId:\"dW2yeZeDL\",style:{height:\"100%\",width:\"100%\"},variant:Ru4TIgo2Q,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n21ooh\",layoutDependency:layoutDependency,layoutId:\"DbiZzZmqI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-p5P92BJFM-hnqyZAHQy))\"},children:\"Copyright \\xa9 2024 - John Kappa - All Rights Reserved\"})}),className:\"framer-mm4wgn\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"euUosocfA\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-p5P92BJFM-hnqyZAHQy)\",\"--variable-reference-p5P92BJFM-hnqyZAHQy\":p5P92BJFM},text:cyMwZ287M,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UEJ2qMyAn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-p5P92BJFM-hnqyZAHQy))\"},children:\"Copyright \\xa9 2024 - John Kappa - All Rights Reserved\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-p5P92BJFM-hnqyZAHQy))\"},children:\"\u2022\"})}),className:\"framer-c0pnpl\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Jes19H9En\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-p5P92BJFM-hnqyZAHQy)\",\"--variable-reference-p5P92BJFM-hnqyZAHQy\":p5P92BJFM},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UEJ2qMyAn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-p5P92BJFM-hnqyZAHQy))\"},children:\"\u2022\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gxigyc\",\"data-framer-name\":\"Visiting from\",layoutDependency:layoutDependency,layoutId:\"QpKvJOhbO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-p5P92BJFM-hnqyZAHQy))\"},children:\"You're viewing this site from\"})}),className:\"framer-1i6rh0p\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"VWgtV0vQr\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-p5P92BJFM-hnqyZAHQy)\",\"--variable-reference-p5P92BJFM-hnqyZAHQy\":p5P92BJFM},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UEJ2qMyAn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-p5P92BJFM-hnqyZAHQy))\"},children:\"You're viewing this site from\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Fetcher,{disabled:isLoading,requests:[{cacheDuration:86400,credentials:\"same-origin\",errorFallbackValue:\"Error\",fallbackValue:\"Location\",resultKeyPath:\"city\",resultOutputType:\"string\",url:`https://api.fetch.tools/location`}],children:fetchResult=>/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-p5P92BJFM-hnqyZAHQy))\"},children:\"Sample\"})}),className:\"framer-1f8oup3\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"mk6yCLq0f\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-p5P92BJFM-hnqyZAHQy)\",\"--variable-reference-p5P92BJFM-hnqyZAHQy\":p5P92BJFM},text:toString(fetchResult[0]),verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UEJ2qMyAn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-p5P92BJFM-hnqyZAHQy))\"},children:\"Sample\"})})}},baseVariant,gestureVariant)})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-2g526f\",\"data-framer-name\":\"Framer Edit\",layoutDependency:layoutDependency,layoutId:\"mJ2d8FgJR\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",y:(componentViewport?.y||0)+40+((componentViewport?.height||300)-80-36)+0+6,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fipxmx-container\",layoutDependency:layoutDependency,layoutId:\"w8xSspAKy-container\",nodeId:\"w8xSspAKy\",rendersWithMotion:true,scopeId:\"hnqyZAHQy\",children:/*#__PURE__*/_jsx(HeartAnim,{AQGj2DLW6:clgjFwVRt,height:\"100%\",id:\"w8xSspAKy\",layoutId:\"w8xSspAKy\",style:{height:\"100%\",width:\"100%\"},variant:\"sVbbj7cfy\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7xhzwj\",layoutDependency:layoutDependency,layoutId:\"ufttPqUd2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+40+((componentViewport?.height||300)-80-34)+6,...addPropertyOverrides({UEJ2qMyAn:{height:40,width:\"40px\",y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xaefhd-container\",layoutDependency:layoutDependency,layoutId:\"wltrJqke9-container\",nodeId:\"wltrJqke9\",rendersWithMotion:true,scopeId:\"hnqyZAHQy\",children:/*#__PURE__*/_jsx(SocialIcon,{b1GsX_B6G:false,height:\"100%\",id:\"wltrJqke9\",IjDRi14ar:p5P92BJFM,layoutId:\"wltrJqke9\",ocjwzeFSN:\"https://www.instagram.com/johnkappa/\",QcAoP1LS1:\"InstagramLogo\",width:\"100%\",...addPropertyOverrides({UEJ2qMyAn:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+40+((componentViewport?.height||300)-80-34)+6,...addPropertyOverrides({UEJ2qMyAn:{height:40,width:\"40px\",y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rgb3zp-container\",layoutDependency:layoutDependency,layoutId:\"kqDitlQNq-container\",nodeId:\"kqDitlQNq\",rendersWithMotion:true,scopeId:\"hnqyZAHQy\",children:/*#__PURE__*/_jsx(SocialIcon,{b1GsX_B6G:false,height:\"100%\",id:\"kqDitlQNq\",IjDRi14ar:p5P92BJFM,layoutId:\"kqDitlQNq\",ocjwzeFSN:\"https://twitter.com/johnkappa\",QcAoP1LS1:\"XLogo\",width:\"100%\",...addPropertyOverrides({UEJ2qMyAn:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+40+((componentViewport?.height||300)-80-34)+6,...addPropertyOverrides({UEJ2qMyAn:{height:40,width:\"40px\",y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17ny31j-container\",layoutDependency:layoutDependency,layoutId:\"qDFOxu6y6-container\",nodeId:\"qDFOxu6y6\",rendersWithMotion:true,scopeId:\"hnqyZAHQy\",children:/*#__PURE__*/_jsx(SocialIcon,{b1GsX_B6G:false,height:\"100%\",id:\"qDFOxu6y6\",IjDRi14ar:p5P92BJFM,layoutId:\"qDFOxu6y6\",ocjwzeFSN:\"https://www.linkedin.com/in/johnkappa/\",QcAoP1LS1:\"LinkedinLogo\",width:\"100%\",...addPropertyOverrides({UEJ2qMyAn:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+40+((componentViewport?.height||300)-80-34)+6,...addPropertyOverrides({UEJ2qMyAn:{height:40,width:\"40px\",y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mhs0md-container\",layoutDependency:layoutDependency,layoutId:\"r0ULSF_9z-container\",nodeId:\"r0ULSF_9z\",rendersWithMotion:true,scopeId:\"hnqyZAHQy\",children:/*#__PURE__*/_jsx(SocialIcon,{b1GsX_B6G:false,height:\"100%\",id:\"r0ULSF_9z\",IjDRi14ar:p5P92BJFM,layoutId:\"r0ULSF_9z\",ocjwzeFSN:\"https://www.behance.net/JohnKappa\",QcAoP1LS1:\"BehanceLogo\",width:\"100%\",...addPropertyOverrides({UEJ2qMyAn:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LTZxq.framer-133gf57, .framer-LTZxq .framer-133gf57 { display: block; }\",\".framer-LTZxq.framer-1gtr4n8 { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; height: 300px; justify-content: space-between; overflow: hidden; padding: 40px; position: relative; width: 1400px; }\",\".framer-LTZxq .framer-xndwhi-container { flex: none; height: 40px; position: relative; width: 58px; }\",\".framer-LTZxq .framer-1n21ooh, .framer-LTZxq .framer-1gxigyc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-LTZxq .framer-mm4wgn, .framer-LTZxq .framer-c0pnpl, .framer-LTZxq .framer-1i6rh0p, .framer-LTZxq .framer-1f8oup3 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-LTZxq .framer-2g526f { 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: 6px; position: relative; width: min-content; }\",\".framer-LTZxq .framer-fipxmx-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-LTZxq .framer-7xhzwj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 0px 6px 0px; position: relative; width: min-content; }\",\".framer-LTZxq .framer-xaefhd-container, .framer-LTZxq .framer-1rgb3zp-container, .framer-LTZxq .framer-17ny31j-container, .framer-LTZxq .framer-1mhs0md-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LTZxq .framer-1n21ooh, .framer-LTZxq .framer-1gxigyc, .framer-LTZxq .framer-2g526f, .framer-LTZxq .framer-7xhzwj { gap: 0px; } .framer-LTZxq .framer-1n21ooh > *, .framer-LTZxq .framer-1gxigyc > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-LTZxq .framer-1n21ooh > :first-child, .framer-LTZxq .framer-1gxigyc > :first-child, .framer-LTZxq .framer-2g526f > :first-child, .framer-LTZxq .framer-7xhzwj > :first-child { margin-left: 0px; } .framer-LTZxq .framer-1n21ooh > :last-child, .framer-LTZxq .framer-1gxigyc > :last-child, .framer-LTZxq .framer-2g526f > :last-child, .framer-LTZxq .framer-7xhzwj > :last-child { margin-right: 0px; } .framer-LTZxq .framer-2g526f > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-LTZxq .framer-7xhzwj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-LTZxq.framer-v-i9xfvj.framer-1gtr4n8 { align-content: center; align-items: center; flex-direction: column; gap: 20px; justify-content: flex-end; padding: 20px; width: 390px; }\",\".framer-LTZxq.framer-v-i9xfvj .framer-1n21ooh { flex-wrap: wrap; width: 100%; }\",\".framer-LTZxq.framer-v-i9xfvj .framer-7xhzwj { gap: 12px; padding: 0px; width: 100%; }\",\".framer-LTZxq.framer-v-i9xfvj .framer-xaefhd-container, .framer-LTZxq.framer-v-i9xfvj .framer-1rgb3zp-container, .framer-LTZxq.framer-v-i9xfvj .framer-17ny31j-container, .framer-LTZxq.framer-v-i9xfvj .framer-1mhs0md-container { height: 40px; width: 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LTZxq.framer-v-i9xfvj.framer-1gtr4n8, .framer-LTZxq.framer-v-i9xfvj .framer-7xhzwj { gap: 0px; } .framer-LTZxq.framer-v-i9xfvj.framer-1gtr4n8 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-LTZxq.framer-v-i9xfvj.framer-1gtr4n8 > :first-child { margin-top: 0px; } .framer-LTZxq.framer-v-i9xfvj.framer-1gtr4n8 > :last-child { margin-bottom: 0px; } .framer-LTZxq.framer-v-i9xfvj .framer-7xhzwj > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-LTZxq.framer-v-i9xfvj .framer-7xhzwj > :first-child { margin-left: 0px; } .framer-LTZxq.framer-v-i9xfvj .framer-7xhzwj > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 300\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"UEJ2qMyAn\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"cyMwZ287M\":\"text\",\"k8Zx6UwHx\":\"backgroundColour\",\"p5P92BJFM\":\"mainColour\",\"Ru4TIgo2Q\":\"logoMode\",\"clgjFwVRt\":\"heartColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhnqyZAHQy=withCSS(Component,css,\"framer-LTZxq\");export default FramerhnqyZAHQy;FramerhnqyZAHQy.displayName=\"Footer\";FramerhnqyZAHQy.defaultProps={height:300,width:1400};addPropertyControls(FramerhnqyZAHQy,{variant:{options:[\"NincZzXhK\",\"UEJ2qMyAn\"],optionTitles:[\"Dektop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},cyMwZ287M:{defaultValue:\"Copyright \\xa9 2025 - John Kappa - All Rights Reserved\",displayTextArea:false,title:\"Text\",type:ControlType.String},k8Zx6UwHx:{defaultValue:'var(--token-f073e871-7969-4b51-a05f-93a876aeb5f5, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"Background Colour\",type:ControlType.Color},p5P92BJFM:{defaultValue:'var(--token-b92d8a79-6df7-494c-b673-734142dc2b51, rgb(51, 51, 51)) /* {\"name\":\"Charcoal\"} */',title:\"Main Colour\",type:ControlType.Color},Ru4TIgo2Q:JKLogoHeartControls?.[\"variant\"]&&{...JKLogoHeartControls[\"variant\"],defaultValue:\"L62ZEuyiX\",description:undefined,hidden:undefined,title:\"Logo Mode\"},clgjFwVRt:{defaultValue:'var(--token-b92d8a79-6df7-494c-b673-734142dc2b51, rgb(26, 26, 26)) /* {\"name\":\"Charcoal\"} */',title:\"Heart Color\",type:ControlType.Color}});addFonts(FramerhnqyZAHQy,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...JKLogoHeartFonts,...HeartAnimFonts,...SocialIconFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhnqyZAHQy\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UEJ2qMyAn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1400\",\"framerVariables\":\"{\\\"cyMwZ287M\\\":\\\"text\\\",\\\"k8Zx6UwHx\\\":\\\"backgroundColour\\\",\\\"p5P92BJFM\\\":\\\"mainColour\\\",\\\"Ru4TIgo2Q\\\":\\\"logoMode\\\",\\\"clgjFwVRt\\\":\\\"heartColor\\\"}\",\"framerIntrinsicHeight\":\"300\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "accessibilityProps", "p", "addPropertyControls", "ControlType", "SVG_Prod_default", "SVGFonts", "getFonts", "SVG_Prod_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transition4", "transformTemplate1", "_", "transformTemplate2", "transformTemplate3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "heartColor", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "AQGj2DLW6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTaphll6de", "args", "onAppear1objhg3", "onAppear1oh4oct", "onTapmktxou", "useOnVariantChange", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerSbcncWkhb", "withCSS", "SbcncWkhb_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "SVG", "Link", "RichText2", "css", "FramerVhhwaDUXx", "withCSS", "VhhwaDUXx_default", "addPropertyControls", "ControlType", "addFonts", "JKLogoHeartFonts", "getFonts", "VhhwaDUXx_default", "HeartAnimFonts", "SbcncWkhb_default", "SocialIconFonts", "xrbizgYVG_default", "JKLogoHeartControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "query", "prefetch", "toString", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "preload", "prequery", "props", "preloadStatements", "useLoadingVariant", "gestures", "clearLoadingVariant", "setGestureState", "usePreloadQuery", "usePrefetch", "ue", "promise", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "backgroundColour", "heartColor", "height", "id", "logoMode", "mainColour", "text", "width", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "cyMwZ287M", "k8Zx6UwHx", "p5P92BJFM", "Ru4TIgo2Q", "clgjFwVRt", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Fetcher", "fetchResult", "css", "FramerhnqyZAHQy", "withCSS", "hnqyZAHQy_default", "addPropertyControls", "ControlType", "addFonts"]
}
