{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js", "ssg:https://framerusercontent.com/modules/2PnXlUq7dOjlAaTnhFPc/4HBtoMk906CS9xETeoAm/SO41lLC_A.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js", "ssg:https://framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){const circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){const updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{replacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};const accessibilityProps={role:\"img\",...props.title&&{\"aria-label\":props.title},...props.description&&{\"aria-description\":props.description}};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle,...accessibilityProps});}SVG.displayName=\"SVG\";SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\",title:\"\",description:\"\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},title:{type:ControlType.String,title:\"Title\",defaultValue:\"\",placeholder:\"Icon name...\"},description:{type:ControlType.String,title:\"Description\",defaultValue:\"\",placeholder:\"Icon purpose...\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG_Prod.map", "// Generated by Framer (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}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";const SVGFonts=getFonts(SVG);const enabledGestures={hGBLneheM:{hover:true},hZhOY1XR5:{hover:true},PI0Xr4mT3:{hover:true},v3PF6FmLx:{hover:true},wDf6atSJG:{hover:true}};const cycleOrder=[\"hZhOY1XR5\",\"PI0Xr4mT3\",\"wDf6atSJG\",\"v3PF6FmLx\",\"hGBLneheM\"];const serializationHash=\"framer-3YzGz\";const variantClassNames={hGBLneheM:\"framer-v-tfvjzw\",hZhOY1XR5:\"framer-v-j2bq6k\",PI0Xr4mT3:\"framer-v-14qcf41\",v3PF6FmLx:\"framer-v-bntqt3\",wDf6atSJG:\"framer-v-v83wpw\"};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:800,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Dark Mode\":\"hZhOY1XR5\",\"Light Mode\":\"PI0Xr4mT3\",\"Petit Phone blanc\":\"hGBLneheM\",\"Variant Dark Phone\":\"wDf6atSJG\",\"Variant Petit Phone\":\"v3PF6FmLx\"};const getProps=({darkButton,darkIcon,darkText,fontSize,fontSize2,height,id,lightButton,lightIcon,lightText,link,starIcon,title,width,...props})=>{return{...props,AwLVtbPDc:lightText??props.AwLVtbPDc??\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",BSOUUvg2I:darkButton??props.BSOUUvg2I??\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",cFsCcg93e:link??props.cFsCcg93e,kc3TEh2D5:title??props.kc3TEh2D5??\"Get started\",OZOAUcesg:darkIcon??props.OZOAUcesg??\"rgb(255, 255, 255)\",Q8bxkK_Tn:lightIcon??props.Q8bxkK_Tn??\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",rxlQQT7eB:fontSize2??props.rxlQQT7eB??18,variant:humanReadableVariantMap[props.variant]??props.variant??\"hZhOY1XR5\",vzCC4h5Mr:lightButton??props.vzCC4h5Mr??\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",wuah86xnK:darkText??props.wuah86xnK??\"rgb(255, 255, 255)\",zMa3Tvq0J:fontSize??props.zMa3Tvq0J??16,ZT_RE8uZX:starIcon??props.ZT_RE8uZX??'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.9367 3.64886L12.0003 1.15198L11.064 3.64886C9.66542 7.37843 7.3788 9.66506 3.64922 11.0636L1.15234 12L3.64922 12.9363C7.3788 14.3349 9.66542 16.6215 11.064 20.3511L12.0003 22.848L12.9367 20.3511C14.3353 16.6215 16.6219 14.3349 20.3515 12.9363L22.8483 12L20.3515 11.0636C16.6219 9.66506 14.3353 7.37843 12.9367 3.64886Z\" fill=\"black\"/> </svg>'};};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,kc3TEh2D5,ZT_RE8uZX,BSOUUvg2I,vzCC4h5Mr,wuah86xnK,AwLVtbPDc,OZOAUcesg,Q8bxkK_Tn,cFsCcg93e,zMa3Tvq0J,rxlQQT7eB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hZhOY1XR5\",enabledGestures,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__*/_jsx(Link,{href:cFsCcg93e,motionChild:true,nodeId:\"hZhOY1XR5\",scopeId:\"SO41lLC_A\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-j2bq6k\",className,classNames)} framer-1xjnv1u`,\"data-framer-name\":\"Dark Mode\",layoutDependency:layoutDependency,layoutId:\"hZhOY1XR5\",ref:refBinding,style:{...style},...addPropertyOverrides({\"hGBLneheM-hover\":{\"data-framer-name\":undefined},\"hZhOY1XR5-hover\":{\"data-framer-name\":undefined},\"PI0Xr4mT3-hover\":{\"data-framer-name\":undefined},\"v3PF6FmLx-hover\":{\"data-framer-name\":undefined},\"wDf6atSJG-hover\":{\"data-framer-name\":undefined},hGBLneheM:{\"data-framer-name\":\"Petit Phone blanc\"},PI0Xr4mT3:{\"data-framer-name\":\"Light Mode\"},v3PF6FmLx:{\"data-framer-name\":\"Variant Petit Phone\"},wDf6atSJG:{\"data-framer-name\":\"Variant Dark Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vkvdie\",\"data-border\":true,\"data-framer-name\":\"Shadow\",layoutDependency:layoutDependency,layoutId:\"XRl1okXEY\",style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:BSOUUvg2I,borderBottomLeftRadius:395,borderBottomRightRadius:395,borderTopLeftRadius:395,borderTopRightRadius:395,rotate:0},variants:{\"hGBLneheM-hover\":{rotate:-4},\"hZhOY1XR5-hover\":{rotate:-4},\"PI0Xr4mT3-hover\":{rotate:-4},\"v3PF6FmLx-hover\":{\"--border-color\":\"rgb(255, 255, 255)\",rotate:-4},\"wDf6atSJG-hover\":{rotate:-4},hGBLneheM:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:vzCC4h5Mr},PI0Xr4mT3:{\"--border-color\":\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",backgroundColor:vzCC4h5Mr},v3PF6FmLx:{\"--border-bottom-width\":\"0.5px\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-top-width\":\"0.5px\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f553wx\",\"data-framer-name\":\"Shine\",layoutDependency:layoutDependency,layoutId:\"LgmFlAL9r\",style:{backgroundColor:BSOUUvg2I,borderBottomLeftRadius:398,borderBottomRightRadius:398,borderTopLeftRadius:398,borderTopRightRadius:398,rotate:0},variants:{\"hGBLneheM-hover\":{rotate:-4},\"hZhOY1XR5-hover\":{rotate:-4},\"PI0Xr4mT3-hover\":{rotate:-4},\"v3PF6FmLx-hover\":{rotate:-4},\"wDf6atSJG-hover\":{rotate:-4},hGBLneheM:{backgroundColor:vzCC4h5Mr},PI0Xr4mT3:{backgroundColor:vzCC4h5Mr}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ronn1c\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"oQPZtqTsN\",style:{backgroundColor:\"rgb(255, 255, 255)\",opacity:1,rotate:343},variants:{\"hZhOY1XR5-hover\":{opacity:1},hGBLneheM:{backgroundColor:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",opacity:.5},PI0Xr4mT3:{backgroundColor:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",opacity:.5},v3PF6FmLx:{opacity:1},wDf6atSJG:{opacity:1}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j4rua9\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"Xfbms6d0R\",style:{backgroundColor:\"rgb(255, 255, 255)\",opacity:1,rotate:343},variants:{\"hZhOY1XR5-hover\":{opacity:1},hGBLneheM:{backgroundColor:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",opacity:.5},PI0Xr4mT3:{backgroundColor:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",opacity:.5},v3PF6FmLx:{opacity:1},wDf6atSJG:{opacity:1}}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-wuah86xnK-SO41lLC_A))\"},children:\"Get started\"})}),className:\"framer-19a29hy\",fonts:[\"FS;Clash Display-medium\"],layoutDependency:layoutDependency,layoutId:\"NCwGo0emW\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-wuah86xnK-SO41lLC_A)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-AwLVtbPDc-SO41lLC_A\":AwLVtbPDc,\"--variable-reference-rxlQQT7eB-SO41lLC_A\":rxlQQT7eB,\"--variable-reference-wuah86xnK-SO41lLC_A\":wuah86xnK,\"--variable-reference-zMa3Tvq0J-SO41lLC_A\":zMa3Tvq0J,rotate:0},text:kc3TEh2D5,transformTemplate:transformTemplate1,variants:{\"hGBLneheM-hover\":{rotate:-4},\"hZhOY1XR5-hover\":{rotate:-4},\"PI0Xr4mT3-hover\":{\"--extracted-r6o4lv\":\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",\"--variable-reference-rxlQQT7eB-SO41lLC_A\":rxlQQT7eB,rotate:-4},\"v3PF6FmLx-hover\":{rotate:-4},\"wDf6atSJG-hover\":{rotate:-4},hGBLneheM:{\"--extracted-r6o4lv\":\"var(--variable-reference-AwLVtbPDc-SO41lLC_A)\",\"--variable-reference-AwLVtbPDc-SO41lLC_A\":AwLVtbPDc},PI0Xr4mT3:{\"--extracted-r6o4lv\":\"var(--variable-reference-AwLVtbPDc-SO41lLC_A)\",\"--variable-reference-AwLVtbPDc-SO41lLC_A\":AwLVtbPDc,\"--variable-reference-zMa3Tvq0J-SO41lLC_A\":zMa3Tvq0J}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"hZhOY1XR5-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-wuah86xnK-SO41lLC_A))\"},children:\"Get started\"})})},\"PI0Xr4mT3-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-rxlQQT7eB-SO41lLC_A) * 1px)\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5)))\"},children:\"Get started\"})})},hGBLneheM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"6px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AwLVtbPDc-SO41lLC_A))\"},children:\"Get started\"})})},PI0Xr4mT3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-zMa3Tvq0J-SO41lLC_A) * 1px)\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AwLVtbPDc-SO41lLC_A))\"},children:\"Get started\"})})},v3PF6FmLx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"6px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-wuah86xnK-SO41lLC_A))\"},children:\"Get started\"})})},wDf6atSJG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-wuah86xnK-SO41lLC_A))\"},children:\"Get started\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get started\"})}),className:\"framer-tv4eef\",\"data-framer-name\":\"Helper\",fonts:[\"FS;Clash Display-medium\"],layoutDependency:layoutDependency,layoutId:\"VmfFHvkTq\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:0,rotate:0},text:kc3TEh2D5,variants:{\"hGBLneheM-hover\":{rotate:0},\"v3PF6FmLx-hover\":{rotate:-4},\"wDf6atSJG-hover\":{rotate:-4}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({v3PF6FmLx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"6px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get started\"})})},wDf6atSJG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get started\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dwesk6\",\"data-border\":true,\"data-framer-name\":\"Base\",layoutDependency:layoutDependency,layoutId:\"nBAJ0I3pA\",style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",borderBottomLeftRadius:395,borderBottomRightRadius:395,borderTopLeftRadius:395,borderTopRightRadius:395,rotate:0},variants:{\"hGBLneheM-hover\":{rotate:-4},\"hZhOY1XR5-hover\":{rotate:-4},\"PI0Xr4mT3-hover\":{rotate:-4},\"v3PF6FmLx-hover\":{\"--border-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\",rotate:-4},\"wDf6atSJG-hover\":{rotate:-4},hGBLneheM:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-top-width\":\"1px\"},PI0Xr4mT3:{\"--border-color\":\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\"},v3PF6FmLx:{\"--border-bottom-width\":\"0.5px\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-top-width\":\"0.5px\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-715b42\",\"data-framer-name\":\"Stars\",layoutDependency:layoutDependency,layoutId:\"JcUky5UYR\",style:{opacity:0,rotate:0},variants:{\"hGBLneheM-hover\":{opacity:1,rotate:-4},\"hZhOY1XR5-hover\":{opacity:1,rotate:-4},\"PI0Xr4mT3-hover\":{opacity:1,rotate:-4},\"v3PF6FmLx-hover\":{opacity:1,rotate:-4},\"wDf6atSJG-hover\":{opacity:1,rotate:0}},...addPropertyOverrides({\"v3PF6FmLx-hover\":{transformTemplate:undefined},\"wDf6atSJG-hover\":{transformTemplate:undefined},v3PF6FmLx:{transformTemplate:transformTemplate1},wDf6atSJG:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-53dp4g-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"AGtuHadfX-container\",nodeId:\"AGtuHadfX\",rendersWithMotion:true,scopeId:\"SO41lLC_A\",...addPropertyOverrides({\"hGBLneheM-hover\":{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{customColor:OZOAUcesg,customPadding:0,customStrokeWidth:2,customSvgCode:ZT_RE8uZX,description:\"\",height:\"100%\",id:\"AGtuHadfX\",layoutId:\"AGtuHadfX\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({hGBLneheM:{customColor:Q8bxkK_Tn},PI0Xr4mT3:{customColor:Q8bxkK_Tn}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q6dxyn-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KS9TdHzjA-container\",nodeId:\"KS9TdHzjA\",rendersWithMotion:true,scopeId:\"SO41lLC_A\",...addPropertyOverrides({\"hGBLneheM-hover\":{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{customColor:OZOAUcesg,customPadding:0,customStrokeWidth:2,customSvgCode:ZT_RE8uZX,description:\"\",height:\"100%\",id:\"KS9TdHzjA\",layoutId:\"KS9TdHzjA\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({hGBLneheM:{customColor:Q8bxkK_Tn},PI0Xr4mT3:{customColor:Q8bxkK_Tn}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1punpzd-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"LLyiKhg0S-container\",nodeId:\"LLyiKhg0S\",rendersWithMotion:true,scopeId:\"SO41lLC_A\",...addPropertyOverrides({\"hGBLneheM-hover\":{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{customColor:OZOAUcesg,customPadding:0,customStrokeWidth:2,customSvgCode:ZT_RE8uZX,description:\"\",height:\"100%\",id:\"LLyiKhg0S\",layoutId:\"LLyiKhg0S\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({hGBLneheM:{customColor:Q8bxkK_Tn},PI0Xr4mT3:{customColor:Q8bxkK_Tn}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-48qr2m-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"j_1KPMxvP-container\",nodeId:\"j_1KPMxvP\",rendersWithMotion:true,scopeId:\"SO41lLC_A\",...addPropertyOverrides({\"hGBLneheM-hover\":{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{customColor:OZOAUcesg,customPadding:0,customStrokeWidth:2,customSvgCode:ZT_RE8uZX,description:\"\",height:\"100%\",id:\"j_1KPMxvP\",layoutId:\"j_1KPMxvP\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({hGBLneheM:{customColor:Q8bxkK_Tn},PI0Xr4mT3:{customColor:Q8bxkK_Tn}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1l7q64i-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"qPPk9kLxu-container\",nodeId:\"qPPk9kLxu\",rendersWithMotion:true,scopeId:\"SO41lLC_A\",...addPropertyOverrides({\"hGBLneheM-hover\":{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{customColor:OZOAUcesg,customPadding:0,customStrokeWidth:2,customSvgCode:ZT_RE8uZX,description:\"\",height:\"100%\",id:\"qPPk9kLxu\",layoutId:\"qPPk9kLxu\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({hGBLneheM:{customColor:Q8bxkK_Tn},PI0Xr4mT3:{customColor:Q8bxkK_Tn}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hajgde-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"RgkMJugUb-container\",nodeId:\"RgkMJugUb\",rendersWithMotion:true,scopeId:\"SO41lLC_A\",...addPropertyOverrides({\"hGBLneheM-hover\":{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{customColor:OZOAUcesg,customPadding:0,customStrokeWidth:2,customSvgCode:ZT_RE8uZX,description:\"\",height:\"100%\",id:\"RgkMJugUb\",layoutId:\"RgkMJugUb\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({hGBLneheM:{customColor:Q8bxkK_Tn},PI0Xr4mT3:{customColor:Q8bxkK_Tn}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3YzGz.framer-1xjnv1u, .framer-3YzGz .framer-1xjnv1u { display: block; }\",\".framer-3YzGz.framer-j2bq6k { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: relative; text-decoration: none; width: min-content; }\",\".framer-3YzGz .framer-1vkvdie, .framer-3YzGz .framer-1dwesk6 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3YzGz .framer-f553wx { bottom: 1px; flex: none; left: 1px; overflow: hidden; position: absolute; right: 1px; top: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3YzGz .framer-ronn1c { bottom: -11px; flex: none; left: -21px; overflow: hidden; position: absolute; top: -14px; width: 2px; }\",\".framer-3YzGz .framer-j4rua9 { bottom: -11px; flex: none; left: -30px; overflow: hidden; position: absolute; top: -13px; width: 6px; }\",\".framer-3YzGz .framer-19a29hy { -webkit-user-select: none; flex: none; height: auto; left: 50%; position: absolute; top: 50%; user-select: none; white-space: pre; width: auto; z-index: 1; }\",\".framer-3YzGz .framer-tv4eef { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3YzGz .framer-715b42 { flex: none; height: 47px; left: calc(50.00000000000002% - 62px / 2); overflow: hidden; pointer-events: none; position: absolute; top: calc(50.00000000000002% - 47px / 2); width: 62px; }\",\".framer-3YzGz .framer-53dp4g-container { flex: none; height: 16px; left: calc(74.1935483870968% - 16px / 2); position: absolute; top: calc(27.65957446808513% - 16px / 2); width: 16px; z-index: 1; }\",\".framer-3YzGz .framer-q6dxyn-container { flex: none; height: 10px; left: calc(46.77419354838712% - 10px / 2); position: absolute; top: calc(19.14893617021279% - 10px / 2); width: 10px; z-index: 1; }\",\".framer-3YzGz .framer-1punpzd-container { flex: none; height: 6px; left: calc(8.06451612903228% - 6px / 2); position: absolute; top: calc(29.787234042553212% - 6px / 2); width: 6px; z-index: 1; }\",\".framer-3YzGz .framer-48qr2m-container { flex: none; height: 14px; left: calc(17.74193548387099% - 14px / 2); position: absolute; top: calc(68.08510638297875% - 14px / 2); width: 14px; z-index: 1; }\",\".framer-3YzGz .framer-1l7q64i-container { flex: none; height: 6px; left: calc(53.225806451612925% - 6px / 2); position: absolute; top: calc(80.85106382978725% - 6px / 2); width: 6px; z-index: 1; }\",\".framer-3YzGz .framer-1hajgde-container { flex: none; height: 24px; left: calc(85.48387096774196% - 24px / 2); position: absolute; top: calc(63.82978723404258% - 24px / 2); width: 24px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3YzGz.framer-j2bq6k { gap: 0px; } .framer-3YzGz.framer-j2bq6k > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3YzGz.framer-j2bq6k > :first-child { margin-top: 0px; } .framer-3YzGz.framer-j2bq6k > :last-child { margin-bottom: 0px; } }\",\".framer-3YzGz.framer-v-v83wpw.framer-j2bq6k { height: 43px; padding: 0px 20px 0px 20px; }\",\".framer-3YzGz.framer-v-v83wpw .framer-715b42 { aspect-ratio: 1.3191489361702127 / 1; height: var(--framer-aspect-ratio-supported, 32px); left: 50%; top: 50%; width: 43px; }\",\".framer-3YzGz.framer-v-bntqt3.framer-j2bq6k { height: 30px; padding: 0px 15px 0px 15px; }\",\".framer-3YzGz.framer-v-bntqt3 .framer-715b42 { aspect-ratio: 1.3191489361702127 / 1; height: var(--framer-aspect-ratio-supported, 33px); left: 50%; top: 50%; width: 43px; }\",\".framer-3YzGz.framer-v-tfvjzw.framer-j2bq6k { height: 30px; }\",\".framer-3YzGz.framer-v-tfvjzw .framer-1vkvdie, .framer-3YzGz.framer-v-tfvjzw .framer-f553wx, .framer-3YzGz.framer-v-tfvjzw .framer-1dwesk6 { left: 37px; right: 36px; }\",\".framer-3YzGz.framer-v-tfvjzw .framer-19a29hy { left: 50%; }\",\".framer-3YzGz.framer-v-j2bq6k.hover .framer-1vkvdie { bottom: -9px; left: -14px; right: -2px; top: 3px; }\",\".framer-3YzGz.framer-v-j2bq6k.hover .framer-f553wx { bottom: -2px; left: -7px; right: -7px; top: -2px; }\",\".framer-3YzGz.framer-v-j2bq6k.hover .framer-ronn1c { bottom: -11px; left: unset; right: -27px; top: -14px; }\",\".framer-3YzGz.framer-v-j2bq6k.hover .framer-j4rua9 { bottom: -11px; left: unset; right: -23px; top: -13px; }\",\".framer-3YzGz.framer-v-j2bq6k.hover .framer-19a29hy, .framer-3YzGz.framer-v-14qcf41.hover .framer-19a29hy { top: 48%; }\",\".framer-3YzGz.framer-v-j2bq6k.hover .framer-1dwesk6 { bottom: -3px; left: -8px; right: -8px; top: -3px; }\",\".framer-3YzGz.framer-v-j2bq6k.hover .framer-715b42, .framer-3YzGz.framer-v-14qcf41.hover .framer-715b42 { bottom: -44px; height: unset; left: -22px; right: -21px; top: -44px; width: unset; }\",\".framer-3YzGz.framer-v-14qcf41.hover .framer-1vkvdie { bottom: -9px; left: -14px; right: -4px; top: 2px; }\",\".framer-3YzGz.framer-v-14qcf41.hover .framer-f553wx { bottom: -2px; left: -8px; right: -8px; top: -2px; }\",\".framer-3YzGz.framer-v-14qcf41.hover .framer-ronn1c { bottom: -11px; left: unset; right: -33px; top: -14px; }\",\".framer-3YzGz.framer-v-14qcf41.hover .framer-j4rua9 { bottom: -11px; left: unset; right: -29px; top: -13px; }\",\".framer-3YzGz.framer-v-14qcf41.hover .framer-1dwesk6 { bottom: -3px; left: -9px; right: -9px; top: -3px; }\",\".framer-3YzGz.framer-v-v83wpw.hover .framer-1vkvdie { bottom: -5px; left: -4px; right: 5px; top: 5px; }\",\".framer-3YzGz.framer-v-v83wpw.hover .framer-ronn1c { bottom: -11px; left: unset; right: -31px; top: -14px; }\",\".framer-3YzGz.framer-v-v83wpw.hover .framer-j4rua9 { bottom: -11px; left: unset; right: -26px; top: -13px; }\",\".framer-3YzGz.framer-v-v83wpw.hover .framer-715b42 { aspect-ratio: 1.3214285714285714 / 1; height: var(--framer-aspect-ratio-supported, 89px); left: -6px; right: -5px; top: -34px; width: unset; }\",\".framer-3YzGz.framer-v-bntqt3.hover .framer-1vkvdie { bottom: -4px; left: -3px; right: 2px; top: 4px; }\",\".framer-3YzGz.framer-v-bntqt3.hover .framer-ronn1c { bottom: -11px; left: unset; right: -22px; top: -14px; }\",\".framer-3YzGz.framer-v-bntqt3.hover .framer-j4rua9 { bottom: -11px; left: unset; right: -18px; top: -13px; }\",\".framer-3YzGz.framer-v-bntqt3.hover .framer-1dwesk6 { right: 0px; }\",\".framer-3YzGz.framer-v-bntqt3.hover .framer-715b42 { bottom: -19px; height: var(--framer-aspect-ratio-supported, 57px); left: -5px; right: -6px; top: unset; width: unset; }\",\".framer-3YzGz.framer-v-tfvjzw.hover .framer-1vkvdie { bottom: -4px; left: 35px; right: 38px; top: 1px; }\",\".framer-3YzGz.framer-v-tfvjzw.hover .framer-f553wx { bottom: 0px; top: 0px; }\",\".framer-3YzGz.framer-v-tfvjzw.hover .framer-ronn1c { bottom: -12px; left: unset; right: -16px; top: -13px; }\",\".framer-3YzGz.framer-v-tfvjzw.hover .framer-j4rua9 { bottom: -11px; left: unset; right: -13px; top: -13px; }\",\".framer-3YzGz.framer-v-tfvjzw.hover .framer-1dwesk6 { bottom: 0px; left: 37px; right: 36px; top: 0px; }\",\".framer-3YzGz.framer-v-tfvjzw.hover .framer-715b42 { bottom: -15px; height: unset; left: 31px; right: 29px; top: -15px; width: unset; }\",\".framer-3YzGz.framer-v-tfvjzw.hover .framer-53dp4g-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 5px); left: 86%; top: 25%; width: 5px; }\",\".framer-3YzGz.framer-v-tfvjzw.hover .framer-q6dxyn-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 7px); left: 58%; top: 18%; width: 7px; }\",\".framer-3YzGz.framer-v-tfvjzw.hover .framer-1punpzd-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 4px); left: 8%; top: 30%; width: 4px; }\",\".framer-3YzGz.framer-v-tfvjzw.hover .framer-48qr2m-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 9px); left: 17%; top: 68%; width: 9px; }\",\".framer-3YzGz.framer-v-tfvjzw.hover .framer-1l7q64i-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 5px); left: 54%; top: 85%; width: 5px; }\",\".framer-3YzGz.framer-v-tfvjzw.hover .framer-1hajgde-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 16px); left: 85%; top: 64%; width: 16px; }\",'.framer-3YzGz[data-border=\"true\"]::after, .framer-3YzGz [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 80\n * @framerIntrinsicWidth 136\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"PI0Xr4mT3\":{\"layout\":[\"auto\",\"fixed\"]},\"wDf6atSJG\":{\"layout\":[\"auto\",\"fixed\"]},\"v3PF6FmLx\":{\"layout\":[\"auto\",\"fixed\"]},\"hGBLneheM\":{\"layout\":[\"auto\",\"fixed\"]},\"V8kV8IAqZ\":{\"layout\":[\"auto\",\"fixed\"]},\"eo0zKPBF3\":{\"layout\":[\"auto\",\"fixed\"]},\"J5Ot9xwZQ\":{\"layout\":[\"auto\",\"fixed\"]},\"h5yh1uYDM\":{\"layout\":[\"auto\",\"fixed\"]},\"olB4PKIl6\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"kc3TEh2D5\":\"title\",\"ZT_RE8uZX\":\"starIcon\",\"BSOUUvg2I\":\"darkButton\",\"vzCC4h5Mr\":\"lightButton\",\"wuah86xnK\":\"darkText\",\"AwLVtbPDc\":\"lightText\",\"OZOAUcesg\":\"darkIcon\",\"Q8bxkK_Tn\":\"lightIcon\",\"cFsCcg93e\":\"link\",\"zMa3Tvq0J\":\"fontSize\",\"rxlQQT7eB\":\"fontSize2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSO41lLC_A=withCSS(Component,css,\"framer-3YzGz\");export default FramerSO41lLC_A;FramerSO41lLC_A.displayName=\"3D-Button\";FramerSO41lLC_A.defaultProps={height:80,width:136};addPropertyControls(FramerSO41lLC_A,{variant:{options:[\"hZhOY1XR5\",\"PI0Xr4mT3\",\"wDf6atSJG\",\"v3PF6FmLx\",\"hGBLneheM\"],optionTitles:[\"Dark Mode\",\"Light Mode\",\"Variant Dark Phone\",\"Variant Petit Phone\",\"Petit Phone blanc\"],title:\"Variant\",type:ControlType.Enum},kc3TEh2D5:{defaultValue:\"Get started\",displayTextArea:false,title:\"Title\",type:ControlType.String},ZT_RE8uZX:{defaultValue:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.9367 3.64886L12.0003 1.15198L11.064 3.64886C9.66542 7.37843 7.3788 9.66506 3.64922 11.0636L1.15234 12L3.64922 12.9363C7.3788 14.3349 9.66542 16.6215 11.064 20.3511L12.0003 22.848L12.9367 20.3511C14.3353 16.6215 16.6219 14.3349 20.3515 12.9363L22.8483 12L20.3515 11.0636C16.6219 9.66506 14.3353 7.37843 12.9367 3.64886Z\" fill=\"black\"/> </svg>',displayTextArea:false,title:\"Star Icon\",type:ControlType.String},BSOUUvg2I:{defaultValue:'var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5)) /* {\"name\":\"1\"} */',title:\"Dark Button\",type:ControlType.Color},vzCC4h5Mr:{defaultValue:'var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)) /* {\"name\":\"12\"} */',title:\"Light Button\",type:ControlType.Color},wuah86xnK:{defaultValue:\"rgb(255, 255, 255)\",title:\"Dark Text\",type:ControlType.Color},AwLVtbPDc:{defaultValue:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",title:\"Light Text\",type:ControlType.Color},OZOAUcesg:{defaultValue:\"rgb(255, 255, 255)\",title:\"Dark Icon\",type:ControlType.Color},Q8bxkK_Tn:{defaultValue:'var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5)) /* {\"name\":\"1\"} */',title:\"Light Icon\",type:ControlType.Color},cFsCcg93e:{title:\"Link\",type:ControlType.Link},zMa3Tvq0J:{defaultValue:16,title:\"Font Size\",type:ControlType.Number},rxlQQT7eB:{defaultValue:18,title:\"Font Size 2\",type:ControlType.Number}});addFonts(FramerSO41lLC_A,[{explicitInter:true,fonts:[{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2GQIT54GKQY3JRFTSHS4ARTRNRQISSAA/3CIP5EBHRRHE5FVQU3VFROPUERNDSTDF/JTSL5QESUXATU47LCPUNHZQBDDIWDOSW.woff2\",weight:\"500\"}]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSO41lLC_A\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"80\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"PI0Xr4mT3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"wDf6atSJG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"v3PF6FmLx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"hGBLneheM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"V8kV8IAqZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"eo0zKPBF3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"J5Ot9xwZQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"h5yh1uYDM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"olB4PKIl6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"kc3TEh2D5\\\":\\\"title\\\",\\\"ZT_RE8uZX\\\":\\\"starIcon\\\",\\\"BSOUUvg2I\\\":\\\"darkButton\\\",\\\"vzCC4h5Mr\\\":\\\"lightButton\\\",\\\"wuah86xnK\\\":\\\"darkText\\\",\\\"AwLVtbPDc\\\":\\\"lightText\\\",\\\"OZOAUcesg\\\":\\\"darkIcon\\\",\\\"Q8bxkK_Tn\\\":\\\"lightIcon\\\",\\\"cFsCcg93e\\\":\\\"link\\\",\\\"zMa3Tvq0J\\\":\\\"fontSize\\\",\\\"rxlQQT7eB\\\":\\\"fontSize2\\\"}\",\"framerIntrinsicWidth\":\"136\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SO41lLC_A.map", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useIsInCurrentNavigationTarget } from \"framer\";\nimport { useEffect } from \"react\";\nexport function useOnEnter(onEnter, enabled) {\n    return useOnSpecificTargetChange(true, onEnter, enabled);\n}\nexport function useOnExit(onExit, enabled) {\n    return useOnSpecificTargetChange(false, onExit, enabled);\n}\nfunction useOnSpecificTargetChange(goal, callback, enabled = true) {\n    const isInTarget = useIsInCurrentNavigationTarget();\n    useEffect(()=>{\n        if (enabled && isInTarget === goal) callback();\n    }, [\n        isInTarget\n    ]);\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useOnEnter\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnExit\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useOnNavigationTargetChange.map", "import { useMemo } from \"react\";\nexport const isBrowserSafari = ()=>{\n    if (typeof navigator !== `undefined`) {\n        const userAgent = navigator.userAgent.toLowerCase();\n        const isSafari = (userAgent.indexOf(\"safari\") > -1 || userAgent.indexOf(\"framermobile\") > -1 || userAgent.indexOf(\"framerx\") > -1) && userAgent.indexOf(\"chrome\") < 0;\n        return isSafari;\n    } else return false;\n};\nexport const useIsBrowserSafari = ()=>useMemo(()=>isBrowserSafari()\n    , [])\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./isBrowser.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map"],
  "mappings": "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",
  "names": ["SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "accessibilityProps", "p", "addPropertyControls", "ControlType", "SVG_Prod_default", "SVGFonts", "getFonts", "SVG_Prod_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "darkButton", "darkIcon", "darkText", "fontSize", "fontSize2", "height", "id", "lightButton", "lightIcon", "lightText", "link", "starIcon", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "kc3TEh2D5", "ZT_RE8uZX", "BSOUUvg2I", "vzCC4h5Mr", "wuah86xnK", "AwLVtbPDc", "OZOAUcesg", "Q8bxkK_Tn", "cFsCcg93e", "zMa3Tvq0J", "rxlQQT7eB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerSO41lLC_A", "withCSS", "SO41lLC_A_default", "addPropertyControls", "ControlType", "addFonts", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useOnEnter", "onEnter", "enabled", "useOnSpecificTargetChange", "useOnExit", "onExit", "goal", "callback", "isInTarget", "useIsInCurrentNavigationTarget", "ue", "isBrowserSafari", "navigator", "userAgent", "useIsBrowserSafari", "se", "useRenderTarget", "se", "RenderTarget", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "paddingControl", "ControlType"]
}
