{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/1mkt2plloPEOvoe16UUK/EUmeSZzQepu1cHilAvr7/LemonSqueezy.js", "ssg:https://framerusercontent.com/modules/lWg1wkSiqFddekDEwxmM/gvxlY8YNH8UsQ0bAmu3j/iLLnxd7wS.js", "ssg:https://framerusercontent.com/modules/oBflJ1u2Kpncl18pJz0Y/mdtoaiEHRt18oZbuBMeu/WxwPInJ9x.js", "ssg:https://framerusercontent.com/modules/yspZYHGHITv3GV1npmow/Rysm8N87tB5tDLMLebZ7/bzJ6YXd3E.js", "ssg:https://framerusercontent.com/modules/hYeGfqmxLU3OKmq3zRYu/gvCT3X67hxc1YblzBkz9/iLLnxd7wS.js", "ssg:https://framerusercontent.com/modules/xq3uyceD4ElbsDejGXoC/roiPUscghYoPh5TQT4WR/nVJ9KhS1z.js", "ssg:https://framerusercontent.com/modules/tvMR6pBLAGFxzSA16KhY/YkE6UdF8vHpNx68coTln/WxwPInJ9x.js", "ssg:https://framerusercontent.com/modules/qW5S2pthLgro0F0zoATo/hbyxHl2IMEeIp0rS1Hk1/O78HDSM3Z.js", "ssg:https://framerusercontent.com/modules/65JM33iwHM4a2ClgWAIW/hKR56ddZdDcpji19BYf4/IKxGI7fAH.js", "ssg:https://framerusercontent.com/modules/vkOhU6CNkCQB2nCKAScV/NqzGG6qbCGZPy90i7RoX/Oc9tUsWH2.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{useEffect}from\"react\";/**\n *\n * LEMON SQUEEZY\n * By Benjamin\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n * @framerDisableUnlink\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function LemonSqueezy(props){const{styleOptions,hoverOptions}=props;const{backgroundColor,color,borderRadius,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft}=styleOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Only load the lemon script if you want an Overlay\n     * Otherwise, do not include\u2014also, only load it once\n     * whenever you have multiple instances on your page.\n     */ useConditionalScript(!props.isRedirect,\"https://app.lemonsqueezy.com/js/lemon.js\",\"lemon-squeezy-framer-component\");return /*#__PURE__*/ _jsx(motion.a,{href:props.url,className:props.isRedirect?\"\":\"lemonsqueezy-button\",target:props.isRedirect?\"_blank\":\"_self\",style:{fontSize:16,lineHeight:1,fontFamily:\"Inter\",fontWeight:500,...props.style,...buttonStyles,...props.fontControl,padding:paddingValue,color:color,backgroundColor:backgroundColor,borderRadius:borderRadius,userSelect:\"none\",placeContent:flexAlignSwitch(props.fontControl),whiteSpace:\"nowrap\"},whileHover:{scale:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.hoverScale,backgroundColor:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.hoverBackgroundColor,color:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.hoverColor},transition:props.hoverTransition,children:props.text});};LemonSqueezy.displayName=\"Lemon Squeezy\";addPropertyControls(LemonSqueezy,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Buy Now\"},url:{title:\"Link\",type:ControlType.String,defaultValue:\"https://makelemonade.lemonsqueezy.com/checkout/buy/0929c351-abb3-49f7-a671-ba15406517dd\"},isRedirect:{title:\"Type\",type:ControlType.Boolean,enabledTitle:\"Link\",disabledTitle:\"Overlay\",defaultValue:true},fontControl:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},styleOptions:{type:ControlType.Object,title:\"Styles\",buttonTitle:\"Button, Font\",controls:{backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#40F\"},color:{type:ControlType.Color,defaultValue:\"#FFF\"},borderRadius:{type:ControlType.Number,title:\"Radius\",displayStepper:true,defaultValue:50},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0}}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,description:\"Learn more about the Checkout options [here](https://docs.lemonsqueezy.com/help/checkout/checkout-overlay)\",controls:{hoverScale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},hoverBackgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#111\",optional:true},hoverColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},hoverTransition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}}});const buttonStyles={display:\"flex\",placeItems:\"center\",placeContent:\"center\",textDecoration:\"none\"};/* Use external script conditionally */ const useConditionalScript=(condition,url,id)=>{useEffect(()=>{if(!condition)return;if(document.querySelector(`#${id}`))return;const script=document.createElement(\"script\");script.src=url;script.id=id;script.defer=true;script.onload=()=>{var ref;if(window.LemonSqueezy)return;(ref=window.createLemonSqueezy)===null||ref===void 0?void 0:ref.call(window);};document.body.appendChild(script);},[url,id,condition]);};/* Match flex content alignment with text align */ const flexAlignSwitch=fontControlStyles=>{if(fontControlStyles.textAlign===\"left\"){return\"flex-start\";}if(fontControlStyles.textAlign===\"right\"){return\"flex-end\";}return\"center\";};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"LemonSqueezy\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicHeight\":\"100\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerDisableUnlink\":\"* @framerSupportedLayoutWidth any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LemonSqueezy.map", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([\"GF;Lato-regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{family:\"Lato\",moduleAsset:{localModuleIdentifier:\"local-module:css/iLLnxd7wS:default\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk6XweuBCY.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk6XweuBCY.ttf\",weight:\"400\"}];export const css=['.framer-EloLU .framer-styles-preset-i2oquq:not(.rich-text-wrapper), .framer-EloLU .framer-styles-preset-i2oquq.rich-text-wrapper p { --framer-font-family: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-a58d3227-013d-4a9b-9135-f03530ad8309, #dcdcdc); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-EloLU .framer-styles-preset-i2oquq:not(.rich-text-wrapper), .framer-EloLU .framer-styles-preset-i2oquq.rich-text-wrapper p { --framer-font-family: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-a58d3227-013d-4a9b-9135-f03530ad8309, #dcdcdc); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-EloLU .framer-styles-preset-i2oquq:not(.rich-text-wrapper), .framer-EloLU .framer-styles-preset-i2oquq.rich-text-wrapper p { --framer-font-family: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-a58d3227-013d-4a9b-9135-f03530ad8309, #dcdcdc); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-EloLU\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=[\".framer-dzjKD .framer-styles-preset-mss7rv:not(.rich-text-wrapper), .framer-dzjKD .framer-styles-preset-mss7rv.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-decoration: none; --framer-link-text-decoration: none; }\"];export const className=\"framer-dzjKD\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a1e8cb2)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,getPropertyControls,Link,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={C2gsL7d9l:{hover:true},pDdx3DcRJ:{hover:true},wYRwYbVUc:{hover:true},XYsgDmxB0:{hover:true},z16Thb4jZ:{hover:true}};const cycleOrder=[\"iXqRaMeAG\",\"pDdx3DcRJ\",\"kNVSIRcvW\",\"C2gsL7d9l\",\"VQB65ab0f\",\"QmhC0AIOD\",\"dCQBGEH9X\",\"XYsgDmxB0\",\"ulFOhrwjY\",\"YVXXUnQCE\",\"wnDnRFT53\",\"REWYywNSp\",\"QcFUCR4tO\",\"V4SZVTRXD\",\"A1Ima4gfg\",\"wYRwYbVUc\",\"pWntzyxby\",\"NPSNfh7ah\",\"HguTolZUd\",\"xaKJWJT15\",\"Bd92r1_Zx\",\"XXRNZdLUp\",\"KQ30DqiRd\",\"eB_5J3JPs\",\"foPWgLXkT\",\"MqHMAhEL5\",\"yQbfZw3cC\",\"K1BblOT0a\",\"MPG_Na9oL\",\"OGr6XLjck\",\"OeEr8VaOb\",\"Y3XgxOa92\",\"M0sxMHTHU\",\"z16Thb4jZ\",\"zGCKncsC1\",\"bZtkiWnxP\",\"amTy9IIWI\",\"C5wvOvp3P\",\"qrTvyr6wG\",\"k90nM5WwE\",\"z08w00_hl\",\"cSzuVeIoQ\",\"UGM5lzfad\",\"nVaULP2kj\",\"KdnsXC5Eg\",\"cnUcsRYiD\",\"gzxOw99Wg\",\"Fs8L0UTpW\",\"JLjAgzwPE\",\"tJ6jpSmHt\",\"Ye4AIchmy\",\"YqhjlLJ5m\",\"WCKcPFtDY\",\"FHiHqgeHZ\"];const variantClassNames={A1Ima4gfg:\"framer-v-6l9tw6\",amTy9IIWI:\"framer-v-i4ik2u\",Bd92r1_Zx:\"framer-v-1ylj8kq\",bZtkiWnxP:\"framer-v-1spqmsd\",C2gsL7d9l:\"framer-v-1ycd4cs\",C5wvOvp3P:\"framer-v-u8ucdj\",cnUcsRYiD:\"framer-v-1g3jzj7\",cSzuVeIoQ:\"framer-v-1g64h82\",dCQBGEH9X:\"framer-v-1gxy5q5\",eB_5J3JPs:\"framer-v-5y6jfh\",FHiHqgeHZ:\"framer-v-14othtx\",foPWgLXkT:\"framer-v-zjtwem\",Fs8L0UTpW:\"framer-v-4s1idw\",gzxOw99Wg:\"framer-v-4lu8g2\",HguTolZUd:\"framer-v-ln29dx\",iXqRaMeAG:\"framer-v-17k0g47\",JLjAgzwPE:\"framer-v-1ha0rhs\",K1BblOT0a:\"framer-v-12x5rfw\",k90nM5WwE:\"framer-v-ywe9jq\",KdnsXC5Eg:\"framer-v-1wxxjbj\",kNVSIRcvW:\"framer-v-1nhma41\",KQ30DqiRd:\"framer-v-130f4ht\",M0sxMHTHU:\"framer-v-5x9t4p\",MPG_Na9oL:\"framer-v-1b8ojpm\",MqHMAhEL5:\"framer-v-roqfdk\",NPSNfh7ah:\"framer-v-1skgo39\",nVaULP2kj:\"framer-v-i0xdox\",OeEr8VaOb:\"framer-v-1d0x6c\",OGr6XLjck:\"framer-v-1ldq8ii\",pDdx3DcRJ:\"framer-v-th73vj\",pWntzyxby:\"framer-v-9haiy0\",QcFUCR4tO:\"framer-v-14o4nvz\",QmhC0AIOD:\"framer-v-tolro9\",qrTvyr6wG:\"framer-v-14whqb7\",REWYywNSp:\"framer-v-1b7l6r7\",tJ6jpSmHt:\"framer-v-dyvkm3\",UGM5lzfad:\"framer-v-1xvr1pl\",ulFOhrwjY:\"framer-v-5qinfy\",V4SZVTRXD:\"framer-v-1tkxuf9\",VQB65ab0f:\"framer-v-17d9sqp\",WCKcPFtDY:\"framer-v-12xupav\",wnDnRFT53:\"framer-v-1imvvi0\",wYRwYbVUc:\"framer-v-l1y806\",xaKJWJT15:\"framer-v-gj4neu\",XXRNZdLUp:\"framer-v-rfdhx1\",XYsgDmxB0:\"framer-v-r2ndkq\",Y3XgxOa92:\"framer-v-1py1d90\",Ye4AIchmy:\"framer-v-16fdvh7\",yQbfZw3cC:\"framer-v-1mssvt\",YqhjlLJ5m:\"framer-v-1cfio9\",YVXXUnQCE:\"framer-v-zidj43\",z08w00_hl:\"framer-v-t9opyy\",z16Thb4jZ:\"framer-v-eyqx76\",zGCKncsC1:\"framer-v-fttr69\"};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 transitions={default:{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 humanReadableVariantMap={\"Amazon - Icon Variable Color\":\"FHiHqgeHZ\",\"Amazon - Icon\":\"WCKcPFtDY\",\"Behance - Icon Variable Color\":\"xaKJWJT15\",\"Behance - Icon\":\"HguTolZUd\",\"Discord - Icon Variable Color\":\"XXRNZdLUp\",\"Discord - Icon\":\"Bd92r1_Zx\",\"Dribbble - Icon Variable Color\":\"eB_5J3JPs\",\"Dribbble - Icon\":\"KQ30DqiRd\",\"DropBox - Icon Variable Color\":\"YqhjlLJ5m\",\"DropBox - Icon\":\"Ye4AIchmy\",\"FaceBook - Icon Variable Color\":\"C2gsL7d9l\",\"FaceBook - Icon\":\"kNVSIRcvW\",\"Figma - Icon Variable Color\":\"tJ6jpSmHt\",\"Figma - Icon\":\"JLjAgzwPE\",\"Framer - Icon Variable Color\":\"MqHMAhEL5\",\"Framer - Icon\":\"foPWgLXkT\",\"GitHub - Icon Variable Color\":\"NPSNfh7ah\",\"GitHub - Icon\":\"pWntzyxby\",\"Instagram - Icon Variable Color\":\"wYRwYbVUc\",\"Instagram - Icon\":\"A1Ima4gfg\",\"LinkedIn - Icon Variable Color\":\"XYsgDmxB0\",\"LinkedIn - Icon\":\"dCQBGEH9X\",\"Medium - Icon Variable Color\":\"K1BblOT0a\",\"Medium - Icon\":\"yQbfZw3cC\",\"Messenger - Icon Variable Color\":\"Fs8L0UTpW\",\"Messenger - Icon\":\"gzxOw99Wg\",\"Patreon - Icon Variable Color\":\"cnUcsRYiD\",\"Patreon - Icon\":\"KdnsXC5Eg\",\"Pinterest - Icon Variable Color\":\"QmhC0AIOD\",\"Pinterest - Icon\":\"VQB65ab0f\",\"Reddit - Icon Variable Color\":\"REWYywNSp\",\"Reddit - Icon\":\"wnDnRFT53\",\"Slack - Icon Variable Color\":\"nVaULP2kj\",\"Slack - Icon\":\"UGM5lzfad\",\"SnapChat - Icon Variable Color\":\"cSzuVeIoQ\",\"SnapChat - Icon\":\"z08w00_hl\",\"SoundCloud - Icon Variable Color\":\"k90nM5WwE\",\"SoundCloud - Icon\":\"qrTvyr6wG\",\"Spotify - Icon Variable Color\":\"OGr6XLjck\",\"Spotify - Icon\":\"MPG_Na9oL\",\"Telegram - Icon Variable Color\":\"Y3XgxOa92\",\"Telegram - Icon\":\"OeEr8VaOb\",\"TikTok - Icon Variable Color\":\"V4SZVTRXD\",\"TikTok - Icon\":\"QcFUCR4tO\",\"Twitch - Icon Variable Color\":\"bZtkiWnxP\",\"Twitch - Icon\":\"zGCKncsC1\",\"Twitter - Icon Variable Color\":\"pDdx3DcRJ\",\"Twitter - Icon\":\"iXqRaMeAG\",\"WeChat - Icon Variable Color\":\"C5wvOvp3P\",\"WeChat - Icon\":\"amTy9IIWI\",\"Whatsapp - Icon Variable Color\":\"YVXXUnQCE\",\"Whatsapp - Icon\":\"ulFOhrwjY\",\"Youtube - Icon Variable Color\":\"z16Thb4jZ\",\"Youtube - Icon\":\"M0sxMHTHU\"};const getProps=({backgroundFill,height,hoverFill,iconColor,id,link,radius,weight,width,...props})=>{var ref,ref1,ref2,ref3,_variant,ref4,ref5;return{...props,BkOAqLgnU:(ref=backgroundFill!==null&&backgroundFill!==void 0?backgroundFill:props.BkOAqLgnU)!==null&&ref!==void 0?ref:\"rgba(255, 255, 255, 0)\",hMk6A3uVq:(ref1=weight!==null&&weight!==void 0?weight:props.hMk6A3uVq)!==null&&ref1!==void 0?ref1:\"bold\",oxt12ADzN:(ref2=iconColor!==null&&iconColor!==void 0?iconColor:props.oxt12ADzN)!==null&&ref2!==void 0?ref2:\"rgb(255, 255, 255)\",QG5iCMh9h:(ref3=hoverFill!==null&&hoverFill!==void 0?hoverFill:props.QG5iCMh9h)!==null&&ref3!==void 0?ref3:\"rgb(255, 255, 255)\",rIjeT7ikx:link!==null&&link!==void 0?link:props.rIjeT7ikx,variant:(ref4=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref4!==void 0?ref4:\"iXqRaMeAG\",WjgfwHKRx:(ref5=radius!==null&&radius!==void 0?radius:props.WjgfwHKRx)!==null&&ref5!==void 0?ref5:15};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,rIjeT7ikx,hMk6A3uVq,BkOAqLgnU,WjgfwHKRx,oxt12ADzN,QG5iCMh9h,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"iXqRaMeAG\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-FR5p7\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(Link,{href:rIjeT7ikx,openInNewTab:true,children:/*#__PURE__*/ _jsx(motion.a,{...restProps,className:`${cx(\"framer-17k0g47\",className)} framer-1fyfaai`,\"data-framer-name\":\"Twitter - Icon\",layoutDependency:layoutDependency,layoutId:\"iXqRaMeAG\",ref:ref,style:{backgroundColor:BkOAqLgnU,borderBottomLeftRadius:WjgfwHKRx,borderBottomRightRadius:WjgfwHKRx,borderTopLeftRadius:WjgfwHKRx,borderTopRightRadius:WjgfwHKRx,...style},...addPropertyOverrides({\"C2gsL7d9l-hover\":{\"data-framer-name\":undefined},\"pDdx3DcRJ-hover\":{\"data-framer-name\":undefined},\"wYRwYbVUc-hover\":{\"data-framer-name\":undefined},\"XYsgDmxB0-hover\":{\"data-framer-name\":undefined},\"z16Thb4jZ-hover\":{\"data-framer-name\":undefined},A1Ima4gfg:{\"data-framer-name\":\"Instagram - Icon\"},amTy9IIWI:{\"data-framer-name\":\"WeChat - Icon\"},Bd92r1_Zx:{\"data-framer-name\":\"Discord - Icon\"},bZtkiWnxP:{\"data-framer-name\":\"Twitch - Icon Variable Color\"},C2gsL7d9l:{\"data-framer-name\":\"FaceBook - Icon Variable Color\"},C5wvOvp3P:{\"data-framer-name\":\"WeChat - Icon Variable Color\"},cnUcsRYiD:{\"data-framer-name\":\"Patreon - Icon Variable Color\"},cSzuVeIoQ:{\"data-framer-name\":\"SnapChat - Icon Variable Color\"},dCQBGEH9X:{\"data-framer-name\":\"LinkedIn - Icon\"},eB_5J3JPs:{\"data-framer-name\":\"Dribbble - Icon Variable Color\"},FHiHqgeHZ:{\"data-framer-name\":\"Amazon - Icon Variable Color\"},foPWgLXkT:{\"data-framer-name\":\"Framer - Icon\"},Fs8L0UTpW:{\"data-framer-name\":\"Messenger - Icon Variable Color\"},gzxOw99Wg:{\"data-framer-name\":\"Messenger - Icon\"},HguTolZUd:{\"data-framer-name\":\"Behance - Icon\"},JLjAgzwPE:{\"data-framer-name\":\"Figma - Icon\"},K1BblOT0a:{\"data-framer-name\":\"Medium - Icon Variable Color\"},k90nM5WwE:{\"data-framer-name\":\"SoundCloud - Icon Variable Color\"},KdnsXC5Eg:{\"data-framer-name\":\"Patreon - Icon\"},kNVSIRcvW:{\"data-framer-name\":\"FaceBook - Icon\"},KQ30DqiRd:{\"data-framer-name\":\"Dribbble - Icon\"},M0sxMHTHU:{\"data-framer-name\":\"Youtube - Icon\"},MPG_Na9oL:{\"data-framer-name\":\"Spotify - Icon\"},MqHMAhEL5:{\"data-framer-name\":\"Framer - Icon Variable Color\"},NPSNfh7ah:{\"data-framer-name\":\"GitHub - Icon Variable Color\"},nVaULP2kj:{\"data-framer-name\":\"Slack - Icon Variable Color\"},OeEr8VaOb:{\"data-framer-name\":\"Telegram - Icon\"},OGr6XLjck:{\"data-framer-name\":\"Spotify - Icon Variable Color\"},pDdx3DcRJ:{\"data-framer-name\":\"Twitter - Icon Variable Color\"},pWntzyxby:{\"data-framer-name\":\"GitHub - Icon\"},QcFUCR4tO:{\"data-framer-name\":\"TikTok - Icon\"},QmhC0AIOD:{\"data-framer-name\":\"Pinterest - Icon Variable Color\"},qrTvyr6wG:{\"data-framer-name\":\"SoundCloud - Icon\"},REWYywNSp:{\"data-framer-name\":\"Reddit - Icon Variable Color\"},tJ6jpSmHt:{\"data-framer-name\":\"Figma - Icon Variable Color\"},UGM5lzfad:{\"data-framer-name\":\"Slack - Icon\"},ulFOhrwjY:{\"data-framer-name\":\"Whatsapp - Icon\"},V4SZVTRXD:{\"data-framer-name\":\"TikTok - Icon Variable Color\"},VQB65ab0f:{\"data-framer-name\":\"Pinterest - Icon\"},WCKcPFtDY:{\"data-framer-name\":\"Amazon - Icon\"},wnDnRFT53:{\"data-framer-name\":\"Reddit - Icon\"},wYRwYbVUc:{\"data-framer-name\":\"Instagram - Icon Variable Color\"},xaKJWJT15:{\"data-framer-name\":\"Behance - Icon Variable Color\"},XXRNZdLUp:{\"data-framer-name\":\"Discord - Icon Variable Color\"},XYsgDmxB0:{\"data-framer-name\":\"LinkedIn - Icon Variable Color\"},Y3XgxOa92:{\"data-framer-name\":\"Telegram - Icon Variable Color\"},Ye4AIchmy:{\"data-framer-name\":\"DropBox - Icon\"},yQbfZw3cC:{\"data-framer-name\":\"Medium - Icon\"},YqhjlLJ5m:{\"data-framer-name\":\"DropBox - Icon Variable Color\"},YVXXUnQCE:{\"data-framer-name\":\"Whatsapp - Icon Variable Color\"},z08w00_hl:{\"data-framer-name\":\"SnapChat - Icon\"},z16Thb4jZ:{\"data-framer-name\":\"Youtube - Icon Variable Color\"},zGCKncsC1:{\"data-framer-name\":\"Twitch - Icon\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(motion.div,{className:\"framer-il4m5p-container\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"LDX7khYsx-container\",name:\"Icon\",children:/*#__PURE__*/ _jsx(Phosphor,{color:'var(--token-99b405dd-b67b-4187-ae74-3ac394ca5e76, rgb(29, 161, 242)) /* {\"name\":\"Twitter Blue\"} */',height:\"100%\",iconSearch:\"House\",iconSelection:\"TwitterLogo\",id:\"LDX7khYsx\",layoutId:\"LDX7khYsx\",mirrored:false,name:\"Icon\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:hMk6A3uVq,width:\"100%\",...addPropertyOverrides({\"C2gsL7d9l-hover\":{color:QG5iCMh9h},\"pDdx3DcRJ-hover\":{color:QG5iCMh9h},\"wYRwYbVUc-hover\":{color:QG5iCMh9h},\"XYsgDmxB0-hover\":{color:QG5iCMh9h},\"z16Thb4jZ-hover\":{color:QG5iCMh9h},A1Ima4gfg:{color:'var(--token-1e091a9c-f910-44b4-8bc5-88f00c1c80e8, rgb(225, 48, 108)) /* {\"name\":\"Instagram Pink\"} */',iconSelection:\"InstagramLogo\"},amTy9IIWI:{color:'var(--token-ef9a2b31-15fb-41b9-9677-1a727e50981c, rgb(123, 179, 46)) /* {\"name\":\"WeChat Green\"} */',iconSelection:\"WechatLogo\"},Bd92r1_Zx:{color:'var(--token-58593d33-77a7-4128-9cda-49341b33529e, rgb(88, 101, 242)) /* {\"name\":\"Discord Blue\"} */',iconSelection:\"DiscordLogo\"},bZtkiWnxP:{color:oxt12ADzN,iconSelection:\"TwitchLogo\"},C2gsL7d9l:{color:oxt12ADzN,iconSelection:\"FacebookLogo\"},C5wvOvp3P:{color:oxt12ADzN,iconSelection:\"WechatLogo\"},cnUcsRYiD:{color:oxt12ADzN,iconSelection:\"PatreonLogo\"},cSzuVeIoQ:{color:oxt12ADzN,iconSelection:\"SnapchatLogo\"},dCQBGEH9X:{color:'var(--token-6b5813bc-b279-41b5-a1fe-70ee1826b5d8, rgb(10, 102, 194)) /* {\"name\":\"LinkedIn Blue\"} */',iconSelection:\"LinkedinLogo\"},eB_5J3JPs:{color:oxt12ADzN,iconSelection:\"DribbbleLogo\"},FHiHqgeHZ:{color:oxt12ADzN,iconSelection:\"AmazonLogo\"},foPWgLXkT:{color:'var(--token-e46c5c84-245b-424b-bdf9-c63198ad0801, rgb(2, 121, 245)) /* {\"name\":\"Framer Blue\"} */',iconSelection:\"FramerLogo\"},Fs8L0UTpW:{color:oxt12ADzN,iconSelection:\"MessengerLogo\"},gzxOw99Wg:{color:'var(--token-a83a319b-efe3-40b0-a7a6-3d5369f67048, rgb(0, 132, 255)) /* {\"name\":\"Messenger Blue\"} */',iconSelection:\"MessengerLogo\"},HguTolZUd:{color:'var(--token-f86b84bc-c57d-4a4d-9923-4d41136f758d, rgb(23, 105, 255)) /* {\"name\":\"Behance Blue\"} */',iconSelection:\"BehanceLogo\"},JLjAgzwPE:{color:'var(--token-a48fad0d-b4e0-4d66-bc4b-2632717e96c4, rgb(156, 87, 246)) /* {\"name\":\"Figma Purple\"} */',iconSelection:\"FigmaLogo\"},K1BblOT0a:{color:oxt12ADzN,iconSelection:\"MediumLogo\"},k90nM5WwE:{color:oxt12ADzN,iconSelection:\"SoundcloudLogo\"},KdnsXC5Eg:{color:'var(--token-0047a9bb-87a8-4902-a7b2-c4093e02232a, rgb(249, 104, 84)) /* {\"name\":\"Patreon Orange\"} */',iconSelection:\"PatreonLogo\"},kNVSIRcvW:{color:'var(--token-c248948e-3044-4a98-a664-7ef4a44e9fef, rgb(24, 119, 242)) /* {\"name\":\"FaceBook Blue\"} */',iconSelection:\"FacebookLogo\"},KQ30DqiRd:{color:'var(--token-84c89a82-47ac-482e-b710-7039dd16e3d2, rgb(234, 76, 137)) /* {\"name\":\"Dribbble Logo\"} */',iconSelection:\"DribbbleLogo\"},M0sxMHTHU:{color:\"rgb(255, 0, 0)\",iconSelection:\"YoutubeLogo\"},MPG_Na9oL:{color:'var(--token-a2f4c3c9-53c5-4c5d-b3e6-dccb9e7b311f, rgb(29, 185, 84)) /* {\"name\":\"Spotify Green\"} */',iconSelection:\"SpotifyLogo\"},MqHMAhEL5:{color:oxt12ADzN,iconSelection:\"FramerLogo\"},NPSNfh7ah:{color:oxt12ADzN,iconSelection:\"GithubLogo\"},nVaULP2kj:{color:oxt12ADzN,iconSelection:\"SlackLogo\"},OeEr8VaOb:{color:'var(--token-74bd2714-f031-4d06-9c21-14cf1efe4cd5, rgb(0, 136, 204)) /* {\"name\":\"Telegram Blue\"} */',iconSelection:\"TelegramLogo\"},OGr6XLjck:{color:oxt12ADzN,iconSelection:\"SpotifyLogo\"},pDdx3DcRJ:{color:oxt12ADzN},pWntzyxby:{color:'var(--token-e0378c1c-0a3c-4f77-872f-c708b8483ba2, rgb(51, 51, 51)) /* {\"name\":\"Github Gray\"} */',iconSelection:\"GithubLogo\"},QcFUCR4tO:{color:'var(--token-856da1c2-c66d-4377-89a0-040dd7a5487c, rgb(31, 237, 231)) /* {\"name\":\"TikTok Green\"} */',iconSelection:\"TiktokLogo\"},QmhC0AIOD:{color:oxt12ADzN,iconSelection:\"PinterestLogo\"},qrTvyr6wG:{color:'var(--token-cbaffd99-b75f-4ab0-be95-0a65f8fc89af, rgb(255, 136, 0)) /* {\"name\":\"SoundCloud Orange\"} */',iconSelection:\"SoundcloudLogo\"},REWYywNSp:{color:oxt12ADzN,iconSelection:\"RedditLogo\"},tJ6jpSmHt:{color:oxt12ADzN,iconSelection:\"FigmaLogo\"},UGM5lzfad:{color:'var(--token-64d70ce1-fafb-4a13-b2a2-e7ccf552cde6, rgb(224, 21, 99)) /* {\"name\":\"Slack Pink\"} */',iconSelection:\"SlackLogo\"},ulFOhrwjY:{color:'var(--token-17a36339-9c92-4b6f-af78-0d0e50efab5d, rgb(37, 211, 102)) /* {\"name\":\"Whatsapp Green\"} */',iconSelection:\"WhatsappLogo\"},V4SZVTRXD:{color:oxt12ADzN,iconSelection:\"TiktokLogo\"},VQB65ab0f:{color:'var(--token-0186cc02-ed46-4574-b244-1fcdadf08d1c, rgb(230, 0, 35)) /* {\"name\":\"Pinterest Red\"} */',iconSelection:\"PinterestLogo\"},WCKcPFtDY:{color:'var(--token-953404b9-92be-4594-bc66-7486cc92660f, rgb(255, 153, 0)) /* {\"name\":\"Amazon Orange\"} */',iconSelection:\"AmazonLogo\"},wnDnRFT53:{color:'var(--token-83046be5-5063-4440-b0f9-1b0ddcfdd6a1, rgb(255, 69, 0)) /* {\"name\":\"Reddit Orange\"} */',iconSelection:\"RedditLogo\"},wYRwYbVUc:{color:oxt12ADzN,iconSelection:\"InstagramLogo\"},xaKJWJT15:{color:oxt12ADzN,iconSelection:\"BehanceLogo\"},XXRNZdLUp:{color:oxt12ADzN,iconSelection:\"DiscordLogo\"},XYsgDmxB0:{color:oxt12ADzN,iconSelection:\"LinkedinLogo\"},Y3XgxOa92:{color:oxt12ADzN,iconSelection:\"TelegramLogo\"},Ye4AIchmy:{color:'var(--token-0ee94b11-e0db-4889-b7ed-33c5ea622305, rgb(0, 126, 229)) /* {\"name\":\"DropBox Blue\"} */',iconSelection:\"DropboxLogo\"},yQbfZw3cC:{color:'var(--token-11a4dd7b-0890-4ed0-a8fd-8e5f3ca74114, rgb(0, 171, 108)) /* {\"name\":\"Medium Green\"} */',iconSelection:\"MediumLogo\"},YqhjlLJ5m:{color:oxt12ADzN,iconSelection:\"DropboxLogo\"},YVXXUnQCE:{color:oxt12ADzN,iconSelection:\"WhatsappLogo\"},z08w00_hl:{color:'var(--token-ad62502d-eeac-4c6d-ad59-508d0588dc74, rgb(255, 252, 0)) /* {\"name\":\"Snapchat Yellow\"} */',iconSelection:\"SnapchatLogo\"},z16Thb4jZ:{color:oxt12ADzN,iconSelection:\"YoutubeLogo\"},zGCKncsC1:{color:'var(--token-c2115c36-6707-418b-adf8-df79d0e0737b, rgb(145, 70, 255)) /* {\"name\":\"Twitch Purple\"} */',iconSelection:\"TwitchLogo\"}},baseVariant,gestureVariant)})})})})})})});});const css=['.framer-FR5p7 [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FR5p7 .framer-1fyfaai { display: block; }\",\".framer-FR5p7 .framer-17k0g47 { height: 40px; overflow: hidden; position: relative; text-decoration: none; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FR5p7 .framer-il4m5p-container { flex: none; height: 30px; left: calc(50.00000000000002% - 30px / 2); position: absolute; top: calc(50.00000000000002% - 30px / 2); width: 30px; }\",\".framer-FR5p7 .framer-v-th73vj .framer-17k0g47, .framer-FR5p7 .framer-v-1ycd4cs .framer-17k0g47, .framer-FR5p7 .framer-v-r2ndkq .framer-17k0g47, .framer-FR5p7 .framer-v-l1y806 .framer-17k0g47, .framer-FR5p7 .framer-v-eyqx76 .framer-17k0g47 { cursor: pointer; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"pDdx3DcRJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"kNVSIRcvW\":{\"layout\":[\"fixed\",\"fixed\"]},\"C2gsL7d9l\":{\"layout\":[\"fixed\",\"fixed\"]},\"VQB65ab0f\":{\"layout\":[\"fixed\",\"fixed\"]},\"QmhC0AIOD\":{\"layout\":[\"fixed\",\"fixed\"]},\"dCQBGEH9X\":{\"layout\":[\"fixed\",\"fixed\"]},\"XYsgDmxB0\":{\"layout\":[\"fixed\",\"fixed\"]},\"ulFOhrwjY\":{\"layout\":[\"fixed\",\"fixed\"]},\"YVXXUnQCE\":{\"layout\":[\"fixed\",\"fixed\"]},\"wnDnRFT53\":{\"layout\":[\"fixed\",\"fixed\"]},\"REWYywNSp\":{\"layout\":[\"fixed\",\"fixed\"]},\"QcFUCR4tO\":{\"layout\":[\"fixed\",\"fixed\"]},\"V4SZVTRXD\":{\"layout\":[\"fixed\",\"fixed\"]},\"A1Ima4gfg\":{\"layout\":[\"fixed\",\"fixed\"]},\"wYRwYbVUc\":{\"layout\":[\"fixed\",\"fixed\"]},\"pWntzyxby\":{\"layout\":[\"fixed\",\"fixed\"]},\"NPSNfh7ah\":{\"layout\":[\"fixed\",\"fixed\"]},\"HguTolZUd\":{\"layout\":[\"fixed\",\"fixed\"]},\"xaKJWJT15\":{\"layout\":[\"fixed\",\"fixed\"]},\"Bd92r1_Zx\":{\"layout\":[\"fixed\",\"fixed\"]},\"XXRNZdLUp\":{\"layout\":[\"fixed\",\"fixed\"]},\"KQ30DqiRd\":{\"layout\":[\"fixed\",\"fixed\"]},\"eB_5J3JPs\":{\"layout\":[\"fixed\",\"fixed\"]},\"foPWgLXkT\":{\"layout\":[\"fixed\",\"fixed\"]},\"MqHMAhEL5\":{\"layout\":[\"fixed\",\"fixed\"]},\"yQbfZw3cC\":{\"layout\":[\"fixed\",\"fixed\"]},\"K1BblOT0a\":{\"layout\":[\"fixed\",\"fixed\"]},\"MPG_Na9oL\":{\"layout\":[\"fixed\",\"fixed\"]},\"OGr6XLjck\":{\"layout\":[\"fixed\",\"fixed\"]},\"OeEr8VaOb\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y3XgxOa92\":{\"layout\":[\"fixed\",\"fixed\"]},\"M0sxMHTHU\":{\"layout\":[\"fixed\",\"fixed\"]},\"z16Thb4jZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"zGCKncsC1\":{\"layout\":[\"fixed\",\"fixed\"]},\"bZtkiWnxP\":{\"layout\":[\"fixed\",\"fixed\"]},\"amTy9IIWI\":{\"layout\":[\"fixed\",\"fixed\"]},\"C5wvOvp3P\":{\"layout\":[\"fixed\",\"fixed\"]},\"qrTvyr6wG\":{\"layout\":[\"fixed\",\"fixed\"]},\"k90nM5WwE\":{\"layout\":[\"fixed\",\"fixed\"]},\"z08w00_hl\":{\"layout\":[\"fixed\",\"fixed\"]},\"cSzuVeIoQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"UGM5lzfad\":{\"layout\":[\"fixed\",\"fixed\"]},\"nVaULP2kj\":{\"layout\":[\"fixed\",\"fixed\"]},\"KdnsXC5Eg\":{\"layout\":[\"fixed\",\"fixed\"]},\"cnUcsRYiD\":{\"layout\":[\"fixed\",\"fixed\"]},\"gzxOw99Wg\":{\"layout\":[\"fixed\",\"fixed\"]},\"Fs8L0UTpW\":{\"layout\":[\"fixed\",\"fixed\"]},\"JLjAgzwPE\":{\"layout\":[\"fixed\",\"fixed\"]},\"tJ6jpSmHt\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ye4AIchmy\":{\"layout\":[\"fixed\",\"fixed\"]},\"YqhjlLJ5m\":{\"layout\":[\"fixed\",\"fixed\"]},\"WCKcPFtDY\":{\"layout\":[\"fixed\",\"fixed\"]},\"FHiHqgeHZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"MyfUNdObh\":{\"layout\":[\"fixed\",\"fixed\"]},\"jteOfN8cf\":{\"layout\":[\"fixed\",\"fixed\"]},\"s3M4c7iIs\":{\"layout\":[\"fixed\",\"fixed\"]},\"f9CaPD4aw\":{\"layout\":[\"fixed\",\"fixed\"]},\"DkU_fDcDj\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"rIjeT7ikx\":\"link\",\"hMk6A3uVq\":\"weight\",\"BkOAqLgnU\":\"backgroundFill\",\"WjgfwHKRx\":\"radius\",\"oxt12ADzN\":\"iconColor\",\"QG5iCMh9h\":\"hoverFill\"}\n * @framerImmutableVariables false\n */ const FramerbzJ6YXd3E=withCSS(Component,css,\"framer-FR5p7\");export default FramerbzJ6YXd3E;FramerbzJ6YXd3E.displayName=\"Social Icons\";FramerbzJ6YXd3E.defaultProps={height:40,width:40};addPropertyControls(FramerbzJ6YXd3E,{variant:{options:[\"iXqRaMeAG\",\"pDdx3DcRJ\",\"kNVSIRcvW\",\"C2gsL7d9l\",\"VQB65ab0f\",\"QmhC0AIOD\",\"dCQBGEH9X\",\"XYsgDmxB0\",\"ulFOhrwjY\",\"YVXXUnQCE\",\"wnDnRFT53\",\"REWYywNSp\",\"QcFUCR4tO\",\"V4SZVTRXD\",\"A1Ima4gfg\",\"wYRwYbVUc\",\"pWntzyxby\",\"NPSNfh7ah\",\"HguTolZUd\",\"xaKJWJT15\",\"Bd92r1_Zx\",\"XXRNZdLUp\",\"KQ30DqiRd\",\"eB_5J3JPs\",\"foPWgLXkT\",\"MqHMAhEL5\",\"yQbfZw3cC\",\"K1BblOT0a\",\"MPG_Na9oL\",\"OGr6XLjck\",\"OeEr8VaOb\",\"Y3XgxOa92\",\"M0sxMHTHU\",\"z16Thb4jZ\",\"zGCKncsC1\",\"bZtkiWnxP\",\"amTy9IIWI\",\"C5wvOvp3P\",\"qrTvyr6wG\",\"k90nM5WwE\",\"z08w00_hl\",\"cSzuVeIoQ\",\"UGM5lzfad\",\"nVaULP2kj\",\"KdnsXC5Eg\",\"cnUcsRYiD\",\"gzxOw99Wg\",\"Fs8L0UTpW\",\"JLjAgzwPE\",\"tJ6jpSmHt\",\"Ye4AIchmy\",\"YqhjlLJ5m\",\"WCKcPFtDY\",\"FHiHqgeHZ\"],optionTitles:[\"Twitter - Icon\",\"Twitter - Icon Variable Color\",\"FaceBook - Icon\",\"FaceBook - Icon Variable Color\",\"Pinterest - Icon\",\"Pinterest - Icon Variable Color\",\"LinkedIn - Icon\",\"LinkedIn - Icon Variable Color\",\"Whatsapp - Icon\",\"Whatsapp - Icon Variable Color\",\"Reddit - Icon\",\"Reddit - Icon Variable Color\",\"TikTok - Icon\",\"TikTok - Icon Variable Color\",\"Instagram - Icon\",\"Instagram - Icon Variable Color\",\"GitHub - Icon\",\"GitHub - Icon Variable Color\",\"Behance - Icon\",\"Behance - Icon Variable Color\",\"Discord - Icon\",\"Discord - Icon Variable Color\",\"Dribbble - Icon\",\"Dribbble - Icon Variable Color\",\"Framer - Icon\",\"Framer - Icon Variable Color\",\"Medium - Icon\",\"Medium - Icon Variable Color\",\"Spotify - Icon\",\"Spotify - Icon Variable Color\",\"Telegram - Icon\",\"Telegram - Icon Variable Color\",\"Youtube - Icon\",\"Youtube - Icon Variable Color\",\"Twitch - Icon\",\"Twitch - Icon Variable Color\",\"WeChat - Icon\",\"WeChat - Icon Variable Color\",\"SoundCloud - Icon\",\"SoundCloud - Icon Variable Color\",\"SnapChat - Icon\",\"SnapChat - Icon Variable Color\",\"Slack - Icon\",\"Slack - Icon Variable Color\",\"Patreon - Icon\",\"Patreon - Icon Variable Color\",\"Messenger - Icon\",\"Messenger - Icon Variable Color\",\"Figma - Icon\",\"Figma - Icon Variable Color\",\"DropBox - Icon\",\"DropBox - Icon Variable Color\",\"Amazon - Icon\",\"Amazon - Icon Variable Color\"],title:\"Variant\",type:ControlType.Enum},rIjeT7ikx:{title:\"Link\",type:ControlType.Link},hMk6A3uVq:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"weight\"])&&{...PhosphorControls[\"weight\"],defaultValue:\"bold\",hidden:undefined,title:\"Weight\"},BkOAqLgnU:{defaultValue:\"rgba(255, 255, 255, 0)\",title:\"Background Fill\",type:ControlType.Color},WjgfwHKRx:{defaultValue:15,title:\"Radius\",type:ControlType.Number},oxt12ADzN:{defaultValue:\"rgb(255, 255, 255)\",title:\"Icon Color\",type:ControlType.Color},QG5iCMh9h:{defaultValue:\"rgb(255, 255, 255)\",title:\"Hover fill\",type:ControlType.Color}});addFonts(FramerbzJ6YXd3E,[...PhosphorFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbzJ6YXd3E\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"40\",\"framerImmutableVariables\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pDdx3DcRJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kNVSIRcvW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"C2gsL7d9l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VQB65ab0f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QmhC0AIOD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dCQBGEH9X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XYsgDmxB0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ulFOhrwjY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YVXXUnQCE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wnDnRFT53\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"REWYywNSp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QcFUCR4tO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"V4SZVTRXD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"A1Ima4gfg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wYRwYbVUc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pWntzyxby\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NPSNfh7ah\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HguTolZUd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xaKJWJT15\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Bd92r1_Zx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XXRNZdLUp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KQ30DqiRd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eB_5J3JPs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"foPWgLXkT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MqHMAhEL5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yQbfZw3cC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"K1BblOT0a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MPG_Na9oL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OGr6XLjck\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OeEr8VaOb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y3XgxOa92\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"M0sxMHTHU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"z16Thb4jZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zGCKncsC1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bZtkiWnxP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"amTy9IIWI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"C5wvOvp3P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qrTvyr6wG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"k90nM5WwE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"z08w00_hl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cSzuVeIoQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UGM5lzfad\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nVaULP2kj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KdnsXC5Eg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cnUcsRYiD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gzxOw99Wg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Fs8L0UTpW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JLjAgzwPE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tJ6jpSmHt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ye4AIchmy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YqhjlLJ5m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WCKcPFtDY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FHiHqgeHZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MyfUNdObh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jteOfN8cf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"s3M4c7iIs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"f9CaPD4aw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DkU_fDcDj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"rIjeT7ikx\\\":\\\"link\\\",\\\"hMk6A3uVq\\\":\\\"weight\\\",\\\"BkOAqLgnU\\\":\\\"backgroundFill\\\",\\\"WjgfwHKRx\\\":\\\"radius\\\",\\\"oxt12ADzN\\\":\\\"iconColor\\\",\\\"QG5iCMh9h\\\":\\\"hoverFill\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bzJ6YXd3E.map", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([\"GF;Lato-regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{family:\"Lato\",moduleAsset:{localModuleIdentifier:\"local-module:css/iLLnxd7wS:default\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk6XweuBCY.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk6XweuBCY.ttf\",weight:\"400\"}];export const css=['.framer-EloLU .framer-styles-preset-i2oquq:not(.rich-text-wrapper), .framer-EloLU .framer-styles-preset-i2oquq.rich-text-wrapper p { --framer-font-family: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-a58d3227-013d-4a9b-9135-f03530ad8309, #dcdcdc); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-EloLU .framer-styles-preset-i2oquq:not(.rich-text-wrapper), .framer-EloLU .framer-styles-preset-i2oquq.rich-text-wrapper p { --framer-font-family: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-a58d3227-013d-4a9b-9135-f03530ad8309, #dcdcdc); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-EloLU .framer-styles-preset-i2oquq:not(.rich-text-wrapper), .framer-EloLU .framer-styles-preset-i2oquq.rich-text-wrapper p { --framer-font-family: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-a58d3227-013d-4a9b-9135-f03530ad8309, #dcdcdc); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-EloLU\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Lato-700\",\"GF;Lato-900\",\"GF;Lato-900italic\",\"GF;Lato-700italic\"]);export const fonts=[{family:\"Lato\",moduleAsset:{localModuleIdentifier:\"local-module:css/nVJ9KhS1z:default\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf\",weight:\"700\"},{family:\"Lato\",moduleAsset:{localModuleIdentifier:\"local-module:css/nVJ9KhS1z:default\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf\",weight:\"900\"},{family:\"Lato\",moduleAsset:{localModuleIdentifier:\"local-module:css/nVJ9KhS1z:default\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf\"},style:\"italic\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf\",weight:\"900\"},{family:\"Lato\",moduleAsset:{localModuleIdentifier:\"local-module:css/nVJ9KhS1z:default\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf\"},style:\"italic\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf\",weight:\"700\"}];export const css=['.framer-xNndE .framer-styles-preset-3f5a8j:not(.rich-text-wrapper), .framer-xNndE .framer-styles-preset-3f5a8j.rich-text-wrapper h2 { --framer-font-family: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-family-bold: \"Lato\", sans-serif; --framer-font-family-bold-italic: \"Lato\", sans-serif; --framer-font-family-italic: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-size: 42px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-xNndE .framer-styles-preset-3f5a8j:not(.rich-text-wrapper), .framer-xNndE .framer-styles-preset-3f5a8j.rich-text-wrapper h2 { --framer-font-family: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-family-bold: \"Lato\", sans-serif; --framer-font-family-bold-italic: \"Lato\", sans-serif; --framer-font-family-italic: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-xNndE .framer-styles-preset-3f5a8j:not(.rich-text-wrapper), .framer-xNndE .framer-styles-preset-3f5a8j.rich-text-wrapper h2 { --framer-font-family: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-family-bold: \"Lato\", sans-serif; --framer-font-family-bold-italic: \"Lato\", sans-serif; --framer-font-family-italic: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-xNndE\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=[\".framer-dzjKD .framer-styles-preset-mss7rv:not(.rich-text-wrapper), .framer-dzjKD .framer-styles-preset-mss7rv.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-decoration: none; --framer-link-text-decoration: none; }\"];export const className=\"framer-dzjKD\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a1e8cb2)\nimport{jsx as r}from\"react/jsx-runtime\";import{addFonts as e,addPropertyControls as a,ControlType as t,cx as o,Link as n,RichText as s,useLocaleInfo as i,useVariantState as l,withCSS as d}from\"framer\";import{LayoutGroup as m,motion as p,MotionConfigContext as f}from\"framer-motion\";import*as c from\"react\";import*as u from\"https://framerusercontent.com/modules/hYeGfqmxLU3OKmq3zRYu/gvCT3X67hxc1YblzBkz9/iLLnxd7wS.js\";import*as g from\"https://framerusercontent.com/modules/xq3uyceD4ElbsDejGXoC/roiPUscghYoPh5TQT4WR/nVJ9KhS1z.js\";import*as h from\"https://framerusercontent.com/modules/tvMR6pBLAGFxzSA16KhY/YkE6UdF8vHpNx68coTln/WxwPInJ9x.js\";let y={gGyHRrpqo:{hover:!0},u5GHGgu56:{hover:!0,pressed:!0}},b=[\"u5GHGgu56\",\"gGyHRrpqo\"],v={gGyHRrpqo:\"framer-v-ndgktx\",u5GHGgu56:\"framer-v-12ley55\"};function x(r,...e){let a={};return null==e||e.forEach(e=>e&&Object.assign(a,r[e])),a;}let G={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},w=({value:e,children:a})=>{let t=c.useContext(f),o=null!=e?e:t.transition,n=c.useMemo(()=>({...t,transition:o}),[JSON.stringify(o)]);return /*#__PURE__*/r(f.Provider,{value:n,children:a});},H={\"Variant 1\":\"u5GHGgu56\",\"Variant 2\":\"gGyHRrpqo\"},D=({height:r,id:e,link:a,newTab:t,title:o,width:n,...s})=>{var i,l,d;return{...s,GwgW3TL3L:null!=a?a:s.GwgW3TL3L,O7DtX5Oor:null!==(i=null!=o?o:s.O7DtX5Oor)&&void 0!==i?i:\"Home 1\",oD_aF1ZMm:null!=t?t:s.oD_aF1ZMm,variant:null!==(d=null!==(l=H[s.variant])&&void 0!==l?l:s.variant)&&void 0!==d?d:\"u5GHGgu56\"};},Z=(r,e)=>e.join(\"-\")+r.layoutDependency,N=/*#__PURE__*/c.forwardRef(function(e,a){let{activeLocale:t}=i(),{style:d,className:f,layoutId:H,variant:N,O7DtX5Oor:R,GwgW3TL3L:k,oD_aF1ZMm:L,...T}=D(e),{baseVariant:V,classNames:q,gestureVariant:S,setGestureState:I,setVariant:O,transition:P,variants:j}=l({cycleOrder:b,defaultVariant:\"u5GHGgu56\",enabledGestures:y,transitions:G,variant:N,variantClassNames:v}),W=Z(e,j),C=c.useId();return /*#__PURE__*/r(m,{id:null!=H?H:C,children:/*#__PURE__*/r(p.div,{initial:N,animate:j,onHoverStart:()=>I({isHovered:!0}),onHoverEnd:()=>I({isHovered:!1}),onTapStart:()=>I({isPressed:!0}),onTap:()=>I({isPressed:!1}),onTapCancel:()=>I({isPressed:!1}),className:o(\"framer-o0ZsD\",u.className,h.className,g.className,q),style:{display:\"contents\"},children:/*#__PURE__*/r(w,{value:P,children:/*#__PURE__*/r(p.div,{...T,className:o(\"framer-12ley55\",f),\"data-border\":!0,\"data-framer-name\":\"Variant 1\",layoutDependency:W,layoutId:\"u5GHGgu56\",ref:a,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 98, 35, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...d},variants:{\"gGyHRrpqo-hover\":{\"--border-color\":\"rgba(255, 98, 35, 0.7)\"},\"u5GHGgu56-hover\":{\"--border-color\":\"rgba(255, 98, 35, 0.7)\"},\"u5GHGgu56-pressed\":{backgroundColor:\"var(--token-9e547188-4f8f-4647-bab5-5b744ce692ba, rgb(255, 98, 35))\"}},...x({\"gGyHRrpqo-hover\":{\"data-framer-name\":void 0},\"u5GHGgu56-hover\":{\"data-framer-name\":void 0},\"u5GHGgu56-pressed\":{\"data-framer-name\":void 0},gGyHRrpqo:{\"data-framer-name\":\"Variant 2\"}},V,S),children:/*#__PURE__*/r(s,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(c.Fragment,{children:/*#__PURE__*/r(p.p,{className:\"framer-styles-preset-i2oquq\",\"data-styles-preset\":\"iLLnxd7wS\",children:/*#__PURE__*/r(n,{href:k,openInNewTab:L,smoothScroll:!1,children:/*#__PURE__*/r(p.a,{className:\"framer-styles-preset-mss7rv\",\"data-styles-preset\":\"WxwPInJ9x\",children:\"Home 1\"})})})}),className:\"framer-l8wo3w\",layoutDependency:W,layoutId:\"ByWctk7IP\",style:{\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-oD_aF1ZMm-O78HDSM3Z\":L},text:R,verticalAlignment:\"top\",withExternalLayout:!0,...x({gGyHRrpqo:{children:/*#__PURE__*/r(c.Fragment,{children:/*#__PURE__*/r(p.h2,{className:\"framer-styles-preset-3f5a8j\",\"data-styles-preset\":\"nVJ9KhS1z\",children:/*#__PURE__*/r(n,{href:k,openInNewTab:L,smoothScroll:!1,children:/*#__PURE__*/r(p.a,{className:\"framer-styles-preset-mss7rv\",\"data-styles-preset\":\"WxwPInJ9x\",children:\"Home 1\"})})})})}},V,S)})})})})});}),R=['.framer-o0ZsD [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-o0ZsD .framer-k5m4tc { display: block; }\",\".framer-o0ZsD .framer-12ley55 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 2px 8px 2px 8px; position: relative; width: min-content; }\",\".framer-o0ZsD .framer-l8wo3w { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-o0ZsD .framer-v-12ley55 .framer-12ley55, .framer-o0ZsD .framer-v-ndgktx .framer-12ley55 { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-o0ZsD .framer-12ley55 { gap: 0px; } .framer-o0ZsD .framer-12ley55 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-o0ZsD .framer-12ley55 > :first-child { margin-top: 0px; } .framer-o0ZsD .framer-12ley55 > :last-child { margin-bottom: 0px; } }\",\".framer-o0ZsD.framer-v-ndgktx .framer-12ley55 { align-content: flex-start; align-items: flex-start; justify-content: flex-start; padding: 4px 12px 4px 12px; }\",...u.css,...h.css,...g.css],k=d(N,R,\"framer-o0ZsD\");export default k;k.displayName=\"Nav link\",k.defaultProps={height:31,width:78},a(k,{variant:{options:[\"u5GHGgu56\",\"gGyHRrpqo\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:t.Enum},O7DtX5Oor:{defaultValue:\"Home 1\",displayTextArea:!1,title:\"Title\",type:t.String},GwgW3TL3L:{title:\"Link\",type:t.Link},oD_aF1ZMm:{defaultValue:!1,title:\"New Tab\",type:t.Boolean}}),e(k,[...u.fonts,...h.fonts,...g.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO78HDSM3Z\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"31\",\"framerImmutableVariables\":\"false\",\"framerVariables\":\"{\\\"O7DtX5Oor\\\":\\\"title\\\",\\\"GwgW3TL3L\\\":\\\"link\\\",\\\"oD_aF1ZMm\\\":\\\"newTab\\\"}\",\"framerIntrinsicWidth\":\"78\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gGyHRrpqo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Dx5pa7Pb8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ISfCVbuhS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HC7FQLvMO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7f988a2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lWg1wkSiqFddekDEwxmM/gvxlY8YNH8UsQ0bAmu3j/iLLnxd7wS.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/gicDKFsmKrG6zTHbixI5/IurxQ66kHXof8pEwwtkD/jYyitKQFx.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/oBflJ1u2Kpncl18pJz0Y/mdtoaiEHRt18oZbuBMeu/WxwPInJ9x.js\";import SocialIcons from\"https://framerusercontent.com/modules/yspZYHGHITv3GV1npmow/Rysm8N87tB5tDLMLebZ7/bzJ6YXd3E.js\";import NavLink from\"https://framerusercontent.com/modules/qW5S2pthLgro0F0zoATo/hbyxHl2IMEeIp0rS1Hk1/O78HDSM3Z.js\";const NavLinkFonts=getFonts(NavLink);const SocialIconsFonts=getFonts(SocialIcons);const cycleOrder=[\"dOfGYGfMR\",\"Bg2Fqeyhy\",\"u1D_6S3xR\"];const serializationHash=\"framer-VyfZ5\";const variantClassNames={Bg2Fqeyhy:\"framer-v-8uvn5g\",dOfGYGfMR:\"framer-v-vbucvf\",u1D_6S3xR:\"framer-v-447s6x\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"dOfGYGfMR\",Phone:\"u1D_6S3xR\",Tablet:\"Bg2Fqeyhy\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"dOfGYGfMR\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dOfGYGfMR\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(baseVariant===\"u1D_6S3xR\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-vbucvf\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"dOfGYGfMR\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-be08eb52-92ec-4238-a26a-b0897471c6c9, rgb(27, 28, 29))\",...style},...addPropertyOverrides({Bg2Fqeyhy:{\"data-framer-name\":\"Tablet\"},u1D_6S3xR:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12qczcx\",layoutDependency:layoutDependency,layoutId:\"Thg7vjYgj\",style:{backdropFilter:\"blur(40px)\",WebkitBackdropFilter:\"blur(40px)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ng3ryn\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"Thg7vjYgjXuRp2Uhdd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-9e547188-4f8f-4647-bab5-5b744ce692ba, rgb(255, 98, 35)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-mss7rv\",\"data-styles-preset\":\"WxwPInJ9x\",children:\"Early Exit Club\"})})})}),className:\"framer-1idvpmn\",fonts:[\"GF;Lato-900\"],layoutDependency:layoutDependency,layoutId:\"Thg7vjYgjSFWLT_tpM\",style:{\"--extracted-1eung3n\":\"var(--token-9e547188-4f8f-4647-bab5-5b744ce692ba, rgb(255, 98, 35))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bidrfi\",layoutDependency:layoutDependency,layoutId:\"Thg7vjYgjXj5qQdX90\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e9i7qw\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"Thg7vjYgjadqxWFFAu\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ElQFQaLIQ\"},implicitPathVariables:undefined},{href:{webPageId:\"ElQFQaLIQ\"},implicitPathVariables:undefined},{href:{webPageId:\"ElQFQaLIQ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z2scgn-container\",layoutDependency:layoutDependency,layoutId:\"jN2CraFBu-container\",children:/*#__PURE__*/_jsx(NavLink,{GwgW3TL3L:resolvedLinks[0],height:\"100%\",id:\"jN2CraFBu\",layoutId:\"jN2CraFBu\",O7DtX5Oor:\"Hire Me\",oD_aF1ZMm:false,variant:\"u5GHGgu56\",width:\"100%\",...addPropertyOverrides({Bg2Fqeyhy:{GwgW3TL3L:resolvedLinks[1]},u1D_6S3xR:{GwgW3TL3L:resolvedLinks[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yliRHrMRC\"},implicitPathVariables:undefined},{href:{webPageId:\"yliRHrMRC\"},implicitPathVariables:undefined},{href:{webPageId:\"yliRHrMRC\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mi3vk2-container\",layoutDependency:layoutDependency,layoutId:\"AKqjMZgZ0-container\",children:/*#__PURE__*/_jsx(NavLink,{GwgW3TL3L:resolvedLinks1[0],height:\"100%\",id:\"AKqjMZgZ0\",layoutId:\"AKqjMZgZ0\",O7DtX5Oor:\"Products\",oD_aF1ZMm:false,variant:\"u5GHGgu56\",width:\"100%\",...addPropertyOverrides({Bg2Fqeyhy:{GwgW3TL3L:resolvedLinks1[1]},u1D_6S3xR:{GwgW3TL3L:resolvedLinks1[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-177qwst-container\",layoutDependency:layoutDependency,layoutId:\"QkoILRQ3q-container\",children:/*#__PURE__*/_jsx(NavLink,{GwgW3TL3L:\"https://newsletter.earlyexit.club/\",height:\"100%\",id:\"QkoILRQ3q\",layoutId:\"QkoILRQ3q\",O7DtX5Oor:\"Past Newsletters\",oD_aF1ZMm:true,variant:\"u5GHGgu56\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ajnxr4\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"Thg7vjYgjzUpN3ULbC\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b0npz-container\",layoutDependency:layoutDependency,layoutId:\"PERMqMh_N-container\",children:/*#__PURE__*/_jsx(SocialIcons,{BkOAqLgnU:\"var(--token-2be427b2-8e31-4ef3-b2bb-643d9c029e2e, rgb(35, 37, 37))\",height:\"100%\",hMk6A3uVq:\"bold\",id:\"PERMqMh_N\",layoutId:\"PERMqMh_N\",oxt12ADzN:\"var(--token-a58d3227-013d-4a9b-9135-f03530ad8309, rgb(220, 220, 220))\",QG5iCMh9h:\"var(--token-9e547188-4f8f-4647-bab5-5b744ce692ba, rgb(255, 98, 35))\",rIjeT7ikx:\"https://www.linkedin.com/in/nicklafferty/\",style:{height:\"100%\",width:\"100%\"},variant:\"XYsgDmxB0\",width:\"100%\",WjgfwHKRx:8})})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jtno6p\",layoutDependency:layoutDependency,layoutId:\"Nk4c6WY0A\",style:{backgroundColor:\"rgba(255, 98, 35, 0.2)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yyia6o\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"QVy8bgDDH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-i2oquq\",\"data-styles-preset\":\"iLLnxd7wS\",children:\"Copyright \\xa9 Early Exit Club LLC\"})}),className:\"framer-zshrpa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gLEEtSM18\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o2n0fh\",layoutDependency:layoutDependency,layoutId:\"CynTI8Lx8\",style:{backgroundColor:\"var(--token-8ca8368b-d781-491c-8083-cd810f3cf522, rgb(115, 115, 115))\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-i2oquq\",\"data-styles-preset\":\"iLLnxd7wS\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/nicklafferty/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4z776k\",\"data-styles-preset\":\"jYyitKQFx\",children:\"Built by Nick Lafferty\"})})})}),className:\"framer-1c7cwpr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hbOmdM1aH\",verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VyfZ5.framer-1tnta83, .framer-VyfZ5 .framer-1tnta83 { display: block; }\",\".framer-VyfZ5.framer-vbucvf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 30px 40px 30px 40px; position: relative; width: 1200px; }\",\".framer-VyfZ5 .framer-12qczcx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-VyfZ5 .framer-1ng3ryn { 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: min-content; }\",\".framer-VyfZ5 .framer-1idvpmn, .framer-VyfZ5 .framer-zshrpa, .framer-VyfZ5 .framer-1c7cwpr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-VyfZ5 .framer-bidrfi { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-VyfZ5 .framer-1e9i7qw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-VyfZ5 .framer-z2scgn-container, .framer-VyfZ5 .framer-1mi3vk2-container, .framer-VyfZ5 .framer-177qwst-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-VyfZ5 .framer-ajnxr4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-VyfZ5 .framer-1b0npz-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 32px; }\",\".framer-VyfZ5 .framer-jtno6p { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-VyfZ5 .framer-1yyia6o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VyfZ5 .framer-1o2n0fh { align-self: stretch; flex: none; height: auto; overflow: visible; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VyfZ5.framer-vbucvf, .framer-VyfZ5 .framer-12qczcx, .framer-VyfZ5 .framer-1ng3ryn, .framer-VyfZ5 .framer-bidrfi, .framer-VyfZ5 .framer-1e9i7qw, .framer-VyfZ5 .framer-ajnxr4, .framer-VyfZ5 .framer-1yyia6o { gap: 0px; } .framer-VyfZ5.framer-vbucvf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-VyfZ5.framer-vbucvf > :first-child { margin-top: 0px; } .framer-VyfZ5.framer-vbucvf > :last-child { margin-bottom: 0px; } .framer-VyfZ5 .framer-12qczcx > *, .framer-VyfZ5 .framer-1ng3ryn > *, .framer-VyfZ5 .framer-bidrfi > *, .framer-VyfZ5 .framer-1e9i7qw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-VyfZ5 .framer-12qczcx > :first-child, .framer-VyfZ5 .framer-1ng3ryn > :first-child, .framer-VyfZ5 .framer-bidrfi > :first-child, .framer-VyfZ5 .framer-1e9i7qw > :first-child, .framer-VyfZ5 .framer-ajnxr4 > :first-child, .framer-VyfZ5 .framer-1yyia6o > :first-child { margin-left: 0px; } .framer-VyfZ5 .framer-12qczcx > :last-child, .framer-VyfZ5 .framer-1ng3ryn > :last-child, .framer-VyfZ5 .framer-bidrfi > :last-child, .framer-VyfZ5 .framer-1e9i7qw > :last-child, .framer-VyfZ5 .framer-ajnxr4 > :last-child, .framer-VyfZ5 .framer-1yyia6o > :last-child { margin-right: 0px; } .framer-VyfZ5 .framer-ajnxr4 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-VyfZ5 .framer-1yyia6o > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } }\",\".framer-VyfZ5.framer-v-8uvn5g.framer-vbucvf { padding: 30px; width: 810px; }\",\".framer-VyfZ5.framer-v-447s6x.framer-vbucvf { gap: 20px; width: 390px; }\",\".framer-VyfZ5.framer-v-447s6x .framer-12qczcx { flex-direction: column; gap: 30px; }\",\".framer-VyfZ5.framer-v-447s6x .framer-bidrfi { flex: none; flex-direction: column; gap: 30px; width: 100%; }\",\".framer-VyfZ5.framer-v-447s6x .framer-1e9i7qw { flex: none; width: 100%; }\",\".framer-VyfZ5.framer-v-447s6x .framer-1yyia6o { flex-direction: column; gap: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VyfZ5.framer-v-447s6x.framer-vbucvf, .framer-VyfZ5.framer-v-447s6x .framer-12qczcx, .framer-VyfZ5.framer-v-447s6x .framer-bidrfi, .framer-VyfZ5.framer-v-447s6x .framer-1yyia6o { gap: 0px; } .framer-VyfZ5.framer-v-447s6x.framer-vbucvf > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-VyfZ5.framer-v-447s6x.framer-vbucvf > :first-child, .framer-VyfZ5.framer-v-447s6x .framer-12qczcx > :first-child, .framer-VyfZ5.framer-v-447s6x .framer-bidrfi > :first-child, .framer-VyfZ5.framer-v-447s6x .framer-1yyia6o > :first-child { margin-top: 0px; } .framer-VyfZ5.framer-v-447s6x.framer-vbucvf > :last-child, .framer-VyfZ5.framer-v-447s6x .framer-12qczcx > :last-child, .framer-VyfZ5.framer-v-447s6x .framer-bidrfi > :last-child, .framer-VyfZ5.framer-v-447s6x .framer-1yyia6o > :last-child { margin-bottom: 0px; } .framer-VyfZ5.framer-v-447s6x .framer-12qczcx > *, .framer-VyfZ5.framer-v-447s6x .framer-bidrfi > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-VyfZ5.framer-v-447s6x .framer-1yyia6o > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 158\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Bg2Fqeyhy\":{\"layout\":[\"fixed\",\"auto\"]},\"u1D_6S3xR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIKxGI7fAH=withCSS(Component,css,\"framer-VyfZ5\");export default FramerIKxGI7fAH;FramerIKxGI7fAH.displayName=\"Footer\";FramerIKxGI7fAH.defaultProps={height:158,width:1200};addPropertyControls(FramerIKxGI7fAH,{variant:{options:[\"dOfGYGfMR\",\"Bg2Fqeyhy\",\"u1D_6S3xR\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerIKxGI7fAH,[{explicitInter:true,fonts:[{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50XewqFGC_p9dw.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...NavLinkFonts,...SocialIconsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIKxGI7fAH\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Bg2Fqeyhy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u1D_6S3xR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"158\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2ca17d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import LemonSqueezy from\"https://framerusercontent.com/modules/1mkt2plloPEOvoe16UUK/EUmeSZzQepu1cHilAvr7/LemonSqueezy.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/oBflJ1u2Kpncl18pJz0Y/mdtoaiEHRt18oZbuBMeu/WxwPInJ9x.js\";import NavLink from\"https://framerusercontent.com/modules/qW5S2pthLgro0F0zoATo/hbyxHl2IMEeIp0rS1Hk1/O78HDSM3Z.js\";const NavLinkFonts=getFonts(NavLink);const LemonSqueezyFonts=getFonts(LemonSqueezy);const cycleOrder=[\"qRX09f_ou\",\"n4UeX_okh\",\"kCYqlYXN3\",\"k7gdDllFH\"];const serializationHash=\"framer-O6Z2x\";const variantClassNames={k7gdDllFH:\"framer-v-idj0sx\",kCYqlYXN3:\"framer-v-41nmc7\",n4UeX_okh:\"framer-v-v1upeq\",qRX09f_ou:\"framer-v-etyodo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};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={\"Phone-open\":\"k7gdDllFH\",Desktop:\"qRX09f_ou\",Phone:\"kCYqlYXN3\",Tablet:\"n4UeX_okh\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"qRX09f_ou\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qRX09f_ou\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1et2pwf=activeVariantCallback(async(...args)=>{setVariant(\"k7gdDllFH\");});const onTap1tza5ru=activeVariantCallback(async(...args)=>{setVariant(\"kCYqlYXN3\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"kCYqlYXN3\",\"k7gdDllFH\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"k7gdDllFH\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"kCYqlYXN3\")return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-etyodo\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"qRX09f_ou\",ref:ref??ref1,style:{backdropFilter:\"blur(40px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"blur(40px)\",...style},variants:{k7gdDllFH:{backdropFilter:\"none\",backgroundColor:\"var(--token-260052ac-8488-4046-8bd6-8c7871eb6779, rgb(22, 22, 24))\",WebkitBackdropFilter:\"none\"}},...addPropertyOverrides({k7gdDllFH:{\"data-framer-name\":\"Phone-open\"},kCYqlYXN3:{\"data-framer-name\":\"Phone\"},n4UeX_okh:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yq6eck\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"XuRp2Uhdd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-9e547188-4f8f-4647-bab5-5b744ce692ba, rgb(255, 98, 35)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"SFWLT_tpM\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-mss7rv\",\"data-styles-preset\":\"WxwPInJ9x\",children:\"Early Exit Club\"})})})}),className:\"framer-kjc0sb\",fonts:[\"GF;Lato-900\"],layoutDependency:layoutDependency,layoutId:\"SFWLT_tpM\",style:{\"--extracted-1eung3n\":\"var(--token-9e547188-4f8f-4647-bab5-5b744ce692ba, rgb(255, 98, 35))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rjfz8p\",\"data-framer-name\":\"hamburger\",layoutDependency:layoutDependency,layoutId:\"ALo_cpnTo\",...addPropertyOverrides({k7gdDllFH:{\"data-highlight\":true,onTap:onTap1tza5ru},kCYqlYXN3:{\"data-highlight\":true,onTap:onTap1et2pwf}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1557agj\",layoutDependency:layoutDependency,layoutId:\"BHix3TPmd\",style:{backgroundColor:\"var(--token-9e547188-4f8f-4647-bab5-5b744ce692ba, rgb(255, 98, 35))\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,rotate:0},variants:{k7gdDllFH:{rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y39tb7\",layoutDependency:layoutDependency,layoutId:\"bCKrWuwsM\",style:{backgroundColor:\"var(--token-9e547188-4f8f-4647-bab5-5b744ce692ba, rgb(255, 98, 35))\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,rotate:0},variants:{k7gdDllFH:{rotate:-45}}})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-bo8ab8\",layoutDependency:layoutDependency,layoutId:\"d0v_Ca8XQ\",style:{backgroundColor:\"rgba(255, 98, 35, 0.2)\"}}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-110rtoj\",layoutDependency:layoutDependency,layoutId:\"Xj5qQdX90\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s7zhlq\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"adqxWFFAu\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ElQFQaLIQ\"},implicitPathVariables:undefined},{href:{webPageId:\"ElQFQaLIQ\"},implicitPathVariables:undefined},{href:{webPageId:\"ElQFQaLIQ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sscytb-container\",layoutDependency:layoutDependency,layoutId:\"i9frmE7ZW-container\",children:/*#__PURE__*/_jsx(NavLink,{GwgW3TL3L:resolvedLinks[0],height:\"100%\",id:\"i9frmE7ZW\",layoutId:\"i9frmE7ZW\",O7DtX5Oor:\"Hire Me\",oD_aF1ZMm:false,variant:\"u5GHGgu56\",width:\"100%\",...addPropertyOverrides({k7gdDllFH:{GwgW3TL3L:resolvedLinks[2],variant:\"gGyHRrpqo\"},n4UeX_okh:{GwgW3TL3L:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{mODqZNHrH:\"glean\"},unresolvedPathSlugs:{mODqZNHrH:{collectionId:\"LKn0ZEGA4\",collectionItemId:\"Jbt1IEjUl\"}},webPageId:\"mzZhjmz8O\"},implicitPathVariables:undefined},{href:{pathVariables:{mODqZNHrH:\"glean\"},unresolvedPathSlugs:{mODqZNHrH:{collectionId:\"LKn0ZEGA4\",collectionItemId:\"Jbt1IEjUl\"}},webPageId:\"mzZhjmz8O\"},implicitPathVariables:undefined},{href:{pathVariables:{mODqZNHrH:\"glean\"},unresolvedPathSlugs:{mODqZNHrH:{collectionId:\"LKn0ZEGA4\",collectionItemId:\"Jbt1IEjUl\"}},webPageId:\"mzZhjmz8O\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-196p8mj-container\",layoutDependency:layoutDependency,layoutId:\"AAZsQGoQN-container\",children:/*#__PURE__*/_jsx(NavLink,{GwgW3TL3L:resolvedLinks1[0],height:\"100%\",id:\"AAZsQGoQN\",layoutId:\"AAZsQGoQN\",O7DtX5Oor:\"Glean Case Study\",oD_aF1ZMm:false,variant:\"u5GHGgu56\",width:\"100%\",...addPropertyOverrides({k7gdDllFH:{GwgW3TL3L:resolvedLinks1[2]},n4UeX_okh:{GwgW3TL3L:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yliRHrMRC\"},implicitPathVariables:undefined},{href:{webPageId:\"yliRHrMRC\"},implicitPathVariables:undefined},{href:{webPageId:\"yliRHrMRC\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qghria-container\",layoutDependency:layoutDependency,layoutId:\"JZAhPQzV8-container\",children:/*#__PURE__*/_jsx(NavLink,{GwgW3TL3L:resolvedLinks2[0],height:\"100%\",id:\"JZAhPQzV8\",layoutId:\"JZAhPQzV8\",O7DtX5Oor:\"Products\",oD_aF1ZMm:false,variant:\"u5GHGgu56\",width:\"100%\",...addPropertyOverrides({k7gdDllFH:{GwgW3TL3L:resolvedLinks2[2],variant:\"gGyHRrpqo\"},n4UeX_okh:{GwgW3TL3L:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nnmq76-container\",layoutDependency:layoutDependency,layoutId:\"TZDT1cVcv-container\",children:/*#__PURE__*/_jsx(NavLink,{GwgW3TL3L:\"https://newsletter.earlyexit.club/\",height:\"100%\",id:\"TZDT1cVcv\",layoutId:\"TZDT1cVcv\",O7DtX5Oor:\"Past Newsletters\",oD_aF1ZMm:true,variant:\"u5GHGgu56\",width:\"100%\",...addPropertyOverrides({k7gdDllFH:{variant:\"gGyHRrpqo\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xye93q\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"zUpN3ULbC\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2w1t73-container\",layoutDependency:layoutDependency,layoutId:\"Ud0AuSBmv-container\",children:/*#__PURE__*/_jsx(LemonSqueezy,{fontControl:{fontFamily:'\"Lato\", \"Lato Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1.3em\"},height:\"100%\",hoverOptions:{hoverBackgroundColor:\"var(--token-64cdcb16-80c1-4aa5-81f4-38ff21e479e2, rgb(255, 255, 255))\",hoverColor:\"var(--token-9e547188-4f8f-4647-bab5-5b744ce692ba, rgb(255, 98, 35))\",hoverScale:1,hoverTransition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},id:\"Ud0AuSBmv\",isRedirect:true,layoutId:\"Ud0AuSBmv\",styleOptions:{backgroundColor:\"var(--token-9e547188-4f8f-4647-bab5-5b744ce692ba, rgb(255, 98, 35))\",borderRadius:10,color:\"rgb(255, 255, 255)\",padding:10,paddingBottom:12,paddingLeft:16,paddingPerSide:true,paddingRight:16,paddingTop:12},text:\"Subscribe (100% free) \",url:\"https://newsletter.earlyexit.club/\",width:\"100%\",...addPropertyOverrides({k7gdDllFH:{style:{maxWidth:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-O6Z2x.framer-1tnmib5, .framer-O6Z2x .framer-1tnmib5 { display: block; }\",\".framer-O6Z2x.framer-etyodo { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 15px 40px 15px 40px; position: relative; width: 1200px; }\",\".framer-O6Z2x .framer-1yq6eck { 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: min-content; }\",\".framer-O6Z2x .framer-kjc0sb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-O6Z2x .framer-1rjfz8p { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 30px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 30px; }\",\".framer-O6Z2x .framer-1557agj, .framer-O6Z2x .framer-y39tb7 { flex: none; height: 1px; overflow: visible; position: relative; width: 17px; }\",\".framer-O6Z2x .framer-bo8ab8 { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 1px; }\",\".framer-O6Z2x .framer-110rtoj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-O6Z2x .framer-1s7zhlq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-O6Z2x .framer-sscytb-container, .framer-O6Z2x .framer-196p8mj-container, .framer-O6Z2x .framer-qghria-container, .framer-O6Z2x .framer-nnmq76-container, .framer-O6Z2x .framer-2w1t73-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-O6Z2x .framer-xye93q { 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: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-O6Z2x.framer-etyodo, .framer-O6Z2x .framer-1yq6eck, .framer-O6Z2x .framer-1rjfz8p, .framer-O6Z2x .framer-110rtoj, .framer-O6Z2x .framer-1s7zhlq, .framer-O6Z2x .framer-xye93q { gap: 0px; } .framer-O6Z2x.framer-etyodo > *, .framer-O6Z2x .framer-1yq6eck > *, .framer-O6Z2x .framer-110rtoj > *, .framer-O6Z2x .framer-xye93q > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-O6Z2x.framer-etyodo > :first-child, .framer-O6Z2x .framer-1yq6eck > :first-child, .framer-O6Z2x .framer-110rtoj > :first-child, .framer-O6Z2x .framer-1s7zhlq > :first-child, .framer-O6Z2x .framer-xye93q > :first-child { margin-left: 0px; } .framer-O6Z2x.framer-etyodo > :last-child, .framer-O6Z2x .framer-1yq6eck > :last-child, .framer-O6Z2x .framer-110rtoj > :last-child, .framer-O6Z2x .framer-1s7zhlq > :last-child, .framer-O6Z2x .framer-xye93q > :last-child { margin-right: 0px; } .framer-O6Z2x .framer-1rjfz8p > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-O6Z2x .framer-1rjfz8p > :first-child { margin-top: 0px; } .framer-O6Z2x .framer-1rjfz8p > :last-child { margin-bottom: 0px; } .framer-O6Z2x .framer-1s7zhlq > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",\".framer-O6Z2x.framer-v-v1upeq.framer-etyodo { padding: 15px 20px 15px 20px; width: 810px; }\",\".framer-O6Z2x.framer-v-41nmc7.framer-etyodo { flex-direction: column; gap: 20px; height: 68px; justify-content: flex-start; padding: 18px 20px 15px 20px; width: 390px; }\",\".framer-O6Z2x.framer-v-41nmc7 .framer-1yq6eck, .framer-O6Z2x.framer-v-idj0sx .framer-1yq6eck { gap: unset; justify-content: space-between; width: 100%; }\",\".framer-O6Z2x.framer-v-41nmc7 .framer-1rjfz8p { cursor: pointer; }\",\".framer-O6Z2x.framer-v-41nmc7 .framer-1557agj, .framer-O6Z2x.framer-v-41nmc7 .framer-y39tb7 { height: 2px; width: 21px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-O6Z2x.framer-v-41nmc7.framer-etyodo, .framer-O6Z2x.framer-v-41nmc7 .framer-1yq6eck { gap: 0px; } .framer-O6Z2x.framer-v-41nmc7.framer-etyodo > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-O6Z2x.framer-v-41nmc7.framer-etyodo > :first-child { margin-top: 0px; } .framer-O6Z2x.framer-v-41nmc7.framer-etyodo > :last-child { margin-bottom: 0px; } .framer-O6Z2x.framer-v-41nmc7 .framer-1yq6eck > *, .framer-O6Z2x.framer-v-41nmc7 .framer-1yq6eck > :first-child, .framer-O6Z2x.framer-v-41nmc7 .framer-1yq6eck > :last-child { margin: 0px; } }\",\".framer-O6Z2x.framer-v-idj0sx.framer-etyodo { flex-direction: column; gap: 20px; justify-content: flex-start; min-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; overscroll-behavior: contain; padding: 18px 20px 15px 20px; width: 390px; }\",\".framer-O6Z2x.framer-v-idj0sx .framer-1rjfz8p { cursor: pointer; display: block; gap: unset; padding: unset; }\",\".framer-O6Z2x.framer-v-idj0sx .framer-1557agj, .framer-O6Z2x.framer-v-idj0sx .framer-y39tb7 { height: 2px; left: calc(50.00000000000002% - 21px / 2); position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 21px; }\",\".framer-O6Z2x.framer-v-idj0sx .framer-bo8ab8 { flex: none; width: 100%; }\",\".framer-O6Z2x.framer-v-idj0sx .framer-110rtoj { flex: none; flex-direction: column; gap: 30px; justify-content: flex-start; padding: 40px 20px 120px 20px; width: 100%; }\",\".framer-O6Z2x.framer-v-idj0sx .framer-1s7zhlq { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; justify-content: flex-start; width: 100%; }\",\".framer-O6Z2x.framer-v-idj0sx .framer-xye93q { justify-content: flex-start; width: 100%; }\",\".framer-O6Z2x.framer-v-idj0sx .framer-2w1t73-container { flex: 1 0 0px; max-width: 450px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-O6Z2x.framer-v-idj0sx.framer-etyodo, .framer-O6Z2x.framer-v-idj0sx .framer-1yq6eck, .framer-O6Z2x.framer-v-idj0sx .framer-1rjfz8p, .framer-O6Z2x.framer-v-idj0sx .framer-110rtoj, .framer-O6Z2x.framer-v-idj0sx .framer-1s7zhlq { gap: 0px; } .framer-O6Z2x.framer-v-idj0sx.framer-etyodo > *, .framer-O6Z2x.framer-v-idj0sx .framer-1s7zhlq > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-O6Z2x.framer-v-idj0sx.framer-etyodo > :first-child, .framer-O6Z2x.framer-v-idj0sx .framer-110rtoj > :first-child, .framer-O6Z2x.framer-v-idj0sx .framer-1s7zhlq > :first-child { margin-top: 0px; } .framer-O6Z2x.framer-v-idj0sx.framer-etyodo > :last-child, .framer-O6Z2x.framer-v-idj0sx .framer-110rtoj > :last-child, .framer-O6Z2x.framer-v-idj0sx .framer-1s7zhlq > :last-child { margin-bottom: 0px; } .framer-O6Z2x.framer-v-idj0sx .framer-1yq6eck > *, .framer-O6Z2x.framer-v-idj0sx .framer-1yq6eck > :first-child, .framer-O6Z2x.framer-v-idj0sx .framer-1yq6eck > :last-child, .framer-O6Z2x.framer-v-idj0sx .framer-1rjfz8p > *, .framer-O6Z2x.framer-v-idj0sx .framer-1rjfz8p > :first-child, .framer-O6Z2x.framer-v-idj0sx .framer-1rjfz8p > :last-child { margin: 0px; } .framer-O6Z2x.framer-v-idj0sx .framer-110rtoj > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 75\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"n4UeX_okh\":{\"layout\":[\"fixed\",\"auto\"]},\"kCYqlYXN3\":{\"layout\":[\"fixed\",\"fixed\"]},\"k7gdDllFH\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOc9tUsWH2=withCSS(Component,css,\"framer-O6Z2x\");export default FramerOc9tUsWH2;FramerOc9tUsWH2.displayName=\"Nav bar\";FramerOc9tUsWH2.defaultProps={height:75,width:1200};addPropertyControls(FramerOc9tUsWH2,{variant:{options:[\"qRX09f_ou\",\"n4UeX_okh\",\"kCYqlYXN3\",\"k7gdDllFH\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"Phone-open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerOc9tUsWH2,[{explicitInter:true,fonts:[{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50XewqFGC_p9dw.woff2\",weight:\"900\"},{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVewqFGC_p9dw.woff2\",weight:\"700\"}]},...NavLinkFonts,...LemonSqueezyFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOc9tUsWH2\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"n4UeX_okh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kCYqlYXN3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"k7gdDllFH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"75\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Oc9tUsWH2.map"],
  "mappings": "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",
  "names": ["LemonSqueezy", "props", "styleOptions", "hoverOptions", "backgroundColor", "color", "borderRadius", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "paddingValue", "useConditionalScript", "p", "motion", "buttonStyles", "flexAlignSwitch", "addPropertyControls", "ControlType", "condition", "url", "id", "ue", "script", "ref", "window", "fontControlStyles", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "backgroundFill", "height", "hoverFill", "iconColor", "id", "link", "radius", "weight", "width", "props", "ref", "ref1", "ref2", "ref3", "_variant", "ref4", "ref5", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "rIjeT7ikx", "hMk6A3uVq", "BkOAqLgnU", "WjgfwHKRx", "oxt12ADzN", "QG5iCMh9h", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "Link", "css", "FramerbzJ6YXd3E", "withCSS", "bzJ6YXd3E_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "y", "b", "v", "x", "e", "a", "G", "w", "t", "re", "MotionConfigContext", "o", "n", "se", "p", "H", "D", "i", "l", "d", "Z", "N", "Y", "useLocaleInfo", "f", "R", "k", "L", "T", "V", "q", "S", "I", "O", "P", "j", "useVariantState", "W", "C", "ae", "LayoutGroup", "motion", "cx", "className", "RichText2", "Link", "css", "withCSS", "O78HDSM3Z_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "NavLinkFonts", "getFonts", "O78HDSM3Z_default", "SocialIconsFonts", "bzJ6YXd3E_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", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Link", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "css", "FramerIKxGI7fAH", "withCSS", "IKxGI7fAH_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavLinkFonts", "getFonts", "O78HDSM3Z_default", "LemonSqueezyFonts", "LemonSqueezy", "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", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1et2pwf", "args", "onTap1tza5ru", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "router", "useRouter", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "Link", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "css", "FramerOc9tUsWH2", "withCSS", "Oc9tUsWH2_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
