{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/2rGdY3xNPdGAC1LGc2Ew/gQcpGdBaDKqalAQX5HN3/Pattern.js", "ssg:https://framerusercontent.com/modules/f6Rvz5smCer6LOPHuGt5/NO2bRqTC9Ft0d080nxyo/Q9bNzvddV.js", "ssg:https://framerusercontent.com/modules/7MUIYCSrDtHPwl8fLwoS/qSGFNPq6eJYbXj8hgVZ5/oqTBonrwi.js", "ssg:https://framerusercontent.com/modules/8EdL9mhIZg44FQ6Io4He/x8W52wBl1ZkXBFclEHsx/YXS5TuLOj.js", "ssg:https://framerusercontent.com/modules/ot6QolA7gYEUSfdBMUSQ/Nf0S1gy3eTY6Oq0Tu0Ey/Overrides.js", "ssg:https://framerusercontent.com/modules/x2pbnVoPavfkMkb26oRy/NVDPsRemKQO1oUQmNtWf/nlEp9YNZR.js", "ssg:https://framerusercontent.com/modules/W6FoThVQ3TUyCsw1bnbx/13E6f4mIcbjPQRKihk1n/rrEYCZ0Vf.js", "ssg:https://framerusercontent.com/modules/aWJjFgM1yquh4Hpyv2B9/axE2nXA54L685f4w5GZ0/ymDafvoMe.js", "ssg:https://framerusercontent.com/modules/gcllOPCQw1qVT2XN3R7D/y9uPpEbCtVPhCee0IFUI/zOO627s_k.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,Color}from\"framer\";import{motion}from\"framer-motion\";/**\n * PATTERN\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Pattern(props){const{patternType,front,back,radius,scale,shouldAnimate,direction,diagonal,duration}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;let pattern;let position;let size;let repeat;let blendMode;let filter;let addBackground;let backgroundPosAnimation;const frontHex=Color.toHexString(Color(front));const backHex=Color.toHexString(Color(back));const frontWithoutHex=frontHex.replace(\"#\",\"\");const backWithoutHex=backHex.replace(\"#\",\"\");const factor=direction===\"left\"||direction===\"top\"?-1:1;const xScale=direction===\"left\"||direction===\"right\"?factor*scale:0;const yScale=direction===\"top\"||direction===\"bottom\"?factor*scale:0;if(patternType===\"wave\"){pattern=`radial-gradient(circle at center center, ${front}, ${back}), repeating-radial-gradient(circle at center center, ${front}, ${front}, ${scale}px, transparent ${scale*2}px, transparent ${scale}px)`;blendMode=\"multiply\";}if(patternType===\"zigzag\"){pattern=`linear-gradient(135deg, ${front} 25%, transparent 25%), linear-gradient(225deg, ${front} 25%, transparent 25%), linear-gradient(45deg, ${front} 25%, transparent 25%), linear-gradient(315deg, ${front} 25%, ${back} 25%)`;position=`${scale}px 0, ${scale}px 0, 0 0, 0 0`;size=`${scale*2}px ${scale*2}px`;repeat=`repeat`;}if(patternType===\"diagonal\"){pattern=`repeating-linear-gradient(45deg, ${front}, ${front} ${scale/2}px, ${back} ${scale/2}px, ${back} ${scale*2}px )`;}if(patternType===\"diagonal-two\"){pattern=`repeating-linear-gradient( 135deg, ${front}, ${front} ${scale/2}px, ${back} ${scale/2}px, ${back} ${scale*2}px )`;}if(patternType===\"blocks\"){pattern=`linear-gradient(30deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(150deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(30deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(150deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(60deg, ${back} 25%, transparent 25.5%, transparent 75%, ${back} 75%, ${back}), linear-gradient(60deg, ${back} 25%, transparent 25.5%, transparent 75%, ${back} 75%, ${back})`;size=`${scale*8}px ${scale*14}px`;position=`0 0, 0 0, ${scale*4}px ${scale*7}px, ${scale*4}px ${scale*7}px, 0 0, ${scale*4}px ${scale*7}px`;}if(patternType===\"polka\"){pattern=`radial-gradient(${front} 1px, transparent 1px), radial-gradient(${front} 1px, ${back} 1px)`;size=`${scale*2}px ${scale*2}px`;position=`0 0, ${scale}px ${scale}px`;}if(patternType===\"rhombus\"){pattern=`linear-gradient(135deg, ${front} 25%, transparent 25%), linear-gradient(225deg, ${front} 25%, transparent 25%), linear-gradient(45deg, ${front} 25%, transparent 25%), linear-gradient(315deg, ${front} 25%, ${back} 25%)`;position=`${scale}px 0, ${scale}px 0, 0 0, 0 0`;size=`${scale}px ${scale}px`;repeat=\"repeat\";}if(patternType===\"stars\"){pattern=`radial-gradient(ellipse ${scale}px ${scale}px, ${front}, ${front} 25%, ${back} 25%)`;size=`${scale/2}px ${scale/2}px`;if(shouldAnimate){backgroundPosAnimation=`${xScale}px ${yScale}px`;}}if(patternType===\"circles\"){pattern=`radial-gradient(circle at 100% 50%, ${back} 20%, ${front} 21%, ${front} 34%, transparent 35%, transparent), radial-gradient(circle at 0% 50%, ${back} 20%, ${front} 21%, ${front} 34%, ${back} 35%, ${back})`;size=`${scale*2}px ${scale*2}px`;}if(patternType===\"rectangles\"){pattern=`repeating-linear-gradient(45deg, ${front} 25%, transparent 25%, transparent 75%, ${front} 75%, ${front}), repeating-linear-gradient(45deg, ${front} 25%, ${back} 25%, ${back} 75%, ${front} 75%, ${front})`;position=`0 0, ${scale}px ${scale}px`;size=`${scale*2}px ${scale*2}px`;}if(patternType===\"lines\"){pattern=`linear-gradient(0deg, ${front} 50%, ${back} 50%)`;size=`${scale}px ${scale}px`;}if(patternType===\"lines-vertical\"){pattern=`linear-gradient(to right, ${front} 50%, ${back} 50%)`;size=`${scale}px ${scale}px`;}if(patternType===\"paper\"){pattern=`linear-gradient(${front} 2px, transparent 2px), linear-gradient(90deg, ${front} 2px, transparent 2px), linear-gradient(${front} 1px, transparent 1px), linear-gradient(90deg, ${front} 1px, ${back} 1px)`;size=`${scale*5}px ${scale*5}px, ${scale*5}px ${scale*5}px, ${scale}px ${scale}px, ${scale}px ${scale}px`;position=`-2px -2px, -2px -2px, -1px -1px, -1px -1px`;}if(patternType===\"crosses\"){pattern=`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' %3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23${frontWithoutHex}' %3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E\")`;size=`${scale*4}px ${scale*4}px`;addBackground=back;}if(patternType===\"wave-lines\"){pattern=`url(\"data:image/svg+xml,%3Csvg width='100' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23${frontWithoutHex}' fill-rule='evenodd'/%3E%3C/svg%3E\")`;size=`${scale*10}px ${scale*2}px`;addBackground=back;if(shouldAnimate){backgroundPosAnimation=`${xScale*10}px ${yScale*2}px`;}}if(patternType===\"clouds\"){pattern=`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='28'%3E%3Cpath fill='%23${frontWithoutHex}' d='M56 26v2h-7.75c2.3-1.27 4.94-2 7.75-2zm-26 2a2 2 0 1 0-4 0h-4.09A25.98 25.98 0 0 0 0 16v-2c.67 0 1.34.02 2 .07V14a2 2 0 0 0-2-2v-2a4 4 0 0 1 3.98 3.6 28.09 28.09 0 0 1 2.8-3.86A8 8 0 0 0 0 6V4a9.99 9.99 0 0 1 8.17 4.23c.94-.95 1.96-1.83 3.03-2.63A13.98 13.98 0 0 0 0 0h7.75c2 1.1 3.73 2.63 5.1 4.45 1.12-.72 2.3-1.37 3.53-1.93A20.1 20.1 0 0 0 14.28 0h2.7c.45.56.88 1.14 1.29 1.74 1.3-.48 2.63-.87 4-1.15-.11-.2-.23-.4-.36-.59H26v.07a28.4 28.4 0 0 1 4 0V0h4.09l-.37.59c1.38.28 2.72.67 4.01 1.15.4-.6.84-1.18 1.3-1.74h2.69a20.1 20.1 0 0 0-2.1 2.52c1.23.56 2.41 1.2 3.54 1.93A16.08 16.08 0 0 1 48.25 0H56c-4.58 0-8.65 2.2-11.2 5.6 1.07.8 2.09 1.68 3.03 2.63A9.99 9.99 0 0 1 56 4v2a8 8 0 0 0-6.77 3.74c1.03 1.2 1.97 2.5 2.79 3.86A4 4 0 0 1 56 10v2a2 2 0 0 0-2 2.07 28.4 28.4 0 0 1 2-.07v2c-9.2 0-17.3 4.78-21.91 12H30zM7.75 28H0v-2c2.81 0 5.46.73 7.75 2zM56 20v2c-5.6 0-10.65 2.3-14.28 6h-2.7c4.04-4.89 10.15-8 16.98-8zm-39.03 8h-2.69C10.65 24.3 5.6 22 0 22v-2c6.83 0 12.94 3.11 16.97 8zm15.01-.4a28.09 28.09 0 0 1 2.8-3.86 8 8 0 0 0-13.55 0c1.03 1.2 1.97 2.5 2.79 3.86a4 4 0 0 1 7.96 0zm14.29-11.86c1.3-.48 2.63-.87 4-1.15a25.99 25.99 0 0 0-44.55 0c1.38.28 2.72.67 4.01 1.15a21.98 21.98 0 0 1 36.54 0zm-5.43 2.71c1.13-.72 2.3-1.37 3.54-1.93a19.98 19.98 0 0 0-32.76 0c1.23.56 2.41 1.2 3.54 1.93a15.98 15.98 0 0 1 25.68 0zm-4.67 3.78c.94-.95 1.96-1.83 3.03-2.63a13.98 13.98 0 0 0-22.4 0c1.07.8 2.09 1.68 3.03 2.63a9.99 9.99 0 0 1 16.34 0z'%3E%3C/path%3E%3C/svg%3E\")`;size=`${scale*5.6}px ${scale*2.8}px`;addBackground=back;if(shouldAnimate){backgroundPosAnimation=`${xScale*5.6}px ${yScale*2.8}px`;}}if(patternType===\"stars-two\"){pattern=`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cpath fill='%23${frontWithoutHex}' d='m16 8.764 2.351 4.764 5.257.764L19.804 18l.898 5.236L16 20.764l-4.702 2.472.898-5.236-3.804-3.708 5.257-.764Z'%3E%3C/path%3E%3C/svg%3E\")`;size=`${scale*3.2}px ${scale*3.2}px`;addBackground=back;}if(patternType===\"wiggle\"){pattern=`url(\"data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23${frontWithoutHex}' %3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E\")`;addBackground=back;size=`${scale*5.2}px ${scale*2.6}px`;if(shouldAnimate){if(diagonal){backgroundPosAnimation=`-${scale*5.2}px -${scale*5.2}px`;}else{backgroundPosAnimation=`${scale*5.2}px ${scale*5.2}px`;}}}if(patternType===\"groovy\"){pattern=`url(\"data:image/svg+xml,%3Csvg width='24' height='40' viewBox='0 0 24 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40c5.523 0 10-4.477 10-10V0C4.477 0 0 4.477 0 10v30zm22 0c-5.523 0-10-4.477-10-10V0c5.523 0 10 4.477 10 10v30z' fill='%23${frontWithoutHex}' fill-rule='evenodd'/%3E%3C/svg%3E\")`;addBackground=back;size=`${scale*2.4}px ${scale*4}px`;if(shouldAnimate){backgroundPosAnimation=`${xScale*2.4}px ${yScale*4}px`;}}if(patternType===\"plus\"){pattern=`url(\"data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23${frontWithoutHex}' %3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E\")`;addBackground=back;size=`${scale*6}px ${scale*6}px`;}return /*#__PURE__*/ _jsx(motion.div,{style:{width:\"100%\",height:\"100%\",backgroundColor:addBackground?addBackground:\"transparent\",backgroundImage:pattern,backgroundPosition:position,backgroundSize:size,backgroundRepeat:repeat,backgroundBlendMode:blendMode,borderRadius:radius,filter:filter},animate:shouldAnimate&&{backgroundPosition:backgroundPosAnimation},transition:{type:\"tween\",ease:\"linear\",duration:duration,repeat:Infinity,repeatType:\"loop\"}});};Pattern.displayName=\"Pattern\";/* Property Controls */ addPropertyControls(Pattern,{patternType:{type:ControlType.Enum,defaultValue:\"wave-lines\",options:[\"wave-lines\",\"clouds\",\"wiggle\",\"groovy\",\"plus\",\"circles\",\"rectangles\",\"lines\",\"lines-vertical\",\"diagonal\",\"diagonal-two\",\"blocks\",\"wave\",\"zigzag\",\"polka\",\"rhombus\",\"stars\",\"stars-two\",\"paper\",\"crosses\",],optionTitles:[\"Wave Lines\",\"Clouds\",\"Wiggle\",\"Groovy\",\"Plus\",\"Circles\",\"Rectangles\",\"Lines\",\"Lines Vertical\",\"Diagonal\",\"Diagonal 2\",\"Blocks\",\"Wave\",\"ZigZag\",\"Polka\",\"Rhombus\",\"Stars\",\"Stars 2\",\"Paper\",\"Crosses\",],title:\"Type\"},front:{type:ControlType.Color,title:\"Front\",defaultValue:\"#FFF\"},back:{type:ControlType.Color,title:\"Back\",defaultValue:\"#2DD\"},scale:{type:ControlType.Number,min:1,max:100,step:1,defaultValue:10},radius:{type:ControlType.Number,min:0,max:100,step:1,defaultValue:0},shouldAnimate:{type:ControlType.Boolean,title:\"Animate\",defaultValue:false,hidden(props){return props.patternType!==\"wave-lines\"&&props.patternType!==\"wiggle\"&&props.patternType!==\"clouds\"&&props.patternType!==\"stars\"&&props.patternType!==\"groovy\";}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true,hidden(props){return props.patternType===\"wiggle\"||props.shouldAnimate===false;}},diagonal:{type:ControlType.Boolean,title:\"Direction\",defaultValue:true,enabledTitle:\"TL\",disabledTitle:\"BR\",hidden(props){return props.patternType!==\"wiggle\";}},duration:{type:ControlType.Number,min:0,max:50,step:.1,defaultValue:5,hidden(props){return props.shouldAnimate===false;}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Pattern\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Pattern.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-jRpTz\";const variantClassNames={ijbuq2I2j:\"framer-v-gxgi4v\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition2};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ijbuq2I2j\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-gxgi4v\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ijbuq2I2j\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/credcal.vids \",motionChild:true,nodeId:\"tNsINX4S3\",openInNewTab:true,scopeId:\"Q9bNzvddV\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"Instagram Link\",className:\"framer-1c4f4sh framer-141s3u7\",\"data-framer-name\":\"Social/instagram\",layoutDependency:layoutDependency,layoutId:\"tNsINX4S3\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-e1rwud\",\"data-framer-name\":\"Instagram\",fill:\"black\",intrinsicHeight:29,intrinsicWidth:29,layoutDependency:layoutDependency,layoutId:\"ygZ3XYER6\",svg:'<svg width=\"29\" height=\"29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M22.745 14.456c.11-8.288-3.126-9.36-10.505-8.9-5.082-.403-7.078 3.547-7.092 8.219-.275 4.573 1.099 10.353 6.648 9.868 6.926-.127 11.27-.848 10.949-9.187ZM10.633.192c7.934-.758 17.117.41 17.226 10.596.28 4.69.428 9.716-1.812 13.97-2.384 4.161-6.357 3.987-10.49 4.085-3.634.149-7.382.471-10.886-.75-3.57-1.268-4.542-4.034-4.464-7.65-.124-3.113-.247-6.219-.194-9.336C.189 3.722 3.333.021 10.633.192Z\" fill=\"#BABABA\"/><path d=\"M13.682 17.395c-3.911-.167-2.815-6.244.753-6.052 3.485 1.084 2.92 5.962-.753 6.052Z\" fill=\"#BABABA\"/><path d=\"M14.775 7.12c5.63-.264 6.244 2.458 6.24 7.59.042 4.656-.847 6.82-5.69 7.084-3.944.587-8.157.743-8.461-4.515-.312-3.258-.774-7.948 2.598-9.654 1.681-.591 3.639-.334 5.313-.504ZM13.66 18.867c5.803.066 6.185-9.35.028-8.918-5.018.507-5.533 8.744-.028 8.918Zm4.497-7.89c1.498.204 1.288-2.108-.078-2.043-1.323.036-1.166 2.008.078 2.044Z\" fill=\"#BABABA\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://t.me/credcal/\",motionChild:true,nodeId:\"kJ_dxjwx4\",openInNewTab:true,scopeId:\"Q9bNzvddV\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"Twitter Link\",className:\"framer-1cz8xlr framer-141s3u7\",\"data-framer-name\":\"Social/telegram\",layoutDependency:layoutDependency,layoutId:\"kJ_dxjwx4\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1eglcaz\",\"data-framer-name\":\"Telegram\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"aHd6GC5jL\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31 29\"><path d=\"M 21.482 8.68 L 21.503 8.68 C 21.712 8.68 21.905 8.742 22.063 8.85 L 22.06 8.848 C 22.177 8.946 22.253 9.084 22.272 9.236 L 22.272 9.239 C 22.303 9.429 22.311 9.623 22.296 9.815 L 22.296 9.806 C 22.072 12.087 21.1 17.619 20.606 20.172 C 20.396 21.253 19.986 21.615 19.587 21.65 C 18.722 21.728 18.064 21.097 17.226 20.566 C 15.913 19.733 15.171 19.215 13.896 18.403 C 12.424 17.466 13.379 16.949 14.218 16.108 C 14.438 15.886 18.253 12.531 18.328 12.227 C 18.347 12.136 18.321 12.041 18.258 11.972 C 18.203 11.938 18.139 11.92 18.074 11.921 C 18.031 11.921 17.988 11.929 17.947 11.944 L 17.949 11.943 C 17.817 11.972 15.72 13.311 11.658 15.962 C 11.192 16.315 10.629 16.516 10.045 16.538 L 10.039 16.538 C 9.224 16.446 8.421 16.261 7.648 15.987 L 7.722 16.01 C 6.787 15.715 6.045 15.56 6.109 15.061 C 6.143 14.802 6.513 14.537 7.219 14.265 C 11.567 12.434 14.466 11.227 15.917 10.644 C 17.632 9.776 19.448 9.126 21.324 8.709 L 21.481 8.679 Z M 15.314 0 C 7.045 0.02 0.35 6.504 0.35 14.5 C 0.35 22.508 7.065 29 15.35 29 C 23.635 29 30.35 22.509 30.35 14.5 C 30.35 6.504 23.653 0.02 15.386 0 Z\" fill=\"rgb(186,186,186)\"></path></svg>',svgContentId:11449240102,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/@credcal_\",motionChild:true,nodeId:\"IEcYUfh0G\",openInNewTab:true,scopeId:\"Q9bNzvddV\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"Facebook Link\",className:\"framer-2wg988 framer-141s3u7\",\"data-framer-name\":\"Social/tiktok\",layoutDependency:layoutDependency,layoutId:\"IEcYUfh0G\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17330dl\",\"data-framer-name\":\"Tiktok\",fill:\"black\",intrinsicHeight:29,intrinsicWidth:26,layoutDependency:layoutDependency,layoutId:\"kTm2CSUXa\",svg:'<svg width=\"26\" height=\"29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.814.024C15.384 0 16.944.013 18.502 0a7.537 7.537 0 0 0 2.1 5.042L20.6 5.04a8.38 8.38 0 0 0 5.057 2.16l.027.002v4.87a12.7 12.7 0 0 1-5.114-1.206l.078.033a14.729 14.729 0 0 1-1.992-1.156l.05.033c-.012 3.529.01 7.058-.025 10.574a9.248 9.248 0 0 1-1.637 4.791l.019-.03c-1.585 2.288-4.152 3.79-7.072 3.88h-.013a8.652 8.652 0 0 1-4.93-1.267l.038.022a9.14 9.14 0 0 1-4.373-6.861l-.004-.04a22.58 22.58 0 0 1-.012-1.8c.47-4.622 4.312-8.198 8.981-8.198.525 0 1.04.046 1.54.132l-.054-.008c.024 1.788-.048 3.577-.048 5.365a4.014 4.014 0 0 0-1.363-.233 4.118 4.118 0 0 0-3.88 2.766l-.01.03a4.727 4.727 0 0 0-.2 1.379c0 .199.012.396.035.59l-.002-.024c.318 1.979 2.001 3.472 4.03 3.472.059 0 .116 0 .174-.004h-.01a4.021 4.021 0 0 0 3.311-1.928l.01-.018c.256-.36.431-.794.49-1.267l.001-.014c.12-2.163.072-4.314.084-6.478.011-4.87-.012-9.729.023-14.587l.004.003Z\" fill=\"#BABABA\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://discord.gg/6pCNc9zu\",motionChild:true,nodeId:\"N6y9Grwcq\",openInNewTab:true,scopeId:\"Q9bNzvddV\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"Facebook Link\",className:\"framer-1omb1sy framer-141s3u7\",\"data-framer-name\":\"Social/discord\",layoutDependency:layoutDependency,layoutId:\"N6y9Grwcq\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10sbdd2\",\"data-framer-name\":\"Discord\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:33,layoutDependency:layoutDependency,layoutId:\"WcBpTOckS\",svg:'<svg width=\"33\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M21.342 17.053c-1.611-.108-2.878-1.472-2.878-3.14 0-.056.001-.111.004-.167v.008a2.94 2.94 0 0 1-.005-.176c0-1.665 1.269-3.025 2.87-3.124h.01c1.609.09 2.88 1.446 2.88 3.107 0 .068-.002.135-.006.201v-.008c.003.054.005.119.005.183 0 1.662-1.27 3.021-2.872 3.115h-.009l.001.001Zm-10.628 0c-1.612-.108-2.879-1.472-2.879-3.14 0-.056.001-.111.005-.167v.008a2.939 2.939 0 0 1-.006-.176c0-1.665 1.27-3.025 2.871-3.124h.009c1.61.09 2.88 1.446 2.88 3.107 0 .068-.002.135-.006.201v-.008c.003.052.005.113.005.175 0 1.665-1.269 3.025-2.87 3.124h-.01Zm16.389-14.95c-1.88-.91-4.066-1.628-6.351-2.043l-.16-.024a.093.093 0 0 0-.017-.002c-.038 0-.07.02-.087.051a17.29 17.29 0 0 0-.764 1.583l-.046.12a24.025 24.025 0 0 0-7.45.017l.138-.017A16.803 16.803 0 0 0 11.499 0l.043.084a.101.101 0 0 0-.105-.05A25.789 25.789 0 0 0 4.766 2.17l.161-.07a.09.09 0 0 0-.043.037C1.841 6.547.02 12.036.02 17.96c0 .99.051 1.967.15 2.93l-.01-.12a.12.12 0 0 0 .042.076 26.045 26.045 0 0 0 7.8 4.08l.187.052c.009.003.02.004.03.004a.1.1 0 0 0 .082-.041 19.13 19.13 0 0 0 1.584-2.61l.05-.11a.104.104 0 0 0-.055-.144h-.001A17.171 17.171 0 0 1 7.3 20.813l.082.046a.106.106 0 0 1-.01-.174c.167-.128.335-.261.495-.397a.1.1 0 0 1 .104-.014H7.97c2.355 1.158 5.119 1.835 8.037 1.835 2.918 0 5.683-.677 8.151-1.885l-.114.05a.099.099 0 0 1 .106.013c.16.135.327.27.496.398.025.02.04.05.04.085 0 .038-.02.07-.048.089-.705.431-1.527.84-2.384 1.177l-.112.039a.105.105 0 0 0-.054.145A21.805 21.805 0 0 0 23.763 25l-.042-.062a.101.101 0 0 0 .113.04c3.055-.975 5.713-2.383 8.068-4.183l-.07.05a.107.107 0 0 0 .042-.074c.093-.856.145-1.85.145-2.855 0-5.91-1.826-11.384-4.93-15.863l.055.085a.084.084 0 0 0-.04-.04l-.002.004Z\" fill=\"#BABABA\"/></svg>',withExternalLayout:true})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jRpTz.framer-141s3u7, .framer-jRpTz .framer-141s3u7 { display: block; }\",\".framer-jRpTz.framer-gxgi4v { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jRpTz .framer-1c4f4sh, .framer-jRpTz .framer-1cz8xlr, .framer-jRpTz .framer-2wg988, .framer-jRpTz .framer-1omb1sy { 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: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-jRpTz .framer-e1rwud { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); position: relative; width: 29px; }\",\".framer-jRpTz .framer-1eglcaz { flex: none; height: 29px; position: relative; width: 31px; }\",\".framer-jRpTz .framer-17330dl { aspect-ratio: 0.896551724137931 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); position: relative; width: 26px; }\",\".framer-jRpTz .framer-10sbdd2 { aspect-ratio: 1.32 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 33px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jRpTz.framer-gxgi4v, .framer-jRpTz .framer-1c4f4sh, .framer-jRpTz .framer-1cz8xlr, .framer-jRpTz .framer-2wg988, .framer-jRpTz .framer-1omb1sy { gap: 0px; } .framer-jRpTz.framer-gxgi4v > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-jRpTz.framer-gxgi4v > :first-child, .framer-jRpTz .framer-1c4f4sh > :first-child, .framer-jRpTz .framer-1cz8xlr > :first-child, .framer-jRpTz .framer-2wg988 > :first-child, .framer-jRpTz .framer-1omb1sy > :first-child { margin-left: 0px; } .framer-jRpTz.framer-gxgi4v > :last-child, .framer-jRpTz .framer-1c4f4sh > :last-child, .framer-jRpTz .framer-1cz8xlr > :last-child, .framer-jRpTz .framer-2wg988 > :last-child, .framer-jRpTz .framer-1omb1sy > :last-child { margin-right: 0px; } .framer-jRpTz .framer-1c4f4sh > *, .framer-jRpTz .framer-1cz8xlr > *, .framer-jRpTz .framer-2wg988 > *, .framer-jRpTz .framer-1omb1sy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 29\n * @framerIntrinsicWidth 167\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQ9bNzvddV=withCSS(Component,css,\"framer-jRpTz\");export default FramerQ9bNzvddV;FramerQ9bNzvddV.displayName=\"social links\";FramerQ9bNzvddV.defaultProps={height:29,width:167};addFonts(FramerQ9bNzvddV,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQ9bNzvddV\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"167\",\"framerIntrinsicHeight\":\"29\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Q9bNzvddV.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SocialLinks from\"https://framerusercontent.com/modules/f6Rvz5smCer6LOPHuGt5/NO2bRqTC9Ft0d080nxyo/Q9bNzvddV.js\";const SocialLinksFonts=getFonts(SocialLinks);const MotionFooterWithFX=withFX(motion.footer);const cycleOrder=[\"RoUQqqVu0\",\"rk8n09JhE\",\"UVYTNhgpi\"];const serializationHash=\"framer-NxW3v\";const variantClassNames={rk8n09JhE:\"framer-v-1gawjqd\",RoUQqqVu0:\"framer-v-sqjs39\",UVYTNhgpi:\"framer-v-15xgn6d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition1={delay:0,duration:.7,ease:[.4,0,0,1],type:\"tween\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"RoUQqqVu0\",Mobile:\"UVYTNhgpi\",Tablet:\"rk8n09JhE\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"RoUQqqVu0\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RoUQqqVu0\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(MotionFooterWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-sqjs39\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"RoUQqqVu0\",ref:refBinding,style:{...style},...addPropertyOverrides({rk8n09JhE:{\"data-framer-name\":\"Tablet\"},UVYTNhgpi:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-61uqkv\",\"data-framer-name\":\"footer\",layoutDependency:layoutDependency,layoutId:\"SDAqP0vFf\",style:{backgroundColor:\"rgba(46, 47, 50, 0.68)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hsuv4m\",layoutDependency:layoutDependency,layoutId:\"atGsKdkWH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"NEED HELP?\"})}),className:\"framer-1tsr1yd\",\"data-framer-name\":\"text\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"IVVRVTBAw\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(185, 185, 185))\"},children:\"Join the community for 24/7 support!\"})}),className:\"framer-1rsjoii\",\"data-framer-name\":\"text\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"QWBimryvr\",style:{\"--extracted-r6o4lv\":\"rgb(185, 185, 185)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:\"https://discord.gg/6pCNc9zu\",motionChild:true,nodeId:\"DGFp6G0K3\",scopeId:\"oqTBonrwi\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1b96grq framer-18sg842\",\"data-border\":true,\"data-framer-name\":\"Join the Discord frame\",layoutDependency:layoutDependency,layoutId:\"DGFp6G0K3\",style:{\"--border-bottom-width\":\"0.30000001192092896px\",\"--border-color\":\"rgba(194, 188, 188, 0.25)\",\"--border-left-width\":\"0.30000001192092896px\",\"--border-right-width\":\"0.30000001192092896px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.30000001192092896px\",backgroundColor:\"rgb(88, 101, 242)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"JOIN THE DISCORD\"})}),className:\"framer-1m32xfs\",\"data-framer-name\":\"Join the Discord\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"H2qada3es\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||474)-0-570)/2+0+0)+40+181,...addPropertyOverrides({UVYTNhgpi:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||589.2)-0-570)/2+0+0)+40+181}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lufabl-container\",layoutDependency:layoutDependency,layoutId:\"DIh1IsXAx-container\",nodeId:\"DIh1IsXAx\",rendersWithMotion:true,scopeId:\"oqTBonrwi\",children:/*#__PURE__*/_jsx(SocialLinks,{height:\"100%\",id:\"DIh1IsXAx\",layoutId:\"DIh1IsXAx\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(198, 198, 198))\"},children:\"\\xa9 RepSupply . 2025\"})}),className:\"framer-q5icfg\",\"data-framer-name\":\"text\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"C4xi6Qw1B\",style:{\"--extracted-r6o4lv\":\"rgb(198, 198, 198)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(185, 185, 185))\"},children:\"RepSupply does not sell any physical products, nor do any of the supported agents. Our platform provides links to Taobao, Weidian, 1688, and various purchasing agents to help users find and compare products easily. We do not endorse or support counterfeit goods. Our goal is to offer transparency and assist buyers in making informed decisions while providing a seamless browsing and purchasing experience.\"})}),className:\"framer-kvpuuj\",\"data-framer-name\":\"text\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"LV02Uave_\",style:{\"--extracted-r6o4lv\":\"rgb(185, 185, 185)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NxW3v.framer-18sg842, .framer-NxW3v .framer-18sg842 { display: block; }\",\".framer-NxW3v.framer-sqjs39 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1228px; }\",\".framer-NxW3v .framer-61uqkv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 15px 40px 15px; position: relative; width: 100%; }\",\".framer-NxW3v .framer-hsuv4m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: 73px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NxW3v .framer-1tsr1yd, .framer-NxW3v .framer-1rsjoii, .framer-NxW3v .framer-q5icfg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NxW3v .framer-1b96grq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 44px; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; text-decoration: none; width: 214px; }\",\".framer-NxW3v .framer-1m32xfs { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NxW3v .framer-1lufabl-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-NxW3v .framer-kvpuuj { flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NxW3v.framer-sqjs39, .framer-NxW3v .framer-61uqkv, .framer-NxW3v .framer-hsuv4m, .framer-NxW3v .framer-1b96grq { gap: 0px; } .framer-NxW3v.framer-sqjs39 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NxW3v.framer-sqjs39 > :first-child, .framer-NxW3v .framer-61uqkv > :first-child, .framer-NxW3v .framer-hsuv4m > :first-child { margin-top: 0px; } .framer-NxW3v.framer-sqjs39 > :last-child, .framer-NxW3v .framer-61uqkv > :last-child, .framer-NxW3v .framer-hsuv4m > :last-child { margin-bottom: 0px; } .framer-NxW3v .framer-61uqkv > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-NxW3v .framer-hsuv4m > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-NxW3v .framer-1b96grq > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-NxW3v .framer-1b96grq > :first-child { margin-left: 0px; } .framer-NxW3v .framer-1b96grq > :last-child { margin-right: 0px; } }\",\".framer-NxW3v.framer-v-1gawjqd.framer-sqjs39 { width: 810px; }\",\".framer-NxW3v.framer-v-15xgn6d.framer-sqjs39 { width: 390px; }\",\".framer-NxW3v.framer-v-15xgn6d .framer-hsuv4m { order: 0; }\",\".framer-NxW3v.framer-v-15xgn6d .framer-1b96grq { order: 1; }\",\".framer-NxW3v.framer-v-15xgn6d .framer-1lufabl-container { order: 2; }\",\".framer-NxW3v.framer-v-15xgn6d .framer-q5icfg { order: 3; }\",\".framer-NxW3v.framer-v-15xgn6d .framer-kvpuuj { max-width: 350px; order: 4; }\",'.framer-NxW3v[data-border=\"true\"]::after, .framer-NxW3v [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 474\n * @framerIntrinsicWidth 1228\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rk8n09JhE\":{\"layout\":[\"fixed\",\"auto\"]},\"UVYTNhgpi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroqTBonrwi=withCSS(Component,css,\"framer-NxW3v\");export default FrameroqTBonrwi;FrameroqTBonrwi.displayName=\"Footer\";FrameroqTBonrwi.defaultProps={height:474,width:1228};addPropertyControls(FrameroqTBonrwi,{variant:{options:[\"RoUQqqVu0\",\"rk8n09JhE\",\"UVYTNhgpi\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameroqTBonrwi,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...SocialLinksFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroqTBonrwi\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1228\",\"framerIntrinsicHeight\":\"474\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rk8n09JhE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UVYTNhgpi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (57a8448-dev)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"T4ajaxw1b\",\"B1n90_d_w\",\"xzGBfrweG\",\"dsZwaWdcl\"];const serializationHash=\"framer-APBQn\";const variantClassNames={B1n90_d_w:\"framer-v-1ms30gw\",dsZwaWdcl:\"framer-v-1qaxg6e\",T4ajaxw1b:\"framer-v-lhhq5c\",xzGBfrweG:\"framer-v-1a6hpyc\"};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:40,delay:0,mass:1,stiffness:600,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={\"Closed Small\":\"dsZwaWdcl\",\"Open Small\":\"xzGBfrweG\",Closed:\"T4ajaxw1b\",Open:\"B1n90_d_w\"};const getProps=({height,id,width,...props})=>{var _variant,ref;return{...props,variant:(ref=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref!==void 0?ref:\"T4ajaxw1b\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"T4ajaxw1b\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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-APBQn\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-lhhq5c\",className),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"T4ajaxw1b\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({B1n90_d_w:{\"data-framer-name\":\"Open\"},dsZwaWdcl:{\"data-framer-name\":\"Closed Small\"},xzGBfrweG:{\"data-framer-name\":\"Open Small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1a1qcvx\",layoutDependency:layoutDependency,layoutId:\"dadVHqKSG\",style:{backgroundColor:\"rgb(102, 102, 102)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:-45},variants:{B1n90_d_w:{rotate:-135},dsZwaWdcl:{rotate:-135}}}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-10188sg\",layoutDependency:layoutDependency,layoutId:\"AOBwnULOT\",style:{backgroundColor:\"rgb(102, 102, 102)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:45},variants:{B1n90_d_w:{rotate:135},dsZwaWdcl:{rotate:135}}})]})})})});});const css=['.framer-APBQn [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-APBQn .framer-1yaot1h { display: block; }\",\".framer-APBQn .framer-lhhq5c { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 20px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 20px; }\",\".framer-APBQn .framer-1a1qcvx, .framer-APBQn .framer-10188sg { flex: none; height: 61%; overflow: visible; position: relative; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-APBQn .framer-lhhq5c { gap: 0px; } .framer-APBQn .framer-lhhq5c > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-APBQn .framer-lhhq5c > :first-child { margin-left: 0px; } .framer-APBQn .framer-lhhq5c > :last-child { margin-right: 0px; } }\",\".framer-APBQn.framer-v-1a6hpyc .framer-lhhq5c, .framer-APBQn.framer-v-1qaxg6e .framer-lhhq5c { gap: 2px; height: 14px; padding: 1px 0px 0px 0px; width: 14px; }\",\".framer-APBQn.framer-v-1a6hpyc .framer-1a1qcvx, .framer-APBQn.framer-v-1a6hpyc .framer-10188sg, .framer-APBQn.framer-v-1qaxg6e .framer-1a1qcvx, .framer-APBQn.framer-v-1qaxg6e .framer-10188sg { height: 7px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-APBQn.framer-v-1a6hpyc .framer-lhhq5c { gap: 0px; } .framer-APBQn.framer-v-1a6hpyc .framer-lhhq5c > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-APBQn.framer-v-1a6hpyc .framer-lhhq5c > :first-child { margin-left: 0px; } .framer-APBQn.framer-v-1a6hpyc .framer-lhhq5c > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-APBQn.framer-v-1qaxg6e .framer-lhhq5c { gap: 0px; } .framer-APBQn.framer-v-1qaxg6e .framer-lhhq5c > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-APBQn.framer-v-1qaxg6e .framer-lhhq5c > :first-child { margin-left: 0px; } .framer-APBQn.framer-v-1qaxg6e .framer-lhhq5c > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 20\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"B1n90_d_w\":{\"layout\":[\"fixed\",\"fixed\"]},\"xzGBfrweG\":{\"layout\":[\"fixed\",\"fixed\"]},\"dsZwaWdcl\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n */ const FramerYXS5TuLOj=withCSS(Component,css,\"framer-APBQn\");export default FramerYXS5TuLOj;FramerYXS5TuLOj.displayName=\"Caret\";FramerYXS5TuLOj.defaultProps={height:20,width:20};addPropertyControls(FramerYXS5TuLOj,{variant:{options:[\"T4ajaxw1b\",\"B1n90_d_w\",\"xzGBfrweG\",\"dsZwaWdcl\"],optionTitles:[\"Closed\",\"Open\",\"Open Small\",\"Closed Small\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerYXS5TuLOj,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYXS5TuLOj\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"B1n90_d_w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xzGBfrweG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dsZwaWdcl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"20\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"20\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YXS5TuLOj.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{forwardRef}from\"react\";export function OpenType(Component){return /*#__PURE__*/forwardRef((props,ref)=>{return /*#__PURE__*/_jsx(Component,{...props,ref:ref,style:{...props.style,fontFeatureSettings:`\"salt\", \"kern\", \"cv05\", \"cv11\", \"ccmp\"`}});});}\nexport const __FramerMetadata__ = {\"exports\":{\"OpenType\":{\"type\":\"reactHoc\",\"name\":\"OpenType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Overrides.map", "// Generated by Framer (bab6da3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Caret from\"https://framerusercontent.com/modules/8EdL9mhIZg44FQ6Io4He/x8W52wBl1ZkXBFclEHsx/YXS5TuLOj.js\";import{OpenType}from\"https://framerusercontent.com/modules/ot6QolA7gYEUSfdBMUSQ/Nf0S1gy3eTY6Oq0Tu0Ey/Overrides.js\";const RichTextOpenType2w8puu=withCodeBoundaryForOverrides(RichText,{nodeId:\"kwBuuyuKY\",override:OpenType,scopeId:\"nlEp9YNZR\"});const CaretFonts=getFonts(Caret);const cycleOrder=[\"PgL8OMyNN\",\"JyCyxl4xq\"];const serializationHash=\"framer-ivY6e\";const variantClassNames={JyCyxl4xq:\"framer-v-zq2cay\",PgL8OMyNN:\"framer-v-r3hcl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:600,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"PgL8OMyNN\",Open:\"JyCyxl4xq\"};const getProps=({height,hover,id,title,width,...props})=>{return{...props,DApvjrdfG:title??props.DApvjrdfG??\"Product\",PWSlWeqS6:hover??props.PWSlWeqS6,variant:humanReadableVariantMap[props.variant]??props.variant??\"PgL8OMyNN\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,PWSlWeqS6,DApvjrdfG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PgL8OMyNN\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter170i0h9=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(PWSlWeqS6){const res=await PWSlWeqS6(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-r3hcl\",className,classNames),\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"PgL8OMyNN\",onMouseEnter:onMouseEnter170i0h9,ref:refBinding,style:{...style},...addPropertyOverrides({JyCyxl4xq:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichTextOpenType2w8puu,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Product\"})}),className:\"framer-2w8puu\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"kwBuuyuKY\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},text:DApvjrdfG,variants:{JyCyxl4xq:{opacity:.5}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16z0fly-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"YYUqdivvU-container\",nodeId:\"YYUqdivvU\",rendersWithMotion:true,scopeId:\"nlEp9YNZR\",children:/*#__PURE__*/_jsx(Caret,{height:\"100%\",id:\"YYUqdivvU\",layoutId:\"YYUqdivvU\",variant:\"xzGBfrweG\",width:\"100%\",...addPropertyOverrides({JyCyxl4xq:{variant:\"dsZwaWdcl\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ivY6e.framer-1uf47c6, .framer-ivY6e .framer-1uf47c6 { display: block; }\",\".framer-ivY6e.framer-r3hcl { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ivY6e .framer-2w8puu { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-ivY6e .framer-16z0fly-container { flex: none; height: auto; position: relative; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 77.85\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"JyCyxl4xq\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"PWSlWeqS6\":\"hover\",\"DApvjrdfG\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramernlEp9YNZR=withCSS(Component,css,\"framer-ivY6e\");export default FramernlEp9YNZR;FramernlEp9YNZR.displayName=\"Trigger\";FramernlEp9YNZR.defaultProps={height:32,width:77.85};addPropertyControls(FramernlEp9YNZR,{variant:{options:[\"PgL8OMyNN\",\"JyCyxl4xq\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},PWSlWeqS6:{title:\"Hover\",type:ControlType.EventHandler},DApvjrdfG:{defaultValue:\"Product\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramernlEp9YNZR,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...CaretFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernlEp9YNZR\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"77.85\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"32\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"JyCyxl4xq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"PWSlWeqS6\\\":\\\"hover\\\",\\\"DApvjrdfG\\\":\\\"title\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nlEp9YNZR.map", "// Generated by Framer (bf2ee14)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-5e1tU\";const variantClassNames={kfrZeVhe6:\"framer-v-1nalkxh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({click,height,id,width,...props})=>{return{...props,alcSpNC7x:click??props.alcSpNC7x};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,alcSpNC7x,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"kfrZeVhe6\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1my8hlh=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(alcSpNC7x){const res=await alcSpNC7x(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://discord.com/invite/uWUAT6qhHQ\",motionChild:true,nodeId:\"kfrZeVhe6\",openInNewTab:true,scopeId:\"rrEYCZ0Vf\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1nalkxh\",className,classNames)} framer-2hbbsh`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"kfrZeVhe6\",onTap:onTap1my8hlh,ref:refBinding,style:{\"--border-bottom-width\":\"0.30000001192092896px\",\"--border-color\":\"rgba(194, 188, 188, 0.25)\",\"--border-left-width\":\"0.30000001192092896px\",\"--border-right-width\":\"0.30000001192092896px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.30000001192092896px\",backgroundColor:\"rgb(57, 60, 86)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Join the Discord\"})}),className:\"framer-24ljgh\",\"data-framer-name\":\"Join the Discord\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Kkbl4oqWQ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jlcdia\",\"data-framer-name\":\"discord icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:36,layoutDependency:layoutDependency,layoutId:\"NmMdgX_SN\",svg:'<svg width=\"36\" height=\"28\" viewBox=\"0 0 36 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M30.4954 2.40015C28.1651 1.30984 25.6734 0.517449 23.0683 0.0662537C22.7484 0.64467 22.3746 1.42265 22.117 2.04153C19.3477 1.62508 16.604 1.62508 13.8857 2.04153C13.6281 1.42265 13.2458 0.64467 12.923 0.0662537C10.3152 0.517449 7.82063 1.31275 5.49029 2.40592C0.789964 9.50873 -0.484217 16.4351 0.152875 23.2631C3.27038 25.5912 6.29161 27.0055 9.26186 27.9309C9.99523 26.9216 10.6493 25.8486 11.2128 24.7178C10.1396 24.3101 9.11179 23.8069 8.14061 23.2227C8.39826 23.0318 8.65028 22.8322 8.89377 22.6269C14.8173 25.3975 21.2533 25.3975 27.1061 22.6269C27.3525 22.8322 27.6044 23.0318 27.8593 23.2227C26.8852 23.8097 25.8546 24.3129 24.7814 24.7208C25.3449 25.8486 25.9962 26.9245 26.7323 27.9338C29.7054 27.0083 32.7295 25.5941 35.847 23.2631C36.5945 15.3477 34.57 8.48494 30.4954 2.40015ZM12.0198 19.064C10.2416 19.064 8.78333 17.4039 8.78333 15.3824C8.78333 13.3609 10.2104 11.698 12.0198 11.698C13.8291 11.698 15.2873 13.358 15.2562 15.3824C15.259 17.4039 13.8291 19.064 12.0198 19.064ZM23.9801 19.064C22.2019 19.064 20.7437 17.4039 20.7437 15.3824C20.7437 13.3609 22.1707 11.698 23.9801 11.698C25.7894 11.698 27.2477 13.358 27.2165 15.3824C27.2165 17.4039 25.7894 19.064 23.9801 19.064Z\" fill=\"#5865F2\"/>\\n</svg>\\n',withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5e1tU.framer-2hbbsh, .framer-5e1tU .framer-2hbbsh { display: block; }\",\".framer-5e1tU.framer-1nalkxh { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; text-decoration: none; width: min-content; }\",\".framer-5e1tU .framer-24ljgh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5e1tU .framer-jlcdia { flex: none; height: 28px; position: relative; width: 36px; }\",'.framer-5e1tU[data-border=\"true\"]::after, .framer-5e1tU [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 188.433\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"alcSpNC7x\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerrrEYCZ0Vf=withCSS(Component,css,\"framer-5e1tU\");export default FramerrrEYCZ0Vf;FramerrrEYCZ0Vf.displayName=\"Join the Discord button\";FramerrrEYCZ0Vf.defaultProps={height:44,width:188.433};addPropertyControls(FramerrrEYCZ0Vf,{alcSpNC7x:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerrrEYCZ0Vf,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrrEYCZ0Vf\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"alcSpNC7x\\\":\\\"click\\\"}\",\"framerIntrinsicWidth\":\"188.433\",\"framerIntrinsicHeight\":\"44\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rrEYCZ0Vf.map", "// Generated by Framer (bab6da3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/l91GwpkyPR6KFRK9sKHI/4iFHZJ6aGQ5JpCwFrZC1/X7e4x7d10.js\";const serializationHash=\"framer-rQeuE\";const variantClassNames={K7R2nYUdF:\"framer-v-tc7x9j\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"K7R2nYUdF\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-tc7x9j\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"K7R2nYUdF\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(79, 79, 79, 0.72)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-1ae9a647-6216-4ad7-9ef5-36ad9cb1e694, rgb(49, 51, 56))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://linkconverter.repsupply.net/\",motionChild:true,nodeId:\"axoW5C8Kj\",openInNewTab:true,scopeId:\"ymDafvoMe\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4yo77n\",\"data-styles-preset\":\"X7e4x7d10\",children:\"Link Converter\"})})})}),className:\"framer-ujj0fl\",\"data-framer-name\":\"Link Converter\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"axoW5C8Kj\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",whileHover:animation,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://chromewebstore.google.com/detail/njificdghacbdmdlpajkbojnhjfapplf?utm_source=item-share-cb\",motionChild:true,nodeId:\"E7CID2rtG\",openInNewTab:true,scopeId:\"ymDafvoMe\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4yo77n\",\"data-styles-preset\":\"X7e4x7d10\",children:\"Warning Remover\"})})})}),className:\"framer-vy1vvg\",\"data-framer-name\":\"Extension\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"E7CID2rtG\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",whileHover:animation,withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rQeuE.framer-eqlsz6, .framer-rQeuE .framer-eqlsz6 { display: block; }\",\".framer-rQeuE.framer-tc7x9j { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; padding: 15px; position: relative; width: min-content; }\",\".framer-rQeuE .framer-ujj0fl, .framer-rQeuE .framer-vy1vvg { flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",...sharedStyle.css,'.framer-rQeuE[data-border=\"true\"]::after, .framer-rQeuE [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 73.4\n * @framerIntrinsicWidth 165.75\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerymDafvoMe=withCSS(Component,css,\"framer-rQeuE\");export default FramerymDafvoMe;FramerymDafvoMe.displayName=\"Links: Product\";FramerymDafvoMe.defaultProps={height:73.4,width:165.75};addFonts(FramerymDafvoMe,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerymDafvoMe\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"73.4\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"165.75\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ymDafvoMe.map", "// Generated by Framer (bab6da3)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/l91GwpkyPR6KFRK9sKHI/4iFHZJ6aGQ5JpCwFrZC1/X7e4x7d10.js\";import Trigger from\"https://framerusercontent.com/modules/x2pbnVoPavfkMkb26oRy/NVDPsRemKQO1oUQmNtWf/nlEp9YNZR.js\";import JoinTheDiscordButton from\"https://framerusercontent.com/modules/W6FoThVQ3TUyCsw1bnbx/13E6f4mIcbjPQRKihk1n/rrEYCZ0Vf.js\";import LinksProduct from\"https://framerusercontent.com/modules/aWJjFgM1yquh4Hpyv2B9/axE2nXA54L685f4w5GZ0/ymDafvoMe.js\";const TriggerFonts=getFonts(Trigger);const LinksProductFonts=getFonts(LinksProduct);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const JoinTheDiscordButtonFonts=getFonts(JoinTheDiscordButton);const cycleOrder=[\"FEJfqtKz9\",\"b8d7uNsjb\",\"uxVQoKWT0\",\"bll9Qhd7q\"];const serializationHash=\"framer-Cyg3M\";const variantClassNames={b8d7uNsjb:\"framer-v-yzermq\",bll9Qhd7q:\"framer-v-gg7vrw\",FEJfqtKz9:\"framer-v-rujqdy\",uxVQoKWT0:\"framer-v-1y86lau\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.3,type:\"spring\"};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const transition3={damping:40,delay:0,mass:.5,stiffness:600,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};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\":\"uxVQoKWT0\",Desktop:\"FEJfqtKz9\",Phone:\"b8d7uNsjb\",Tablet:\"bll9Qhd7q\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"FEJfqtKz9\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FEJfqtKz9\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap14xu9rc=activeVariantCallback(async(...args)=>{setVariant(\"uxVQoKWT0\");});const onTapuarazp=activeVariantCallback(async(...args)=>{setVariant(\"b8d7uNsjb\");});const PWSlWeqS6txyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const alcSpNC7xuarazp=activeVariantCallback(async(...args)=>{setVariant(\"b8d7uNsjb\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"b8d7uNsjb\",\"uxVQoKWT0\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"b8d7uNsjb\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"b8d7uNsjb\")return false;return true;};const ref1=React.useRef(null);const ref2=React.useRef(null);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-rujqdy\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"FEJfqtKz9\",ref:refBinding,style:{...style},...addPropertyOverrides({b8d7uNsjb:{\"data-framer-name\":\"Phone\"},bll9Qhd7q:{\"data-framer-name\":\"Tablet\"},uxVQoKWT0:{\"data-framer-name\":\"Phone Open\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xi9f62\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"xR0tjJBSf\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w9d9mg\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"WD4SdtzsP\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"bqMBYyErx\",scopeId:\"zOO627s_k\",...addPropertyOverrides({bll9Qhd7q:{openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-uk3mko framer-1fu2njr\",\"data-framer-name\":\"Logo Wrapper\",layoutDependency:layoutDependency,layoutId:\"bqMBYyErx\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1yzgk8d\",\"data-framer-name\":\"REPSUPPLY\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:46,intrinsicWidth:298,layoutDependency:layoutDependency,layoutId:\"N13oxSEnL\",svg:'<svg width=\"298\" height=\"46\" viewBox=\"0 0 298 46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.28447 44.16C5.04764 44.16 3.4583 43.7281 2.51647 42.8646C1.61389 41.9617 1.1626 40.6469 1.1626 38.9197C1.1626 38.4486 1.18222 37.6635 1.22146 36.5645C1.29995 35.4261 1.39805 34.0915 1.51578 32.5606C1.63351 31.0297 1.75124 29.3614 1.86897 27.5558C2.02593 25.7109 2.18292 23.8464 2.33988 21.9622C2.65383 17.9976 2.86966 14.7789 2.98739 12.3059C3.14435 9.83295 3.26208 7.88991 3.34057 6.47679C3.4583 4.71039 3.57603 3.59167 3.69376 3.12063C3.81149 2.61034 4.06657 2.35519 4.45899 2.35519C5.67551 2.35519 6.91166 2.33556 8.16744 2.29631C9.46245 2.2178 10.6986 2.1393 11.8759 2.06079C13.0532 1.98228 14.152 1.9234 15.1723 1.88415C16.2318 1.80564 17.1737 1.76639 17.9978 1.76639C20.5092 1.76639 22.6677 2.08042 24.4728 2.70847C26.2779 3.33652 27.73 4.21972 28.8288 5.35807C29.9669 6.49642 30.791 7.87028 31.3011 9.47967C31.8505 11.0891 32.1252 12.8947 32.1252 14.8966C32.1252 17.9584 31.5168 20.6866 30.3004 23.0809C29.0839 25.4753 27.1414 27.3006 24.4728 28.5568L29.4174 35.6224C30.3201 36.9569 31.0067 37.9973 31.4777 38.743C31.9486 39.4496 32.184 39.9795 32.184 40.3328C32.184 40.6075 32.0074 41.0002 31.6543 41.5104C31.3403 41.9814 30.8498 42.4722 30.1827 42.9824C29.5548 43.4534 28.7699 43.8656 27.8281 44.2189C26.9254 44.5721 25.9052 44.7488 24.7671 44.7488C23.5113 44.7488 22.4126 44.3366 21.4707 43.5123C20.5681 42.688 19.744 41.6085 18.9985 40.2739C18.2921 38.9 17.6642 37.3299 17.1148 35.5635C16.6046 33.7971 16.1141 31.9521 15.6432 30.0288C14.2304 29.9502 13.0728 29.813 12.1702 29.6166C12.0525 31.3438 11.9347 32.9925 11.817 34.5626C11.6993 36.1326 11.6012 37.5457 11.5227 38.8019C11.4442 40.0187 11.3657 41.0394 11.2872 41.8637C11.2087 42.6488 11.1695 43.1198 11.1695 43.2768C11.1303 43.5909 11.0518 43.8264 10.9341 43.9833C10.8163 44.1011 10.5809 44.16 10.2277 44.16H7.28447ZM16.8205 10.5984C16.3496 10.5984 15.8198 10.6376 15.2311 10.7161C14.6425 10.7554 14.0146 10.8143 13.3475 10.8928C13.269 12.2667 13.1709 13.9153 13.0532 15.8387C12.9747 17.7229 12.8569 19.7445 12.7 21.9034C14.0735 22.2174 15.2704 22.3744 16.2907 22.3744C17.5072 22.3744 18.4884 22.1389 19.2339 21.6678C20.0188 21.1968 20.627 20.6277 21.0587 19.9603C21.4904 19.2537 21.7651 18.508 21.8828 17.7229C22.0397 16.9378 22.1183 16.2312 22.1183 15.6032C22.1183 13.9938 21.7259 12.7573 20.941 11.8938C20.1561 11.0302 18.7827 10.5984 16.8205 10.5984ZM43.6147 44.16C41.4171 44.16 39.8474 43.7281 38.9056 42.8646C37.9638 42.0011 37.4928 40.7646 37.4928 39.1552C37.4928 38.3701 37.5517 37.0355 37.6694 35.1514C37.7872 33.228 37.9441 31.0494 38.1404 28.6157C38.3366 26.1819 38.5327 23.6109 38.729 20.9024C38.9253 18.1939 39.1214 15.6424 39.3176 13.248C39.5139 10.8535 39.6708 8.75348 39.7885 6.94783C39.9063 5.14218 39.9651 3.9057 39.9651 3.23839C39.9651 2.64959 40.2791 2.35519 40.907 2.35519H61.6272C61.8626 2.35519 62.0784 2.41407 62.2747 2.53183C62.471 2.64959 62.569 2.86548 62.569 3.17951L62.3335 6.65343C62.255 7.83103 61.9215 8.79274 61.3328 9.53855C60.7834 10.2451 59.6258 10.5984 57.8599 10.5984H49.7366L49.148 18.9005H57.5067C57.7421 18.9005 57.9579 18.9593 58.1542 19.0771C58.3505 19.1949 58.4485 19.4107 58.4485 19.7248L58.213 23.1987C58.1345 24.3763 57.801 25.3381 57.2124 26.0838C56.6629 26.7904 55.5053 27.1437 53.7394 27.1437H48.6182L47.9707 35.9168H60.9208C61.1563 35.9168 61.372 35.9954 61.5683 36.1523C61.7646 36.2701 61.8626 36.4664 61.8626 36.7411L61.6272 40.215C61.5486 41.3926 61.2151 42.3544 60.6265 43.1001C60.077 43.8067 58.9194 44.16 57.1535 44.16H43.6147ZM73.1044 44.16C70.8676 44.16 69.2782 43.7281 68.3364 42.8646C67.4338 41.9617 66.9825 40.6469 66.9825 38.9197C66.9825 38.4094 67.002 37.6046 67.0414 36.5056C67.1198 35.3672 67.218 34.0326 67.3357 32.5017C67.4534 30.9709 67.5712 29.3025 67.6889 27.497C67.8458 25.6914 68.0027 23.8464 68.1598 21.9622C68.3559 19.6462 68.513 17.664 68.6307 16.0154C68.7876 14.3275 68.9054 12.8947 68.9839 11.7171C69.0623 10.5003 69.1211 9.4993 69.1605 8.71423C69.2389 7.88991 69.2782 7.18335 69.2782 6.59455C69.3174 5.9665 69.3371 5.39732 69.3371 4.88703C69.3763 4.37674 69.396 3.82719 69.396 3.23839C69.396 2.92436 69.494 2.70847 69.6903 2.59071C69.8864 2.4337 70.0826 2.35519 70.2789 2.35519C71.2991 2.35519 72.4175 2.33556 73.6342 2.29631C74.8506 2.2178 76.0671 2.1393 77.2838 2.06079C78.5002 1.98228 79.6775 1.9234 80.8156 1.88415C81.9535 1.80564 82.9542 1.76639 83.8177 1.76639C86.3292 1.76639 88.4875 2.08042 90.2927 2.70847C92.0979 3.29727 93.5498 4.18047 94.6487 5.35807C95.7866 6.49642 96.6107 7.88991 97.121 9.53855C97.6703 11.1872 97.9451 13.0713 97.9451 15.191C97.9451 17.507 97.6311 19.7445 97.0033 21.9034C96.4146 24.023 95.4728 25.9072 94.1778 27.5558C92.8828 29.2045 91.2149 30.5195 89.1743 31.5008C87.1336 32.4821 84.7006 32.9728 81.8752 32.9728C80.1876 32.9728 78.7554 32.7962 77.5781 32.4429L76.754 43.2768C76.7146 43.5909 76.6363 43.8264 76.5185 43.9833C76.4008 44.1011 76.1653 44.16 75.8122 44.16H73.1044ZM82.6404 10.5984C82.1301 10.5984 81.5612 10.6376 80.9333 10.7161C80.3053 10.7554 79.6383 10.8143 78.932 10.8928C78.8534 12.5414 78.7554 14.5433 78.6376 16.8985C78.5199 19.2537 78.3628 21.7267 78.1667 24.3174C78.7554 24.4744 79.3243 24.5921 79.8738 24.6707C80.4624 24.7099 80.9922 24.7296 81.4631 24.7296C82.8365 24.7296 83.9354 24.4155 84.7595 23.7875C85.6228 23.1201 86.29 22.3155 86.7609 21.3734C87.2318 20.4314 87.5456 19.4501 87.7027 18.4294C87.8596 17.4088 87.9382 16.5256 87.9382 15.7798C87.9382 14.0919 87.5456 12.8162 86.7609 11.9526C86.0152 11.0498 84.6418 10.5984 82.6404 10.5984ZM117.776 1.76639C121.465 1.76639 124.192 2.57108 125.958 4.18047C127.763 5.78986 128.666 7.88991 128.666 10.4806C128.666 12.6788 128.057 14.3667 126.841 15.5443C125.624 16.6827 123.878 17.2518 121.602 17.2518C120.896 17.2518 120.444 17.1929 120.248 17.0752C120.052 16.9182 119.954 16.6238 119.954 16.192C119.954 15.7995 119.914 15.2892 119.836 14.6611C119.797 14.0331 119.66 13.4246 119.424 12.8358C119.189 12.247 118.816 11.7564 118.306 11.3638C117.795 10.932 117.089 10.7161 116.187 10.7161C114.931 10.7161 113.812 11.1087 112.831 11.8938C111.85 12.6396 111.36 13.6209 111.36 14.8378C111.36 15.8976 111.752 16.7612 112.537 17.4285C113.361 18.0958 114.381 18.7238 115.598 19.3126C116.814 19.8622 118.129 20.4313 119.542 21.0201C120.994 21.6089 122.328 22.3941 123.545 23.3754C124.761 24.3174 125.762 25.5147 126.547 26.967C127.371 28.3802 127.783 30.1857 127.783 32.384C127.783 34.1112 127.488 35.7402 126.9 37.271C126.35 38.7627 125.507 40.0776 124.369 41.216C123.27 42.315 121.857 43.1787 120.13 43.8067C118.443 44.4347 116.461 44.7488 114.185 44.7488C112.223 44.7488 110.398 44.533 108.711 44.1011C107.063 43.6693 105.611 43.1393 104.355 42.5114C103.138 41.844 102.177 41.1374 101.471 40.3917C100.764 39.6065 100.411 38.9 100.411 38.272C100.411 35.6813 100.548 33.8168 100.823 32.6784C101.137 31.54 101.686 30.9709 102.471 30.9709C103.02 30.9709 103.59 31.2064 104.178 31.6774C104.806 32.1485 105.512 32.6784 106.297 33.2672C107.082 33.856 107.985 34.3859 109.005 34.857C110.065 35.328 111.281 35.5635 112.655 35.5635C113.204 35.5635 113.734 35.5243 114.244 35.4458C114.793 35.328 115.264 35.1513 115.657 34.9158C116.088 34.6803 116.422 34.3662 116.657 33.9738C116.932 33.5813 117.07 33.1102 117.07 32.5606C117.07 31.5794 116.697 30.7942 115.951 30.2054C115.205 29.6166 114.264 29.0867 113.126 28.6157C111.988 28.1054 110.751 27.595 109.417 27.0848C108.122 26.5352 106.906 25.8091 105.768 24.9062C104.629 23.9642 103.688 22.7669 102.942 21.3145C102.196 19.8622 101.824 17.9976 101.824 15.7209C101.824 13.1695 102.295 11.0106 103.236 9.24415C104.217 7.47775 105.454 6.045 106.945 4.94591C108.475 3.80756 110.182 3.00287 112.066 2.53183C113.989 2.02154 115.892 1.76639 117.776 1.76639ZM165.928 24.9651C165.81 26.1427 165.633 27.4578 165.398 28.9101C165.162 30.3232 164.79 31.7755 164.28 33.2672C163.809 34.7195 163.161 36.1326 162.337 37.5066C161.513 38.8805 160.453 40.117 159.158 41.216C157.863 42.2758 156.293 43.1393 154.449 43.8067C152.644 44.4347 150.486 44.7488 147.974 44.7488C145.423 44.7488 143.245 44.3955 141.44 43.6889C139.635 42.9432 138.163 41.9422 137.025 40.6861C135.887 39.3907 135.063 37.899 134.553 36.2112C134.043 34.5234 133.788 32.7176 133.788 30.7942C133.788 29.9307 133.827 28.7726 133.906 27.3203C133.984 25.8286 134.082 24.2194 134.2 22.4921C134.357 20.7649 134.514 18.979 134.671 17.1341C134.828 15.2499 134.965 13.4639 135.083 11.776C135.24 10.0881 135.377 8.57684 135.495 7.24223C135.613 5.86836 135.691 4.82815 135.73 4.12159C135.77 3.37578 135.868 2.90472 136.025 2.70847C136.182 2.47295 136.417 2.35519 136.731 2.35519H139.969C142.362 2.35519 143.971 2.86548 144.795 3.88607C145.62 4.90666 146.032 6.41791 146.032 8.41983C146.032 8.53759 145.992 9.06751 145.914 10.0096C145.875 10.9124 145.796 12.0311 145.678 13.3657C145.6 14.7004 145.502 16.1527 145.384 17.7229C145.306 19.2929 145.208 20.7846 145.09 22.1978C145.011 23.6109 144.933 24.8473 144.854 25.9072C144.815 26.967 144.795 27.6736 144.795 28.0269C144.795 28.6942 144.815 29.4597 144.854 30.3232C144.933 31.1867 145.09 32.011 145.325 32.7961C145.6 33.5813 146.012 34.2485 146.561 34.7981C147.15 35.3083 147.974 35.5635 149.034 35.5635C150.368 35.5635 151.447 35.1122 152.271 34.2093C153.135 33.3064 153.782 32.227 154.214 30.9709C154.685 29.7147 154.998 28.439 155.156 27.1437C155.352 25.8483 155.489 24.7885 155.568 23.9642C155.725 21.9622 155.881 19.9014 156.039 17.7817C156.235 15.6621 156.392 13.6798 156.509 11.8349C156.666 9.98996 156.784 8.38058 156.863 7.00671C156.941 5.63284 156.98 4.69076 156.98 4.18047C156.98 3.3954 157.039 2.90472 157.157 2.70847C157.275 2.47295 157.53 2.35519 157.922 2.35519H161.16C162.494 2.35519 163.534 2.47295 164.28 2.70847C165.064 2.94399 165.653 3.25802 166.045 3.65055C166.438 4.04308 166.673 4.4945 166.752 5.00479C166.87 5.51508 166.928 6.045 166.928 6.59455C166.928 7.10484 166.889 8.06655 166.811 9.47967C166.771 10.8928 166.712 12.5022 166.634 14.3078C166.556 16.1135 166.457 17.978 166.34 19.9014C166.222 21.8248 166.085 23.5128 165.928 24.9651ZM178.359 44.16C176.122 44.16 174.532 43.7281 173.591 42.8646C172.688 41.9617 172.237 40.6469 172.237 38.9197C172.237 38.4094 172.256 37.6046 172.296 36.5056C172.374 35.3672 172.472 34.0326 172.59 32.5017C172.708 30.9709 172.825 29.3025 172.943 27.497C173.1 25.6914 173.257 23.8464 173.414 21.9622C173.61 19.6462 173.767 17.664 173.885 16.0154C174.042 14.3275 174.16 12.8947 174.238 11.7171C174.317 10.5003 174.375 9.4993 174.415 8.71423C174.493 7.88991 174.532 7.18335 174.532 6.59455C174.572 5.9665 174.591 5.39732 174.591 4.88703C174.63 4.37674 174.65 3.82719 174.65 3.23839C174.65 2.92436 174.748 2.70847 174.944 2.59071C175.141 2.4337 175.337 2.35519 175.533 2.35519C176.553 2.35519 177.672 2.33556 178.888 2.29631C180.105 2.2178 181.321 2.1393 182.538 2.06079C183.754 1.98228 184.931 1.9234 186.07 1.88415C187.208 1.80564 188.209 1.76639 189.072 1.76639C191.583 1.76639 193.742 2.08042 195.547 2.70847C197.351 3.29727 198.805 4.18047 199.903 5.35807C201.041 6.49642 201.866 7.88991 202.375 9.53855C202.925 11.1872 203.199 13.0713 203.199 15.191C203.199 17.507 202.885 19.7445 202.257 21.9034C201.669 24.023 200.727 25.9072 199.432 27.5558C198.137 29.2045 196.468 30.5195 194.428 31.5008C192.388 32.4821 189.955 32.9728 187.129 32.9728C185.442 32.9728 184.01 32.7962 182.832 32.4429L182.008 43.2768C181.969 43.5909 181.89 43.8264 181.773 43.9833C181.655 44.1011 181.419 44.16 181.066 44.16H178.359ZM187.895 10.5984C187.385 10.5984 186.815 10.6376 186.187 10.7161C185.56 10.7554 184.892 10.8143 184.186 10.8928C184.107 12.5414 184.01 14.5433 183.892 16.8985C183.774 19.2537 183.617 21.7267 183.421 24.3174C184.01 24.4744 184.578 24.5921 185.128 24.6707C185.717 24.7099 186.246 24.7296 186.717 24.7296C188.091 24.7296 189.19 24.4155 190.014 23.7875C190.876 23.1201 191.544 22.3155 192.015 21.3734C192.486 20.4314 192.801 19.4501 192.957 18.4294C193.113 17.4088 193.192 16.5256 193.192 15.7798C193.192 14.0919 192.801 12.8162 192.015 11.9526C191.27 11.0498 189.896 10.5984 187.895 10.5984ZM212.965 44.16C210.728 44.16 209.139 43.7281 208.197 42.8646C207.294 41.9617 206.843 40.6469 206.843 38.9197C206.843 38.4094 206.862 37.6046 206.902 36.5056C206.979 35.3672 207.079 34.0326 207.196 32.5017C207.314 30.9709 207.432 29.3025 207.55 27.497C207.706 25.6914 207.862 23.8464 208.021 21.9622C208.216 19.6462 208.374 17.664 208.492 16.0154C208.648 14.3275 208.766 12.8947 208.845 11.7171C208.922 10.5003 208.981 9.4993 209.021 8.71423C209.099 7.88991 209.139 7.18335 209.139 6.59455C209.178 5.9665 209.198 5.39732 209.198 4.88703C209.236 4.37674 209.257 3.82719 209.257 3.23839C209.257 2.92436 209.354 2.70847 209.551 2.59071C209.746 2.4337 209.943 2.35519 210.14 2.35519C211.159 2.35519 212.277 2.33556 213.495 2.29631C214.711 2.2178 215.927 2.1393 217.145 2.06079C218.36 1.98228 219.538 1.9234 220.676 1.88415C221.813 1.80564 222.814 1.76639 223.678 1.76639C226.189 1.76639 228.347 2.08042 230.154 2.70847C231.958 3.29727 233.409 4.18047 234.509 5.35807C235.646 6.49642 236.47 7.88991 236.982 9.53855C237.53 11.1872 237.806 13.0713 237.806 15.191C237.806 17.507 237.491 19.7445 236.864 21.9034C236.275 24.023 235.334 25.9072 234.039 27.5558C232.744 29.2045 231.075 30.5195 229.035 31.5008C226.993 32.4821 224.561 32.9728 221.736 32.9728C220.047 32.9728 218.616 32.7962 217.439 32.4429L216.615 43.2768C216.574 43.5909 216.497 43.8264 216.379 43.9833C216.262 44.1011 216.026 44.16 215.673 44.16H212.965ZM222.501 10.5984C221.99 10.5984 221.421 10.6376 220.794 10.7161C220.165 10.7554 219.499 10.8143 218.793 10.8928C218.714 12.5414 218.616 14.5433 218.498 16.8985C218.381 19.2537 218.222 21.7267 218.028 24.3174C218.616 24.4744 219.185 24.5921 219.735 24.6707C220.323 24.7099 220.853 24.7296 221.324 24.7296C222.696 24.7296 223.796 24.4155 224.62 23.7875C225.483 23.1201 226.151 22.3155 226.622 21.3734C227.093 20.4314 227.405 19.4501 227.564 18.4294C227.72 17.4088 227.799 16.5256 227.799 15.7798C227.799 14.0919 227.405 12.8162 226.622 11.9526C225.875 11.0498 224.503 10.5984 222.501 10.5984ZM247.57 44.16C245.372 44.16 243.803 43.7281 242.861 42.8646C241.919 42.0011 241.448 40.7646 241.448 39.1552C241.448 38.3701 241.507 37.0355 241.625 35.1514C241.742 33.228 241.899 31.0494 242.096 28.6157C242.292 26.1819 242.487 23.6109 242.684 20.9024C242.881 18.1939 243.076 15.6424 243.273 13.248C243.47 10.8535 243.626 8.75348 243.744 6.94783C243.862 5.14218 243.92 3.9057 243.92 3.23839C243.92 2.64959 244.235 2.35519 244.862 2.35519H248.1C250.298 2.35519 251.808 2.78698 252.632 3.65055C253.495 4.47487 253.927 5.71135 253.927 7.35999C253.927 7.55626 253.907 7.7329 253.868 7.88991C253.868 8.04692 253.868 8.22356 253.868 8.41983L251.926 35.9168H262.521C262.757 35.9168 262.972 35.9954 263.169 36.1523C263.366 36.2701 263.463 36.4664 263.463 36.7411L263.228 40.215C263.149 41.3926 262.816 42.3544 262.227 43.1001C261.677 43.8067 260.52 44.16 258.754 44.16H247.57ZM278.807 44.16C276.452 44.16 274.842 43.7086 273.98 42.8058C273.115 41.8637 272.685 40.4309 272.685 38.5075C272.685 37.8401 272.723 36.7608 272.802 35.2691C272.88 33.7774 273.056 31.4616 273.332 28.3213C273.018 27.7325 272.744 27.2222 272.508 26.7904C272.273 26.3585 272.037 25.9072 271.802 25.4362C271.566 24.9651 271.311 24.4155 271.037 23.7875C270.761 23.1595 270.407 22.3744 269.977 21.4323C269.309 19.98 268.544 18.292 267.681 16.3686C266.857 14.4452 266.051 12.6003 265.268 10.8339C264.482 9.02826 263.815 7.4385 263.266 6.06463C262.755 4.69076 262.501 3.82719 262.501 3.47391C262.501 2.64959 263.815 2.23743 266.445 2.23743C268.093 2.23743 269.407 2.41407 270.389 2.76735C271.408 3.08138 272.232 3.53279 272.861 4.12159C273.489 4.67114 273.96 5.33844 274.274 6.12351C274.587 6.86932 274.881 7.67402 275.157 8.53759C275.51 9.67594 275.764 10.5199 275.922 11.0694C276.079 11.619 276.196 12.0704 276.275 12.4237C276.393 12.7769 276.511 13.1302 276.629 13.4835C276.746 13.7975 276.903 14.3078 277.1 15.0144C277.335 15.7209 277.648 16.7023 278.041 17.9584C278.433 19.2146 278.983 20.9416 279.69 23.1398C280.826 20.7454 281.73 18.8024 282.397 17.3107C283.104 15.8191 283.711 14.4452 284.222 13.1891C284.732 11.8938 285.203 10.5788 285.635 9.24415C286.106 7.87028 286.694 6.14314 287.401 4.06271C287.636 3.3169 287.872 2.84586 288.107 2.64959C288.381 2.41407 288.793 2.29631 289.343 2.29631C289.538 2.29631 290.068 2.33556 290.933 2.41407C291.834 2.45332 292.757 2.59071 293.699 2.82623C294.68 3.06175 295.563 3.43466 296.348 3.94495C297.132 4.45524 297.525 5.14218 297.525 6.00575C297.525 6.67306 297.29 7.61514 296.819 8.83199C296.387 10.0488 295.798 11.4227 295.053 12.9536C294.347 14.4452 293.502 16.035 292.522 17.7229C291.58 19.4107 290.598 21.0593 289.579 22.6688C288.558 24.2782 287.537 25.7697 286.518 27.1437C285.536 28.4782 284.634 29.5774 283.81 30.441C283.77 31.383 283.711 32.5018 283.633 33.7971C283.593 35.0925 283.516 36.3878 283.398 37.6832C283.319 38.9394 283.24 40.0973 283.163 41.1571C283.083 42.1778 283.025 42.8843 282.986 43.2768C282.946 43.5909 282.868 43.8264 282.751 43.9833C282.633 44.1011 282.397 44.16 282.044 44.16H278.807Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11sjfm4\",\"data-framer-name\":\"Mobile Burger Menu\",layoutDependency:layoutDependency,layoutId:\"faTSLfV0Q\",...addPropertyOverrides({b8d7uNsjb:{\"data-highlight\":true,onTap:onTap14xu9rc},uxVQoKWT0:{\"data-highlight\":true,onTap:onTapuarazp}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ng6vof\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"ef9rUhDwp\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{uxVQoKWT0:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ttbfwm\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"JnXDZ6xCl\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{uxVQoKWT0:{rotate:45}}}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pjnu4v\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"CTvcy9_ah\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4ow93s\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"zckgyY9r8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MNyNHAjvq\"},motionChild:true,nodeId:\"rQosSfRdo\",openInNewTab:false,scopeId:\"zOO627s_k\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4yo77n\",\"data-styles-preset\":\"X7e4x7d10\",children:\"Products\"})})})}),className:\"framer-xb9kf6\",\"data-framer-name\":\"product\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"rQosSfRdo\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",whileHover:animation,withExternalLayout:true,...addPropertyOverrides({bll9Qhd7q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"www.facebook.com\",motionChild:true,nodeId:\"rQosSfRdo\",openInNewTab:true,scopeId:\"zOO627s_k\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4yo77n\",\"data-styles-preset\":\"X7e4x7d10\",children:\"Products\"})})})})},uxVQoKWT0:{\"data-highlight\":true,onTap:onTapuarazp}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sTkIwv9xv\"},motionChild:true,nodeId:\"TlGYnYBqX\",openInNewTab:false,scopeId:\"zOO627s_k\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4yo77n\",\"data-styles-preset\":\"X7e4x7d10\",children:\"Yupoo Store\"})})})}),className:\"framer-1h728pb\",\"data-framer-name\":\"yupoo\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"TlGYnYBqX\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",whileHover:animation,withExternalLayout:true,...addPropertyOverrides({bll9Qhd7q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"www.facebook.com\",motionChild:true,nodeId:\"TlGYnYBqX\",openInNewTab:true,scopeId:\"zOO627s_k\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4yo77n\",\"data-styles-preset\":\"X7e4x7d10\",children:\"Yupoo Store\"})})})})},uxVQoKWT0:{\"data-highlight\":true,onTap:onTapuarazp}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Stp6izyv5\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"rFwtDhW3G\",openInNewTab:false,scopeId:\"zOO627s_k\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4yo77n\",\"data-styles-preset\":\"X7e4x7d10\",children:\"FAQ\"})})})}),className:\"framer-17pcc6n\",\"data-framer-name\":\"FAQ\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"rFwtDhW3G\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",whileHover:animation,withExternalLayout:true,...addPropertyOverrides({uxVQoKWT0:{\"data-highlight\":true,onTap:onTapuarazp}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(22+((componentViewport?.height||88)-44-44)/2)+0+6,...addPropertyOverrides({uxVQoKWT0:{y:(componentViewport?.y||0)+22+(((componentViewport?.height||345.6)-56-289.6)/2+0+0)+0+76+0+117.6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-1h9tv4h-container\",\"data-framer-name\":\"Product\",id:`${layoutId}-1h9tv4h`,layoutDependency:layoutDependency,layoutId:\"jcw8LU0ae-container\",name:\"Product\",nodeId:\"jcw8LU0ae\",ref:ref1,rendersWithMotion:true,scopeId:\"zOO627s_k\",children:[/*#__PURE__*/_jsx(Trigger,{DApvjrdfG:\"Tools\",height:\"100%\",id:\"jcw8LU0ae\",layoutId:\"jcw8LU0ae\",name:\"Product\",PWSlWeqS6:PWSlWeqS6txyyif({overlay}),variant:overlay.visible?\"JyCyxl4xq\":\"PgL8OMyNN\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-1h9tv4h`,offsetX:0,offsetY:20,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,y:(componentViewport?.y||0)+(22+((componentViewport?.height||88)-44-44)/2)+0+6+70,...addPropertyOverrides({uxVQoKWT0:{y:(componentViewport?.y||0)+22+(((componentViewport?.height||345.6)-56-289.6)/2+0+0)+0+76+0+117.6+70}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-lcbrbf-container\",\"data-framer-name\":\"Links: Tools\",exit:animation1,inComponentSlot:true,initial:animation3,layoutDependency:layoutDependency,layoutId:\"iQxDCpRTj-container\",name:\"Links: Tools\",nodeId:\"iQxDCpRTj\",ref:ref2,rendersWithMotion:true,role:\"dialog\",scopeId:\"zOO627s_k\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LinksProduct,{height:\"100%\",id:\"iQxDCpRTj\",layoutId:\"iQxDCpRTj\",name:\"Links: Tools\",width:\"100%\"})})})})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+(22+((componentViewport?.height||88)-44-44)/2)+0+0,...addPropertyOverrides({uxVQoKWT0:{y:(componentViewport?.y||0)+22+(((componentViewport?.height||345.6)-56-289.6)/2+0+0)+0+76+0+169.6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ozfu4-container\",layoutDependency:layoutDependency,layoutId:\"hKi50kGOA-container\",nodeId:\"hKi50kGOA\",rendersWithMotion:true,scopeId:\"zOO627s_k\",children:/*#__PURE__*/_jsx(JoinTheDiscordButton,{height:\"100%\",id:\"hKi50kGOA\",layoutId:\"hKi50kGOA\",width:\"100%\",...addPropertyOverrides({uxVQoKWT0:{alcSpNC7x:alcSpNC7xuarazp}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Cyg3M.framer-1fu2njr, .framer-Cyg3M .framer-1fu2njr { display: block; }\",\".framer-Cyg3M.framer-rujqdy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 22px 60px 22px 60px; position: relative; width: 1200px; }\",\".framer-Cyg3M .framer-xi9f62 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1228px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Cyg3M .framer-1w9d9mg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Cyg3M .framer-uk3mko { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 38px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Cyg3M .framer-1yzgk8d { flex: none; height: 23px; position: relative; width: 152px; }\",\".framer-Cyg3M .framer-11sjfm4 { flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-Cyg3M .framer-1ng6vof { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Cyg3M .framer-1ttbfwm { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Cyg3M .framer-1pjnu4v { bottom: 16px; flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Cyg3M .framer-4ow93s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Cyg3M .framer-xb9kf6, .framer-Cyg3M .framer-1h728pb, .framer-Cyg3M .framer-17pcc6n { flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Cyg3M .framer-1h9tv4h-container, .framer-Cyg3M .framer-ozfu4-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Cyg3M .framer-lcbrbf-container { height: auto; position: relative; width: auto; }\",\".framer-Cyg3M.framer-v-yzermq.framer-rujqdy { flex-direction: column; gap: 0px; max-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 8px 18px 8px 18px; width: 390px; }\",\".framer-Cyg3M.framer-v-yzermq .framer-1w9d9mg { flex: 1 0 0px; gap: unset; justify-content: space-between; width: 1px; }\",\".framer-Cyg3M.framer-v-yzermq .framer-uk3mko { height: min-content; order: 0; }\",\".framer-Cyg3M.framer-v-yzermq .framer-1yzgk8d, .framer-Cyg3M.framer-v-1y86lau .framer-uk3mko, .framer-Cyg3M.framer-v-gg7vrw .framer-1yzgk8d { height: 20px; width: 134px; }\",\".framer-Cyg3M.framer-v-yzermq .framer-11sjfm4 { align-content: center; align-items: center; aspect-ratio: 1 / 1; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: var(--framer-aspect-ratio-supported, 44px); justify-content: center; order: 1; padding: 0px; width: 44px; }\",\".framer-Cyg3M.framer-v-yzermq .framer-1ng6vof, .framer-Cyg3M.framer-v-yzermq .framer-1ttbfwm { height: 2px; left: unset; position: relative; top: unset; width: 24px; }\",\".framer-Cyg3M.framer-v-yzermq .framer-1pjnu4v { bottom: unset; left: unset; position: relative; }\",\".framer-Cyg3M.framer-v-1y86lau.framer-rujqdy { flex-direction: column; gap: 0px; max-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 22px 18px 34px 18px; width: 390px; }\",\".framer-Cyg3M.framer-v-1y86lau .framer-xi9f62 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; justify-content: center; z-index: 9; }\",\".framer-Cyg3M.framer-v-1y86lau .framer-1w9d9mg { gap: unset; justify-content: space-between; width: 100%; }\",\".framer-Cyg3M.framer-v-1y86lau .framer-11sjfm4 { cursor: pointer; height: 44px; width: 44px; }\",\".framer-Cyg3M.framer-v-1y86lau .framer-1ng6vof, .framer-Cyg3M.framer-v-1y86lau .framer-1ttbfwm { height: 2px; left: calc(50.00000000000002% - 24px / 2); top: calc(50.00000000000002% - 1.5px / 2); width: 24px; }\",\".framer-Cyg3M.framer-v-1y86lau .framer-4ow93s { flex-direction: column; width: 100%; }\",\".framer-Cyg3M.framer-v-1y86lau .framer-xb9kf6 { cursor: pointer; order: 0; }\",\".framer-Cyg3M.framer-v-1y86lau .framer-1h728pb { cursor: pointer; order: 1; }\",\".framer-Cyg3M.framer-v-1y86lau .framer-17pcc6n { cursor: pointer; order: 2; }\",\".framer-Cyg3M.framer-v-1y86lau .framer-1h9tv4h-container { order: 3; }\",\".framer-Cyg3M.framer-v-1y86lau .framer-ozfu4-container { order: 4; }\",\".framer-Cyg3M.framer-v-gg7vrw.framer-rujqdy { padding: 22px 30px 22px 30px; }\",\".framer-Cyg3M.framer-v-gg7vrw .framer-uk3mko { height: min-content; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"b8d7uNsjb\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"uxVQoKWT0\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"bll9Qhd7q\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerzOO627s_k=withCSS(Component,css,\"framer-Cyg3M\");export default FramerzOO627s_k;FramerzOO627s_k.displayName=\"Navigation\";FramerzOO627s_k.defaultProps={height:88,width:1200};addPropertyControls(FramerzOO627s_k,{variant:{options:[\"FEJfqtKz9\",\"b8d7uNsjb\",\"uxVQoKWT0\",\"bll9Qhd7q\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Open\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerzOO627s_k,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...TriggerFonts,...LinksProductFonts,...JoinTheDiscordButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzOO627s_k\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"88\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"b8d7uNsjb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"uxVQoKWT0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"bll9Qhd7q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Pattern", "props", "patternType", "front", "back", "radius", "scale", "shouldAnimate", "direction", "diagonal", "duration", "isCanvas", "RenderTarget", "pattern", "position", "size", "repeat", "blendMode", "filter", "addBackground", "backgroundPosAnimation", "frontHex", "Color", "backHex", "frontWithoutHex", "backWithoutHex", "factor", "xScale", "yScale", "p", "motion", "addPropertyControls", "ControlType", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "Link", "SVG", "css", "FramerQ9bNzvddV", "withCSS", "Q9bNzvddV_default", "addFonts", "SocialLinksFonts", "getFonts", "Q9bNzvddV_default", "MotionFooterWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FrameroqTBonrwi", "withCSS", "oqTBonrwi_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "css", "FramerYXS5TuLOj", "withCSS", "YXS5TuLOj_default", "addPropertyControls", "ControlType", "addFonts", "OpenType", "Component", "Y", "props", "ref", "p", "RichTextOpenType2w8puu", "withCodeBoundaryForOverrides", "RichText", "OpenType", "CaretFonts", "getFonts", "YXS5TuLOj_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", "hover", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "PWSlWeqS6", "DApvjrdfG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter170i0h9", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramernlEp9YNZR", "withCSS", "nlEp9YNZR_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "alcSpNC7x", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1my8hlh", "args", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "Link", "u", "RichText", "SVG", "css", "FramerrrEYCZ0Vf", "withCSS", "rrEYCZ0Vf_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "RichText", "Link", "css", "FramerymDafvoMe", "withCSS", "ymDafvoMe_default", "addFonts", "getFontsFromSharedStyle", "fonts", "TriggerFonts", "getFonts", "nlEp9YNZR_default", "LinksProductFonts", "ymDafvoMe_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "JoinTheDiscordButtonFonts", "rrEYCZ0Vf_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transition3", "animation1", "animation2", "animation3", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap14xu9rc", "args", "onTapuarazp", "PWSlWeqS6txyyif", "overlay", "loadMore", "alcSpNC7xuarazp", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "ref1", "ref2", "LayoutGroup", "u", "Link", "SVG", "RichText", "l", "ComponentViewportProvider", "AnimatePresence", "Floating", "css", "FramerzOO627s_k", "withCSS", "zOO627s_k_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
