{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/j9e6n9gTlL9LC9kAtuUD/CVsLJ7pVcbvf9IogVpx9/VZ6QgJJCI.js", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/Y4bvtS2ZNzzsd1ntJRU5/wtjEIeGb6rBLXW3RWxrS/Right_Click_Menu.js", "ssg:https://framerusercontent.com/modules/nTdnJR1CVsIgCYdGeUsd/G9cuTeanYR1DChWrCdvX/UTkM4G1fU.js", "ssg:https://framerusercontent.com/modules/4sNwCiD2IjoTOiiQekll/SPY3toudXnh8oQB8rHhT/y9xoNLJv9.js", "ssg:https://framerusercontent.com/modules/ctnu5DgdXbY96Gb7CGtO/BJlhNYfb6o3nO0tSggML/rVlgJvCvp.js", "ssg:https://framerusercontent.com/modules/7JkmywsBpVg8moXaxvIU/NKxOR1FinuQj4SV8Q3nL/WlmbTCjh8.js", "ssg:https://framerusercontent.com/modules/nsX3tYatcYi7TlCt69zU/LTEPkzTZDlLLZoT5vAiH/aKVKCrwGl.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", "ssg:https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js", "ssg:https://framerusercontent.com/modules/cuQH4dmpDnV8YK1mSgQX/KqRXqunFjE6ufhpc7ZRu/useFontControls.js", "ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js", "ssg:https://framerusercontent.com/modules/rbxLN3Nm9QfZBJwfxDUU/CqzFZitNP2EMu7CSr07L/k0hEWGsAt.js", "ssg:https://framerusercontent.com/modules/mQ2aMiNa2u9mKOm1dIe0/2AgeOLe7We0IFA2Y1eSO/MgTmys8zL.js", "ssg:https://framerusercontent.com/modules/8oQuMvw1SqAvldZdgO3T/YHkN3VZ0RJzpQ0eQOd0g/NMfKLBpFI.js", "ssg:https://framerusercontent.com/modules/dAI5LXdLlWrbDJpiOu28/U38Q9OCSrhRHBUNc2WtL/WOcydUeWg.js", "ssg:https://framerusercontent.com/modules/mNVcrQFT8lePQecDA0Ht/0fjjXVgvqLLBfiFjrXPQ/QD6r7IkWc.js"],
  "sourcesContent": ["import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=[\".framer-hOXhp .framer-styles-preset-1cv55ra:not(.rich-text-wrapper), .framer-hOXhp .framer-styles-preset-1cv55ra.rich-text-wrapper a { --framer-link-hover-text-color: rgba(0, 255, 255, 0.9); --framer-link-hover-text-decoration: none; --framer-link-text-color: #00ffff; --framer-link-text-decoration: none; transition: color 0.3s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-hOXhp\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "/*\n * Context Menu by framer.today\n * v1.0.0\n * https://framer.today/license\n */import{jsx as _jsx}from\"react/jsx-runtime\";import{useRef,useEffect}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const VARIANT_DEFAULT=\"Variant 1\";const VARIANT_ALTERNATE=\"Variant 2\";const useStore=createStore({variant:VARIANT_DEFAULT});export function withRightClick(Component){return props=>{const[store,setStore]=useStore();const componentRef=useRef(null);const handleRightClick=e=>{var _componentRef_current;if((_componentRef_current=componentRef.current)===null||_componentRef_current===void 0?void 0:_componentRef_current.contains(e.target)){e.preventDefault();e.stopPropagation();setStore({variant:VARIANT_ALTERNATE});}};const handleOutsideClick=e=>{var _componentRef_current;if(!((_componentRef_current=componentRef.current)===null||_componentRef_current===void 0?void 0:_componentRef_current.contains(e.target))){setStore({variant:VARIANT_DEFAULT});}};useEffect(()=>{const currentComponent=componentRef.current;currentComponent===null||currentComponent===void 0?void 0:currentComponent.addEventListener(\"contextmenu\",handleRightClick);document.addEventListener(\"click\",handleOutsideClick);return()=>{currentComponent===null||currentComponent===void 0?void 0:currentComponent.removeEventListener(\"contextmenu\",handleRightClick);document.removeEventListener(\"click\",handleOutsideClick);};},[]);return /*#__PURE__*/_jsx(Component,{ref:componentRef,...props,variant:store.variant});};}export function withDropdown(Component){return props=>{const[store,setStore]=useStore();const handleEvent=()=>{if(store.variant===\"Variant 2\"){setStore({variant:\"Variant 1\"});}};return /*#__PURE__*/_jsx(Component,{...props,onTap:handleEvent});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withDropdown\":{\"type\":\"reactHoc\",\"name\":\"withDropdown\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRightClick\":{\"type\":\"reactHoc\",\"name\":\"withRightClick\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Right_Click_Menu.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=[\".framer-KYD1S .framer-styles-preset-1sgkpn3:not(.rich-text-wrapper), .framer-KYD1S .framer-styles-preset-1sgkpn3.rich-text-wrapper a { --framer-link-hover-text-color: #ffffff; --framer-link-text-color: #9b96b0; --framer-link-text-decoration: none; }\"];export const className=\"framer-KYD1S\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=[\".framer-3LHOt .framer-styles-preset-11klcyo:not(.rich-text-wrapper), .framer-3LHOt .framer-styles-preset-11klcyo.rich-text-wrapper a { --framer-link-hover-text-color: #00FFFF; --framer-link-hover-text-decoration: none; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; transition: color 0.3s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-3LHOt\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c93245f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withDropdown}from\"https://framerusercontent.com/modules/Y4bvtS2ZNzzsd1ntJRU5/wtjEIeGb6rBLXW3RWxrS/Right_Click_Menu.js\";const MotionDivWithDropdown=withDropdown(motion.div);const cycleOrder=[\"PjgoZbsss\",\"E9oil2G0s\"];const serializationHash=\"framer-QF1PQ\";const variantClassNames={E9oil2G0s:\"framer-v-1mi7i7n\",PjgoZbsss:\"framer-v-p44721\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"PjgoZbsss\",\"Variant 2\":\"E9oil2G0s\"};const getProps=({height,id,image,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;return{...props,dLD89mAUk:link!==null&&link!==void 0?link:props.dLD89mAUk,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"PjgoZbsss\",vzE39t44g:(_ref1=image!==null&&image!==void 0?image:props.vzE39t44g)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/KzmEYJoH5H584cEIyvf1sjE69A.svg\"}};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,dLD89mAUk,vzE39t44g,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PjgoZbsss\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"E9oil2G0s\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"E9oil2G0s\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(MotionDivWithDropdown,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-p44721\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"PjgoZbsss\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({E9oil2G0s:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:dLD89mAUk,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:354,intrinsicWidth:1771,pixelHeight:708,pixelWidth:3542,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 40px)`,...toResponsiveImage(vzE39t44g),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-5xgq7x framer-3lpztd\",\"data-framer-name\":\"logo full\",layoutDependency:layoutDependency,layoutId:\"Z1A4PNTrO\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kc5qdt\",\"data-framer-name\":\"Dropdown Menu\",layoutDependency:layoutDependency,layoutId:\"raO7SJNVJ\",style:{backgroundColor:\"rgb(37, 38, 59)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,boxShadow:\"0px 10px 15px -3px rgba(0, 0, 0, 0.10000000149011612), 0px 4px 6px -4px rgba(0, 0, 0, 0.10000000149011612)\"},transformTemplate:transformTemplate1,...addPropertyOverrides({E9oil2G0s:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9nth9r\",\"data-framer-name\":\"Account\",layoutDependency:layoutDependency,layoutId:\"IAsQ6vdoL\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16c5oaj\",\"data-framer-name\":\"Account / Titles\",layoutDependency:layoutDependency,layoutId:\"f98RpNpIt\",style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8a73qj\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"llj7jSYjl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tNzAw\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Download brand assets\"})}),className:\"framer-11qimix\",\"data-framer-name\":\"Create a new organization\",fonts:[\"GF;JetBrains Mono-700\"],layoutDependency:layoutDependency,layoutId:\"htRx2yZkW\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nhw6hk\",\"data-framer-name\":\"Account / Titles\",layoutDependency:layoutDependency,layoutId:\"sLGvrQUcj\",style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3g0yvg\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"ywp1o9pQX\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tNzAw\",\"--framer-font-family\":'\"JetBrains Mono\"',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"Browse all assets\"})})}),className:\"framer-1b09arp\",\"data-framer-name\":\"Create a new organization\",fonts:[\"GF;JetBrains Mono-700\"],layoutDependency:layoutDependency,layoutId:\"AURYnq30j\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QF1PQ.framer-3lpztd, .framer-QF1PQ .framer-3lpztd { display: block; }\",\".framer-QF1PQ.framer-p44721 { height: 40px; overflow: visible; position: relative; width: 160px; }\",\".framer-QF1PQ .framer-5xgq7x { aspect-ratio: 5.002824858757062 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); left: -20px; overflow: visible; position: absolute; right: -20px; text-decoration: none; top: 0px; }\",\".framer-QF1PQ .framer-1kc5qdt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: -38px; overflow: visible; padding: 4px 0px 4px 0px; position: absolute; right: -38px; top: 50%; }\",\".framer-QF1PQ .framer-9nth9r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 6px 6px 6px; position: relative; width: 100%; }\",\".framer-QF1PQ .framer-16c5oaj, .framer-QF1PQ .framer-1nhw6hk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 6px 8px 6px 8px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-QF1PQ .framer-8a73qj, .framer-QF1PQ .framer-3g0yvg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-QF1PQ .framer-11qimix, .framer-QF1PQ .framer-1b09arp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QF1PQ .framer-1kc5qdt, .framer-QF1PQ .framer-9nth9r, .framer-QF1PQ .framer-16c5oaj, .framer-QF1PQ .framer-8a73qj, .framer-QF1PQ .framer-1nhw6hk, .framer-QF1PQ .framer-3g0yvg { gap: 0px; } .framer-QF1PQ .framer-1kc5qdt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-QF1PQ .framer-1kc5qdt > :first-child, .framer-QF1PQ .framer-9nth9r > :first-child { margin-top: 0px; } .framer-QF1PQ .framer-1kc5qdt > :last-child, .framer-QF1PQ .framer-9nth9r > :last-child { margin-bottom: 0px; } .framer-QF1PQ .framer-9nth9r > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-QF1PQ .framer-16c5oaj > *, .framer-QF1PQ .framer-1nhw6hk > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-QF1PQ .framer-16c5oaj > :first-child, .framer-QF1PQ .framer-8a73qj > :first-child, .framer-QF1PQ .framer-1nhw6hk > :first-child, .framer-QF1PQ .framer-3g0yvg > :first-child { margin-left: 0px; } .framer-QF1PQ .framer-16c5oaj > :last-child, .framer-QF1PQ .framer-8a73qj > :last-child, .framer-QF1PQ .framer-1nhw6hk > :last-child, .framer-QF1PQ .framer-3g0yvg > :last-child { margin-right: 0px; } .framer-QF1PQ .framer-8a73qj > *, .framer-QF1PQ .framer-3g0yvg > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-QF1PQ.framer-v-1mi7i7n.framer-p44721 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; width: min-content; }\",\".framer-QF1PQ.framer-v-1mi7i7n .framer-1kc5qdt { left: unset; position: relative; right: unset; top: unset; width: 236px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QF1PQ.framer-v-1mi7i7n.framer-p44721 { gap: 0px; } .framer-QF1PQ.framer-v-1mi7i7n.framer-p44721 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QF1PQ.framer-v-1mi7i7n.framer-p44721 > :first-child { margin-top: 0px; } .framer-QF1PQ.framer-v-1mi7i7n.framer-p44721 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 160\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"E9oil2G0s\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"dLD89mAUk\":\"link\",\"vzE39t44g\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrVlgJvCvp=withCSS(Component,css,\"framer-QF1PQ\");export default FramerrVlgJvCvp;FramerrVlgJvCvp.displayName=\"Logo\";FramerrVlgJvCvp.defaultProps={height:40,width:160};addPropertyControls(FramerrVlgJvCvp,{variant:{options:[\"PjgoZbsss\",\"E9oil2G0s\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},dLD89mAUk:{title:\"Link\",type:ControlType.Link},vzE39t44g:{__defaultAssetReference:\"data:framer/asset-reference,KzmEYJoH5H584cEIyvf1sjE69A.svg?originalFilename=svgviewer-output.svg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerrVlgJvCvp,[{explicitInter:true,fonts:[{family:\"JetBrains Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tjOFmUsaaDhw.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrVlgJvCvp\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"dLD89mAUk\\\":\\\"link\\\",\\\"vzE39t44g\\\":\\\"image\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"E9oil2G0s\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"160\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rVlgJvCvp.map", "// Generated by Framer (78001ac)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"jQVZwIVqa\",\"pnqJ89umZ\"];const variantClassNames={jQVZwIVqa:\"framer-v-16wkwtj\",pnqJ89umZ:\"framer-v-14beyb4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Close:\"pnqJ89umZ\",Menu:\"jQVZwIVqa\"};const getProps=({height,id,tap,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:\"jQVZwIVqa\",XKaY3MrGu:tap!==null&&tap!==void 0?tap:props.XKaY3MrGu};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,XKaY3MrGu,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"jQVZwIVqa\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap16vb438=activeVariantCallback(async(...args)=>{if(XKaY3MrGu){const res=await XKaY3MrGu(...args);if(res===false)return false;}});const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-6zsnd\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-16wkwtj\",className),\"data-framer-name\":\"Menu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jQVZwIVqa\",onTap:onTap16vb438,ref:ref,style:{...style},...addPropertyOverrides({pnqJ89umZ:{\"data-framer-name\":\"Close\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1c0e6pn\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"OSd905m9B\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{pnqJ89umZ:{rotate:-45}}}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-18wjjjq\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"h3dqbahpY\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{pnqJ89umZ:{rotate:45}}})]})})})});});const css=['.framer-6zsnd [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-6zsnd .framer-1c35zs9 { display: block; }\",\".framer-6zsnd .framer-16wkwtj { cursor: pointer; height: 44px; overflow: hidden; position: relative; width: 44px; }\",\".framer-6zsnd .framer-1c0e6pn { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: transform; }\",\".framer-6zsnd .framer-18wjjjq { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: transform; }\",\".framer-6zsnd.framer-v-14beyb4 .framer-16wkwtj { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 44px); }\",\".framer-6zsnd.framer-v-14beyb4 .framer-1c0e6pn, .framer-6zsnd.framer-v-14beyb4 .framer-18wjjjq { top: calc(50.00000000000002% - 2px / 2); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 44\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"pnqJ89umZ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"XKaY3MrGu\":\"tap\"}\n */ const FramerWlmbTCjh8=withCSS(Component,css,\"framer-6zsnd\");export default FramerWlmbTCjh8;FramerWlmbTCjh8.displayName=\"Icon\";FramerWlmbTCjh8.defaultProps={height:44,width:44};addPropertyControls(FramerWlmbTCjh8,{variant:{options:[\"jQVZwIVqa\",\"pnqJ89umZ\"],optionTitles:[\"Menu\",\"Close\"],title:\"Variant\",type:ControlType.Enum},XKaY3MrGu:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerWlmbTCjh8,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWlmbTCjh8\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"44\",\"framerVariables\":\"{\\\"XKaY3MrGu\\\":\\\"tap\\\"}\",\"framerIntrinsicWidth\":\"44\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pnqJ89umZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WlmbTCjh8.map", "// Generated by Framer (92d6359)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withRightClick}from\"https://framerusercontent.com/modules/Y4bvtS2ZNzzsd1ntJRU5/wtjEIeGb6rBLXW3RWxrS/Right_Click_Menu.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/nTdnJR1CVsIgCYdGeUsd/G9cuTeanYR1DChWrCdvX/UTkM4G1fU.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/j9e6n9gTlL9LC9kAtuUD/CVsLJ7pVcbvf9IogVpx9/VZ6QgJJCI.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/4sNwCiD2IjoTOiiQekll/SPY3toudXnh8oQB8rHhT/y9xoNLJv9.js\";import ButtonGhost from\"https://framerusercontent.com/modules/byWx4Ze5H8YmWLkRUqJd/rhN0k6nLMsvyGLCSuKtv/fPyW6arUA.js\";import Logo,*as LogoInfo from\"https://framerusercontent.com/modules/ctnu5DgdXbY96Gb7CGtO/BJlhNYfb6o3nO0tSggML/rVlgJvCvp.js\";import Icon from\"https://framerusercontent.com/modules/7JkmywsBpVg8moXaxvIU/NKxOR1FinuQj4SV8Q3nL/WlmbTCjh8.js\";const LogoFonts=getFonts(Logo);const LogoWithRightClickWithMappedReactPropsedqc34=withMappedReactProps(withRightClick(Logo),LogoInfo);const IconFonts=getFonts(Icon);const ButtonGhostFonts=getFonts(ButtonGhost);const cycleOrder=[\"q1fInFdqd\",\"tfw_WUbyS\",\"x4yrG1T26\",\"mJu45dGED\"];const serializationHash=\"framer-5imZq\";const variantClassNames={mJu45dGED:\"framer-v-78n493\",q1fInFdqd:\"framer-v-xve2is\",tfw_WUbyS:\"framer-v-qllj3r\",x4yrG1T26:\"framer-v-1y0fd9y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={duration:0,type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition3={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition4={damping:50,delay:.1,mass:1,stiffness:400,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 transition5={damping:50,delay:.15,mass:1,stiffness:400,type:\"spring\"};const transition6={damping:50,delay:.4,mass:1,stiffness:400,type:\"spring\"};const transition7={damping:50,delay:.25,mass:1,stiffness:400,type:\"spring\"};const transition8={damping:50,delay:.45,mass:1,stiffness:400,type:\"spring\"};const transition9={damping:50,delay:.3,mass:1,stiffness:400,type:\"spring\"};const transition10={damping:50,delay:.5,mass:1,stiffness:400,type:\"spring\"};const transition11={damping:50,delay:.35,mass:1,stiffness:400,type:\"spring\"};const transition12={damping:50,delay:.2,mass:1,stiffness:400,type:\"spring\"};const transition13={damping:50,delay:0,mass:1,stiffness:400,type:\"spring\"};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone Open\":\"mJu45dGED\",Desketop:\"q1fInFdqd\",Phone:\"x4yrG1T26\",Tablet:\"tfw_WUbyS\"};const getProps=({height,id,image,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,EjPHcJb49:link!==null&&link!==void 0?link:props.EjPHcJb49,HeSRgcSbz:image!==null&&image!==void 0?image:props.HeSRgcSbz,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"q1fInFdqd\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,EjPHcJb49,HeSRgcSbz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"q1fInFdqd\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const tapz22v4v=activeVariantCallback(async(...args)=>{setVariant(\"mJu45dGED\");});const tap1oripkn=activeVariantCallback(async(...args)=>{setVariant(\"x4yrG1T26\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"x4yrG1T26\",\"mJu45dGED\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"x4yrG1T26\",\"mJu45dGED\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"mJu45dGED\")return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"mJu45dGED\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"x4yrG1T26\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({mJu45dGED:{value:transition2},x4yrG1T26:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-xve2is\",className,classNames),\"data-framer-name\":\"Desketop\",layoutDependency:layoutDependency,layoutId:\"q1fInFdqd\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",...style},tabIndex:5,variants:{mJu45dGED:{backgroundColor:\"rgba(4, 5, 27, 0.97)\"}},...addPropertyOverrides({mJu45dGED:{\"data-framer-name\":\"Phone Open\",tabIndex:undefined},tfw_WUbyS:{\"data-framer-name\":\"Tablet\"},x4yrG1T26:{\"data-framer-name\":\"Phone\",tabIndex:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u64boq\",layoutDependency:layoutDependency,layoutId:\"URmubxBVU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16nfgj6\",layoutDependency:layoutDependency,layoutId:\"os0qsecHU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bbb54j\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"am2Xi3yQE\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"160px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(24+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||88)-48-40)/2)+0+0+-10+14,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sur06p-container\",layoutDependency:layoutDependency,layoutId:\"DJnOEAkgj-container\",children:/*#__PURE__*/_jsx(LogoWithRightClickWithMappedReactPropsedqc34,{dLD89mAUk:EjPHcJb49,height:\"100%\",id:\"DJnOEAkgj\",layoutId:\"DJnOEAkgj\",style:{height:\"100%\",width:\"100%\"},variant:\"PjgoZbsss\",vzE39t44g:toResponsiveImage(HeSRgcSbz),width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m4fkd9\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"LexMwFrPU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://build.bewater.xyz\",nodeId:\"Ubofwgx0o\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11klcyo\",\"data-styles-preset\":\"y9xoNLJv9\",children:\"Hackathon\"})})})}),className:\"framer-1yfsbbm\",fonts:[\"GF;JetBrains Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"Ubofwgx0o\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"v7kAhhD4y\"},nodeId:\"H_ET3yeFl\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11klcyo\",\"data-styles-preset\":\"y9xoNLJv9\",children:\"Venture Studio\"})})})}),className:\"framer-1rkxett\",fonts:[\"GF;JetBrains Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"H_ET3yeFl\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 204, 204))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://builderboard.bewater.xyz\",nodeId:\"X9YajqJI6\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11klcyo\",\"data-styles-preset\":\"y9xoNLJv9\",children:\"Builderboard\"})})})}),className:\"framer-cxlthu\",fonts:[\"GF;JetBrains Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"X9YajqJI6\",style:{\"--extracted-r6o4lv\":\"rgb(0, 204, 204)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 204, 204))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://build.bewater.xyz/host\",nodeId:\"GqfW2JpUK\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11klcyo\",\"data-styles-preset\":\"y9xoNLJv9\",children:\"Host\"})})})}),className:\"framer-4qwmzx\",fonts:[\"GF;JetBrains Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"GqfW2JpUK\",style:{\"--extracted-r6o4lv\":\"rgb(0, 204, 204)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nbgv0d-container\",\"data-framer-name\":\"Menu Icon\",layoutDependency:layoutDependency,layoutId:\"mrBfhMJ5K-container\",name:\"Menu Icon\",children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"mrBfhMJ5K\",layoutId:\"mrBfhMJ5K\",name:\"Menu Icon\",variant:\"jQVZwIVqa\",width:\"100%\",...addPropertyOverrides({mJu45dGED:{tap:tap1oripkn,variant:\"pnqJ89umZ\"},x4yrG1T26:{tap:tapz22v4v}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-h77n4y\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"WjNRtk4gw\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7l01ok-container\",layoutDependency:layoutDependency,layoutId:\"CeTKQmOYl-container\",children:/*#__PURE__*/_jsx(ButtonGhost,{height:\"100%\",id:\"CeTKQmOYl\",kHdlDsOfl:\"Enter\",layoutId:\"CeTKQmOYl\",UVd26C5xf:\"build.bewater.xyz/sign-in\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pp377c\",layoutDependency:layoutDependency,layoutId:\"hC7_1j3YZ\",children:isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,pixelHeight:600,pixelWidth:600,src:\"https://framerusercontent.com/images/wBuzRQaxvW1aJKw9NcmOMoAvexA.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/wBuzRQaxvW1aJKw9NcmOMoAvexA.svg?scale-down-to=512 512w,https://framerusercontent.com/images/wBuzRQaxvW1aJKw9NcmOMoAvexA.svg 600w\"},className:\"framer-mw65d5\",\"data-framer-name\":\"logo\",layoutDependency:layoutDependency,layoutId:\"fpQtMG4K3\",...addPropertyOverrides({mJu45dGED:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:202,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+0+0+4),pixelHeight:150,pixelWidth:202,src:\"https://framerusercontent.com/images/tPARp861sam7uMlfJzybvdYO5c.svg\"}},x4yrG1T26:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:300,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+0+0+4),pixelHeight:150,pixelWidth:202,src:\"https://framerusercontent.com/images/tPARp861sam7uMlfJzybvdYO5c.svg\"}}},baseVariant,gestureVariant)})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({mJu45dGED:{value:transition3},x4yrG1T26:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1053h4o\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"y7cpM8N4r\",children:[/*#__PURE__*/_jsx(Transition,{value:transition4,...addPropertyOverrides({x4yrG1T26:{value:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Jhc2VtZW50IEdyb3Rlc3F1ZSBCb2xk\",\"--framer-font-family\":'\"Basement Grotesque Bold\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://build.bewater.xyz/campaigns\",nodeId:\"AIxcd7wN9\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11klcyo\",\"data-styles-preset\":\"y9xoNLJv9\",children:\"Campaigns\"})})})}),className:\"framer-1l2bi0n\",fonts:[\"CUSTOM;Basement Grotesque Bold\"],layoutDependency:layoutDependency,layoutId:\"AIxcd7wN9\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1},variants:{x4yrG1T26:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mJu45dGED:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Jhc2VtZW50IEdyb3Rlc3F1ZSBCb2xk\",\"--framer-font-family\":'\"Basement Grotesque Bold\", \"Basement Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://build.bewater.xyz\",nodeId:\"AIxcd7wN9\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11klcyo\",\"data-styles-preset\":\"y9xoNLJv9\",children:\"Hackathon\"})})})})}},baseVariant,gestureVariant)})}),isDisplayed2()&&/*#__PURE__*/_jsx(Transition,{value:transition4,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Jhc2VtZW50IEdyb3Rlc3F1ZSBCb2xk\",\"--framer-font-family\":'\"Basement Grotesque Bold\", \"Basement Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.bewater.xyz/guide/\",nodeId:\"eDQQGW1D0\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11klcyo\",\"data-styles-preset\":\"y9xoNLJv9\",children:\"Docs\"})})})}),className:\"framer-z9k41a\",fonts:[\"CUSTOM;Basement Grotesque Bold\"],layoutDependency:layoutDependency,layoutId:\"eDQQGW1D0\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(Transition,{value:transition4,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Jhc2VtZW50IEdyb3Rlc3F1ZSBCb2xk\",\"--framer-font-family\":'\"Basement Grotesque Bold\", \"Basement Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"v7kAhhD4y\"},nodeId:\"q5KwHlgDs\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11klcyo\",\"data-styles-preset\":\"y9xoNLJv9\",children:\"Venture Studio\"})})})}),className:\"framer-1t11aib\",fonts:[\"CUSTOM;Basement Grotesque Bold\"],layoutDependency:layoutDependency,layoutId:\"q5KwHlgDs\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{value:transition4,...addPropertyOverrides({mJu45dGED:{value:transition5},x4yrG1T26:{value:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Jhc2VtZW50IEdyb3Rlc3F1ZSBCb2xk\",\"--framer-font-family\":'\"Basement Grotesque Bold\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://host.bewater.xyz/\",nodeId:\"F6tGgOiOH\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1cv55ra\",\"data-styles-preset\":\"VZ6QgJJCI\",children:\"Beclome a host\"})})})}),className:\"framer-1an5mi2\",fonts:[\"CUSTOM;Basement Grotesque Bold\"],layoutDependency:layoutDependency,layoutId:\"F6tGgOiOH\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1},variants:{x4yrG1T26:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mJu45dGED:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Jhc2VtZW50IEdyb3Rlc3F1ZSBCb2xk\",\"--framer-font-family\":'\"Basement Grotesque Bold\", \"Basement Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://builderboard.bewater.xyz\",nodeId:\"F6tGgOiOH\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11klcyo\",\"data-styles-preset\":\"y9xoNLJv9\",children:\"Builderboard\"})})})})}},baseVariant,gestureVariant)})}),isDisplayed3()&&/*#__PURE__*/_jsx(Transition,{value:transition5,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Jhc2VtZW50IEdyb3Rlc3F1ZSBCb2xk\",\"--framer-font-family\":'\"Basement Grotesque Bold\", \"Basement Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://host.bewater.xyz/\",nodeId:\"fYkKsL0WR\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11klcyo\",\"data-styles-preset\":\"y9xoNLJv9\",children:\"Host\"})})})}),className:\"framer-1n59rnv\",fonts:[\"CUSTOM;Basement Grotesque Bold\"],layoutDependency:layoutDependency,layoutId:\"fYkKsL0WR\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{value:transition6,...addPropertyOverrides({mJu45dGED:{value:transition7},x4yrG1T26:{value:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tNTAw\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-font-size\":\"15px\",\"--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:/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/bewaterofficial\",nodeId:\"IfBhG9lsf\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sgkpn3\",\"data-styles-preset\":\"UTkM4G1fU\",children:\"Twitter\"})})})}),className:\"framer-1o0atuj\",fonts:[\"GF;JetBrains Mono-500\"],layoutDependency:layoutDependency,layoutId:\"IfBhG9lsf\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1},variants:{x4yrG1T26:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{value:transition8,...addPropertyOverrides({mJu45dGED:{value:transition9},x4yrG1T26:{value:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tNTAw\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-font-size\":\"15px\",\"--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:/*#__PURE__*/_jsx(Link,{href:\"https://discord.gg/bewater\",nodeId:\"uPPKdwOEn\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sgkpn3\",\"data-styles-preset\":\"UTkM4G1fU\",children:\"Discord\"})})})}),className:\"framer-9td9ew\",fonts:[\"GF;JetBrains Mono-500\"],layoutDependency:layoutDependency,layoutId:\"uPPKdwOEn\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1},variants:{x4yrG1T26:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mJu45dGED:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tNTAw\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-font-size\":\"15px\",\"--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:/*#__PURE__*/_jsx(Link,{href:\"https://discord.gg/gvsNjn8FbS\",nodeId:\"uPPKdwOEn\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sgkpn3\",\"data-styles-preset\":\"UTkM4G1fU\",children:\"Discord\"})})})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition10,...addPropertyOverrides({mJu45dGED:{value:transition11},x4yrG1T26:{value:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tNTAw\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-font-size\":\"15px\",\"--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:/*#__PURE__*/_jsx(Link,{href:\"https://t.me/bewaterxyz\",nodeId:\"s30l6mH6o\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sgkpn3\",\"data-styles-preset\":\"UTkM4G1fU\",children:\"Telegram\"})})})}),className:\"framer-1e49kql\",fonts:[\"GF;JetBrains Mono-500\"],layoutDependency:layoutDependency,layoutId:\"s30l6mH6o\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1},variants:{x4yrG1T26:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{value:transition11,...addPropertyOverrides({mJu45dGED:{value:transition12},x4yrG1T26:{value:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1emxph2\",\"data-framer-name\":\"Separator\",layoutDependency:layoutDependency,layoutId:\"xxDv6yAkj\",style:{opacity:1},variants:{x4yrG1T26:{opacity:0}},children:/*#__PURE__*/_jsx(Transition,{value:transition11,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2k61z\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"f822tTWzl\",style:{backgroundColor:\"rgba(255, 255, 255, 0.8)\"},variants:{mJu45dGED:{backgroundColor:\"rgba(255, 255, 255, 0.2)\"}}})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Transition,{value:transition10,...addPropertyOverrides({x4yrG1T26:{value:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tNTAw\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-font-size\":\"15px\",\"--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:/*#__PURE__*/_jsx(Link,{href:\"https://blog.bewater.xyz/\",nodeId:\"Q6udFhG3P\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sgkpn3\",\"data-styles-preset\":\"UTkM4G1fU\",children:\"Blog\"})})})}),className:\"framer-wy4div\",fonts:[\"GF;JetBrains Mono-500\"],layoutDependency:layoutDependency,layoutId:\"Q6udFhG3P\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1},variants:{x4yrG1T26:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{value:transition6,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tNTAw\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-font-size\":\"15px\",\"--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:/*#__PURE__*/_jsx(Link,{href:\"https://blog.bewater.xyz/\",nodeId:\"bHhsCm7yN\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sgkpn3\",\"data-styles-preset\":\"UTkM4G1fU\",children:\"Blog\"})})})}),className:\"framer-jvx4sl\",fonts:[\"GF;JetBrains Mono-500\"],layoutDependency:layoutDependency,layoutId:\"bHhsCm7yN\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mJu45dGED:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tNTAw\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-font-size\":\"15px\",\"--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:/*#__PURE__*/_jsx(Link,{href:\"https://medium.com/@support_25102\",nodeId:\"bHhsCm7yN\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sgkpn3\",\"data-styles-preset\":\"UTkM4G1fU\",children:\"Medium\"})})})})}},baseVariant,gestureVariant)})})]})}),isDisplayed4()&&/*#__PURE__*/_jsx(Transition,{value:transition13,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vgseks\",\"data-framer-name\":\"Backdrop\",layoutDependency:layoutDependency,layoutId:\"P99GN_4HL\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0.5)\",opacity:1},variants:{x4yrG1T26:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",opacity:0}},...addPropertyOverrides({x4yrG1T26:{\"data-border\":true}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5imZq.framer-1m3ylee, .framer-5imZq .framer-1m3ylee { display: block; }\",\".framer-5imZq.framer-xve2is { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 24px 32px 24px 32px; position: relative; width: 1280px; }\",\".framer-5imZq .framer-u64boq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-5imZq .framer-16nfgj6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 40px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5imZq .framer-bbb54j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: 60px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-5imZq .framer-1sur06p-container { flex: none; height: 32px; position: relative; width: 160px; z-index: 10; }\",\".framer-5imZq .framer-1m4fkd9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 40px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-5imZq .framer-1yfsbbm, .framer-5imZq .framer-1rkxett, .framer-5imZq .framer-cxlthu, .framer-5imZq .framer-4qwmzx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5imZq .framer-nbgv0d-container, .framer-5imZq .framer-7l01ok-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-5imZq .framer-h77n4y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-5imZq .framer-1pp377c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 32px; }\",\".framer-5imZq .framer-mw65d5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 32px; }\",\".framer-5imZq .framer-1053h4o { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 96px 16px 96px 16px; position: relative; width: 1px; z-index: 2; }\",\".framer-5imZq .framer-1l2bi0n, .framer-5imZq .framer-1o0atuj, .framer-5imZq .framer-9td9ew, .framer-5imZq .framer-1e49kql, .framer-5imZq .framer-wy4div, .framer-5imZq .framer-jvx4sl { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5imZq .framer-z9k41a, .framer-5imZq .framer-1t11aib, .framer-5imZq .framer-1an5mi2, .framer-5imZq .framer-1n59rnv { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-5imZq .framer-1emxph2 { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 64px 0px 64px 0px; position: relative; user-select: none; width: 100%; }\",\".framer-5imZq .framer-2k61z { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 1px; }\",\".framer-5imZq .framer-1vgseks { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; right: 0px; top: calc(50.00000000000002% - 100% / 2); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5imZq.framer-xve2is, .framer-5imZq .framer-u64boq, .framer-5imZq .framer-bbb54j, .framer-5imZq .framer-1m4fkd9, .framer-5imZq .framer-h77n4y, .framer-5imZq .framer-1pp377c, .framer-5imZq .framer-1053h4o, .framer-5imZq .framer-1emxph2 { gap: 0px; } .framer-5imZq.framer-xve2is > *, .framer-5imZq .framer-h77n4y > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-5imZq.framer-xve2is > :first-child, .framer-5imZq .framer-bbb54j > :first-child, .framer-5imZq .framer-1m4fkd9 > :first-child, .framer-5imZq .framer-h77n4y > :first-child, .framer-5imZq .framer-1pp377c > :first-child, .framer-5imZq .framer-1emxph2 > :first-child { margin-left: 0px; } .framer-5imZq.framer-xve2is > :last-child, .framer-5imZq .framer-bbb54j > :last-child, .framer-5imZq .framer-1m4fkd9 > :last-child, .framer-5imZq .framer-h77n4y > :last-child, .framer-5imZq .framer-1pp377c > :last-child, .framer-5imZq .framer-1emxph2 > :last-child { margin-right: 0px; } .framer-5imZq .framer-u64boq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5imZq .framer-u64boq > :first-child, .framer-5imZq .framer-1053h4o > :first-child { margin-top: 0px; } .framer-5imZq .framer-u64boq > :last-child, .framer-5imZq .framer-1053h4o > :last-child { margin-bottom: 0px; } .framer-5imZq .framer-bbb54j > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-5imZq .framer-1m4fkd9 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-5imZq .framer-1pp377c > *, .framer-5imZq .framer-1emxph2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5imZq .framer-1053h4o > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-5imZq.framer-v-qllj3r.framer-xve2is { width: 810px; }\",\".framer-5imZq.framer-v-qllj3r .framer-bbb54j { gap: 20px; }\",\".framer-5imZq.framer-v-qllj3r .framer-1m4fkd9 { gap: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5imZq.framer-v-qllj3r .framer-bbb54j, .framer-5imZq.framer-v-qllj3r .framer-1m4fkd9 { gap: 0px; } .framer-5imZq.framer-v-qllj3r .framer-bbb54j > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-5imZq.framer-v-qllj3r .framer-bbb54j > :first-child, .framer-5imZq.framer-v-qllj3r .framer-1m4fkd9 > :first-child { margin-left: 0px; } .framer-5imZq.framer-v-qllj3r .framer-bbb54j > :last-child, .framer-5imZq.framer-v-qllj3r .framer-1m4fkd9 > :last-child { margin-right: 0px; } .framer-5imZq.framer-v-qllj3r .framer-1m4fkd9 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-5imZq.framer-v-1y0fd9y.framer-xve2is { flex-direction: column; height: 72px; justify-content: flex-start; overflow: hidden; padding: 16px; width: 390px; }\",\".framer-5imZq.framer-v-1y0fd9y .framer-u64boq, .framer-5imZq.framer-v-78n493 .framer-u64boq { flex: none; order: 0; width: 100%; z-index: 10; }\",\".framer-5imZq.framer-v-1y0fd9y .framer-16nfgj6 { height: min-content; order: 0; z-index: 3; }\",\".framer-5imZq.framer-v-1y0fd9y .framer-bbb54j, .framer-5imZq.framer-v-78n493 .framer-bbb54j { height: 40px; }\",\".framer-5imZq.framer-v-1y0fd9y .framer-1pp377c { bottom: 0px; height: unset; left: calc(50.00000000000002% - 100% / 2); order: 1; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-5imZq.framer-v-1y0fd9y .framer-mw65d5 { aspect-ratio: 1.375 / 1; height: 32px; width: var(--framer-aspect-ratio-supported, 44px); }\",\".framer-5imZq.framer-v-1y0fd9y .framer-1053h4o { flex: none; order: 1; padding: 96px 16px 96px 32px; pointer-events: none; width: 100%; }\",\".framer-5imZq.framer-v-1y0fd9y .framer-1l2bi0n, .framer-5imZq.framer-v-78n493 .framer-1l2bi0n { order: 0; white-space: pre; width: auto; }\",\".framer-5imZq.framer-v-1y0fd9y .framer-z9k41a { order: 2; }\",\".framer-5imZq.framer-v-1y0fd9y .framer-1an5mi2, .framer-5imZq.framer-v-78n493 .framer-1an5mi2 { order: 4; }\",\".framer-5imZq.framer-v-1y0fd9y .framer-1o0atuj, .framer-5imZq.framer-v-78n493 .framer-1o0atuj { order: 7; }\",\".framer-5imZq.framer-v-1y0fd9y .framer-9td9ew, .framer-5imZq.framer-v-78n493 .framer-9td9ew { order: 8; }\",\".framer-5imZq.framer-v-1y0fd9y .framer-1e49kql, .framer-5imZq.framer-v-78n493 .framer-1e49kql { order: 9; }\",\".framer-5imZq.framer-v-1y0fd9y .framer-1emxph2, .framer-5imZq.framer-v-78n493 .framer-1emxph2 { order: 6; }\",\".framer-5imZq.framer-v-1y0fd9y .framer-wy4div { order: 10; }\",\".framer-5imZq.framer-v-1y0fd9y .framer-jvx4sl, .framer-5imZq.framer-v-78n493 .framer-jvx4sl { order: 11; }\",\".framer-5imZq.framer-v-1y0fd9y .framer-1vgseks { height: calc(var(--framer-viewport-height, 100vh) * 1); order: 2; pointer-events: none; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5imZq.framer-v-1y0fd9y.framer-xve2is { gap: 0px; } .framer-5imZq.framer-v-1y0fd9y.framer-xve2is > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5imZq.framer-v-1y0fd9y.framer-xve2is > :first-child { margin-top: 0px; } .framer-5imZq.framer-v-1y0fd9y.framer-xve2is > :last-child { margin-bottom: 0px; } }\",\".framer-5imZq.framer-v-78n493.framer-xve2is { flex-direction: column; justify-content: flex-start; min-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: hidden; padding: 16px; width: 390px; }\",\".framer-5imZq.framer-v-78n493 .framer-16nfgj6 { height: min-content; z-index: 3; }\",\".framer-5imZq.framer-v-78n493 .framer-1pp377c { bottom: 0px; height: unset; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-5imZq.framer-v-78n493 .framer-mw65d5 { aspect-ratio: 1.375 / 1; width: 44px; }\",\".framer-5imZq.framer-v-78n493 .framer-1053h4o { flex: none; order: 1; width: 100%; }\",\".framer-5imZq.framer-v-78n493 .framer-1t11aib { order: 1; }\",\".framer-5imZq.framer-v-78n493 .framer-1n59rnv { order: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5imZq.framer-v-78n493.framer-xve2is { gap: 0px; } .framer-5imZq.framer-v-78n493.framer-xve2is > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5imZq.framer-v-78n493.framer-xve2is > :first-child { margin-top: 0px; } .framer-5imZq.framer-v-78n493.framer-xve2is > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-5imZq[data-border=\"true\"]::after, .framer-5imZq [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 88\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tfw_WUbyS\":{\"layout\":[\"fixed\",\"auto\"]},\"x4yrG1T26\":{\"layout\":[\"fixed\",\"fixed\"]},\"mJu45dGED\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]}}}\n * @framerVariables {\"EjPHcJb49\":\"link\",\"HeSRgcSbz\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraKVKCrwGl=withCSS(Component,css,\"framer-5imZq\");export default FrameraKVKCrwGl;FrameraKVKCrwGl.displayName=\"Navbar\";FrameraKVKCrwGl.defaultProps={height:88,width:1280};addPropertyControls(FrameraKVKCrwGl,{variant:{options:[\"q1fInFdqd\",\"tfw_WUbyS\",\"x4yrG1T26\",\"mJu45dGED\"],optionTitles:[\"Desketop\",\"Tablet\",\"Phone\",\"Phone Open\"],title:\"Variant\",type:ControlType.Enum},EjPHcJb49:{title:\"Link\",type:ControlType.Link},HeSRgcSbz:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FrameraKVKCrwGl,[{explicitInter:true,fonts:[{family:\"JetBrains Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjOFmUsaaDhw.woff2\",weight:\"400\"},{family:\"Basement Grotesque Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/Vgp0Lpy80mqteGsK3bdoaPsjpPw.otf\"},{family:\"JetBrains Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxjOFmUsaaDhw.woff2\",weight:\"500\"}]},...LogoFonts,...IconFonts,...ButtonGhostFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraKVKCrwGl\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"EjPHcJb49\\\":\\\"link\\\",\\\"HeSRgcSbz\\\":\\\"image\\\"}\",\"framerIntrinsicHeight\":\"88\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tfw_WUbyS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x4yrG1T26\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mJu45dGED\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aKVKCrwGl.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", "import { useRef } from \"react\";\n/**\n * Creates a constant value over the lifecycle of a component.\n *\n * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer\n * a guarantee that it won't re-run for performance reasons later on. By using `useConstant`\n * you can ensure that initialisers don't execute twice or more.\n */ export function useConstant(init) {\n    const ref = useRef(null);\n    if (ref.current === null) {\n        ref.current = init();\n    }\n    return ref.current;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useConstant\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useConstant.map", "// @ts-ignore\nimport{fontStore}from\"framer\";import{useEffect}from\"react\";import{fontStack}from\"https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js\";const fontWeights={100:\"Thin\",200:\"Extra-light\",300:\"Light\",400:\"Regular\",500:\"Medium\",600:\"Semi-bold\",700:\"Bold\",800:\"Extra-bold\",900:\"Black\"};export function useFontControls(props){const{fontFamily=\"Inter\",fontSize=16,fontWeight=400,font=false}=props;const fontWeightName=fontWeights[fontWeight];const customFontStack=`\"${fontFamily} ${fontWeightName}\", \"${fontFamily}\", ${fontStack}`;const fontFamilyStyle=fontFamily?{fontSize,fontWeight,fontFamily:customFontStack}:{fontSize,fontWeight};const fetchCustomFonts=async()=>{await fontStore.loadWebFontsFromSelectors([`CUSTOM;${fontFamily}`,`CUSTOM;${fontFamily} ${fontWeightName}`,`GF;${fontFamily}-${fontWeightName.toLowerCase()}`,]).catch(e=>console.error(e));};useEffect(()=>{if(font)fetchCustomFonts();},[font,fontFamily,fontWeight]);return fontFamilyStyle;}\nexport const __FramerMetadata__ = {\"exports\":{\"useFontControls\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useFontControls.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles,usePadding,useRadius,paddingControl,borderRadiusControl,fontControls,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useCallback,useMemo,useState}from\"react\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};/**\n * FORMSPARK\n *\n * @framerIntrinsicWidth 550\n * @framerIntrinsicHeight 290\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ const FormSpark=withCSS(function FormSpark({formId,withName,nameField:name,withEmail,email,withMessage,message,layout,inputs,button,style,gap,onSubmit,...props}){const[nameValue,setName]=useState(name===null||name===void 0?void 0:name.value);const[emailValue,setEmail]=useState(email===null||email===void 0?void 0:email.value);const[messageValue,setMessage]=useState(message===null||message===void 0?void 0:message.value);const[isNameError,setNameError]=useState(false);const[isEmailError,setEmailError]=useState(false);const[isMessageError,setMessageError]=useState(false);const[isLoading,setLoading]=useState(false);const[isSuccess,setSuccess]=useState(false);const isCanvas=useMemo(()=>{return RenderTarget.current()===RenderTarget.canvas;},[]);const gridTemplateRows=useMemo(()=>{const rows=[];if(withName||withMessage){rows.push(\"max-content\");}if(withMessage){rows.push(\"1fr\");}return[...rows,\"max-content\"].join(\" \");},[withName,withEmail,withMessage]);const gridTemplateColumns=useMemo(()=>{const cols=[];if((withName&&!withEmail||withEmail&&!withName)&&!withMessage&&layout===\"horizontal\"){return\"1fr max-content\";}return\"1fr\";},[withName,withEmail,withMessage,layout]);const{fontFamily,fontSize,fontWeight}=useFontControls(props);const borderRadius=useRadius(props);const paddingValue=usePadding(props);const validateForm=useCallback(()=>{let error=false;setNameError(false);setEmailError(false);setMessageError(false);if(withName&&!nameValue){setNameError(true);error=true;}if(withEmail&&(!emailValue||!validateEmail(emailValue))){setEmailError(true);error=true;}if(withMessage&&!messageValue){setMessageError(true);error=true;}return error;},[validateEmail,withName,withEmail,withMessage,nameValue,emailValue,messageValue,]);const handleSubmit=useCallback(event=>{setLoading(true);event.preventDefault();if(validateForm()){setLoading(false);}else{const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formId}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{setSuccess(true);onSubmit();}).catch(()=>setLoading(false));}},[formId,onSubmit,validateForm]);const handleNameChange=useCallback(event=>{setNameError(false);setName(event.target.value);},[]);const handleEmailChange=useCallback(event=>{setEmailError(false);setEmail(event.target.value);},[]);const handleMessageChange=useCallback(event=>{setMessageError(false);setMessage(event.target.value);},[]);return /*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,flexDirection:\"column\",\"--framer-formspark-placeholder-color\":inputs.placeholderColor},children:isSuccess?/*#__PURE__*/ _jsx(motion.div,{style:{height:\"60px\",width:\"60px\",background:button.fill,color:button.color,borderRadius:\"50%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},initial:{scale:0},animate:{scale:1},transition:{duration:.3},children:/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"28\",height:\"28\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M 2 14 L 10 22 L 26 6\",fill:\"transparent\",strokeWidth:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\"})})}):/*#__PURE__*/ _jsxs(\"form\",{style:{display:\"grid\",gridTemplateRows,gridTemplateColumns,gap,width:\"100%\",height:\"100%\"},onSubmit:handleSubmit,method:\"POST\",children:[(withName||withEmail)&&/*#__PURE__*/ _jsxs(\"div\",{style:{width:\"100%\",display:\"grid\",gridAutoFlow:layout===\"horizontal\"?\"column\":\"row\",gap},children:[withName&&/*#__PURE__*/ _jsx(\"input\",{className:\"framer-formspark-input\",type:\"text\",name:\"name\",placeholder:name.placeholder,value:isCanvas?name.value:nameValue,onChange:handleNameChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isNameError?inputs.error:\"transparent\"}`}}),withEmail&&/*#__PURE__*/ _jsx(\"input\",{className:\"framer-formspark-input\",type:\"email\",name:\"email\",placeholder:email.placeholder,value:isCanvas?email.value:emailValue,onChange:handleEmailChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isEmailError?inputs.error:\"transparent\"}`}})]}),withMessage&&/*#__PURE__*/ _jsx(\"textarea\",{className:\"framer-formspark-input\",placeholder:message.placeholder,name:\"message\",value:isCanvas?message.value:messageValue,onChange:handleMessageChange,style:{...defaultStyle,minHeight:0,padding:paddingValue,resize:\"vertical\",borderRadius,background:inputs.fill,fontFamily,fontWeight,fontSize,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isMessageError?inputs.error:\"transparent\"}`}}),/*#__PURE__*/ _jsxs(\"div\",{children:[/*#__PURE__*/ _jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,borderRadius,padding:paddingValue,fontFamily,fontWeight:button.fontWeight,fontSize,background:button.fill,cursor:\"pointer\",color:button.color,zIndex:1},transition:{type:\"ease\",duration:.3},whileHover:{opacity:.8}}),isLoading&&/*#__PURE__*/ _jsx(\"div\",{style:{borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",left:0,top:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/ _jsx(motion.div,{style:{height:16,width:16},initial:{rotate:0},animate:{rotate:360},transition:{duration:2,repeat:Infinity},children:/*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})})]})]})});},[\".framer-formspark-input::placeholder { color: var(--framer-formspark-placeholder-color) !important; }\",]);FormSpark.defaultProps={fontSize:16,fontFamily:\"Inter\",fontWeight:400,padding:15,paddingTop:15,paddingBottom:15,paddingLeft:15,paddingRight:15,borderRadius:8,topLeftRadius:8,topRightRadius:8,bottomRightRadius:8,bottomLeftRadius:8,gap:15,nameField:{value:undefined,placeholder:\"Name\"},email:{value:undefined,placeholder:\"Email\"},message:{value:undefined,placeholder:\"Message\"},inputs:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},layout:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},button:{label:\"Sign Up\",fontWeight:600,fill:\"#000\",color:\"#FFF\"}};addPropertyControls(FormSpark,{formId:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,description:\"Create a [FormSpark](https://formspark.io/) account, add a new form and copy its ID. [Learn more\u2026](https://www.framer.com/sites/integrations/formspark/)\"},withName:{title:\"Name\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},nameField:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Name\"},value:{title:\"Value\",type:ControlType.String,defaultValue:\"\"}},hidden:props=>!props.withName},withEmail:{title:\"Email\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},email:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Email\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withEmail},withMessage:{title:\"Message\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},message:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Message\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withMessage},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,defaultValue:\"horizontal\"},inputs:{title:\"Inputs\",type:ControlType.Object,controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},placeholderColor:{title:\"Placeholder\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.5)\"},error:{title:\"Error\",type:ControlType.Color,defaultValue:\"#EE4444\"}}},button:{title:\"Button\",type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String,defaultValue:\"Sign Up\"},fontWeight:{...fontControls.fontWeight,defaultValue:600},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"}}},...fontControls,fontSize:{title:\"Font Size\",type:ControlType.Number,displayStepper:true,defaultValue:16},...paddingControl,...borderRadiusControl,gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0},onSubmit:{type:ControlType.EventHandler}});const defaultStyle={WebkitAppearance:\"none\",display:\"inline-block\",width:\"100%\",lineHeight:\"1.4em\",outline:\"none\",border:\"none\"};export default FormSpark;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FormSpark\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"290\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"550\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormSpark.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={mJC7vZKz9:{hover:true}};const serializationHash=\"framer-7J5TX\";const variantClassNames={mJC7vZKz9:\"framer-v-xuxeps\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.12,.23,.5,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,hover,id,width,...props})=>{var _ref;return{...props,SEW3JdBiT:(_ref=hover!==null&&hover!==void 0?hover:props.SEW3JdBiT)!==null&&_ref!==void 0?_ref:\"rgb(255, 255, 255)\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,SEW3JdBiT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"mJC7vZKz9\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://t.me/+J3aIWvxCKvAxZTE1\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-xuxeps\",className,classNames)} framer-1oepgnl`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"mJC7vZKz9\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"mJC7vZKz9-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-arjppw\",\"data-framer-name\":\"graphic\",fill:SEW3JdBiT,intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"S0awkfN6S\",style:{opacity:.3},svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 512 512\"><path fill=\"currentColor\" d=\"M470.435 45.423 16.827 221.249c-18.254 8.188-24.428 24.585-4.412 33.484l116.37 37.173 281.368-174.79c15.363-10.973 31.091-8.047 17.557 4.024L186.053 341.075l-7.591 93.076c7.031 14.371 19.905 14.438 28.117 7.295l66.858-63.589 114.505 86.187c26.595 15.826 41.066 5.613 46.788-23.394l75.105-357.47c7.798-35.705-5.5-51.437-39.4-37.757z\"/></svg>',variants:{\"mJC7vZKz9-hover\":{opacity:1}},withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7J5TX.framer-1oepgnl, .framer-7J5TX .framer-1oepgnl { display: block; }\",\".framer-7J5TX.framer-xuxeps { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-7J5TX .framer-arjppw { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7J5TX.framer-xuxeps { gap: 0px; } .framer-7J5TX.framer-xuxeps > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-7J5TX.framer-xuxeps > :first-child { margin-left: 0px; } .framer-7J5TX.framer-xuxeps > :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\":[\"auto\",\"auto\"]},\"oyAt2Jptz\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"SEW3JdBiT\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerk0hEWGsAt=withCSS(Component,css,\"framer-7J5TX\");export default Framerk0hEWGsAt;Framerk0hEWGsAt.displayName=\"telegram\";Framerk0hEWGsAt.defaultProps={height:20,width:20};addPropertyControls(Framerk0hEWGsAt,{SEW3JdBiT:{defaultValue:\"rgb(255, 255, 255)\",title:\"Hover\",type:ControlType.Color}});addFonts(Framerk0hEWGsAt,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerk0hEWGsAt\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"20\",\"framerVariables\":\"{\\\"SEW3JdBiT\\\":\\\"hover\\\"}\",\"framerIntrinsicWidth\":\"20\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"oyAt2Jptz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./k0hEWGsAt.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={i40nlzVGg:{hover:true}};const serializationHash=\"framer-LhdYp\";const variantClassNames={i40nlzVGg:\"framer-v-15u787q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.12,.23,.5,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,socialHover,width,...props})=>{var _ref;return{...props,YAvSApomf:(_ref=socialHover!==null&&socialHover!==void 0?socialHover:props.YAvSApomf)!==null&&_ref!==void 0?_ref:\"rgb(255, 255, 255)\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,YAvSApomf,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"i40nlzVGg\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://discord.gg/gvsNjn8FbS\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,\"aria-label\":\"Discord\",className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-15u787q\",className,classNames)} framer-wfqjoh`,\"data-framer-name\":\"Deafult\",layoutDependency:layoutDependency,layoutId:\"i40nlzVGg\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"i40nlzVGg-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1n7m4cx\",\"data-framer-name\":\"graphic\",fill:YAvSApomf,intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"GMVmPmFFE\",style:{opacity:.3},svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057 19.9 19.9 0 0 0 5.993 3.03.078.078 0 0 0 .084-.028 14.09 14.09 0 0 0 1.226-1.994.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418Z\"/></svg>',variants:{\"i40nlzVGg-hover\":{opacity:1}},withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LhdYp.framer-wfqjoh, .framer-LhdYp .framer-wfqjoh { display: block; }\",\".framer-LhdYp.framer-15u787q { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-LhdYp .framer-1n7m4cx { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LhdYp.framer-15u787q { gap: 0px; } .framer-LhdYp.framer-15u787q > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-LhdYp.framer-15u787q > :first-child { margin-left: 0px; } .framer-LhdYp.framer-15u787q > :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\":[\"auto\",\"auto\"]},\"pohyfaPA1\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"YAvSApomf\":\"socialHover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMgTmys8zL=withCSS(Component,css,\"framer-LhdYp\");export default FramerMgTmys8zL;FramerMgTmys8zL.displayName=\"discord\";FramerMgTmys8zL.defaultProps={height:20,width:20};addPropertyControls(FramerMgTmys8zL,{YAvSApomf:{defaultValue:\"rgb(255, 255, 255)\",title:\"Social Hover\",type:ControlType.Color}});addFonts(FramerMgTmys8zL,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMgTmys8zL\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"YAvSApomf\\\":\\\"socialHover\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pohyfaPA1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"20\",\"framerIntrinsicWidth\":\"20\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MgTmys8zL.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx}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\";const enabledGestures={VPSYAYPL_:{hover:true}};const serializationHash=\"framer-Fmtno\";const variantClassNames={VPSYAYPL_:\"framer-v-1c0nxb6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.12,.23,.5,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,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{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"VPSYAYPL_\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/bewaterofficial\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,\"aria-label\":\"Twitter\",className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1c0nxb6\",className,classNames)} framer-ms4hvq`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"VPSYAYPL_\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"VPSYAYPL_-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gvrayj\",\"data-framer-name\":\"path1009\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:26,layoutDependency:layoutDependency,layoutId:\"dB7X4o0ZE\",style:{opacity:.3},svg:'<svg width=\"26\" height=\"24\" viewBox=\"0 0 26 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0633906 0L10.1017 13.2374L0 24H2.27349L11.1175 14.5772L18.2632 24H26L15.3969 10.018L24.7995 0H22.526L14.3811 8.67822L7.80016 0H0.0633906ZM3.40672 1.6516H6.96101L22.6561 22.3481H19.1019L3.40672 1.6516Z\" fill=\"white\"/>\\n</svg>\\n',variants:{\"VPSYAYPL_-hover\":{opacity:1}},withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Fmtno.framer-ms4hvq, .framer-Fmtno .framer-ms4hvq { display: block; }\",\".framer-Fmtno.framer-1c0nxb6 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 2px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Fmtno .framer-gvrayj { aspect-ratio: 1.0526315789473684 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 17px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Fmtno.framer-1c0nxb6 { gap: 0px; } .framer-Fmtno.framer-1c0nxb6 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Fmtno.framer-1c0nxb6 > :first-child { margin-left: 0px; } .framer-Fmtno.framer-1c0nxb6 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 21\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"alJFBLKSU\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNMfKLBpFI=withCSS(Component,css,\"framer-Fmtno\");export default FramerNMfKLBpFI;FramerNMfKLBpFI.displayName=\"twitter\";FramerNMfKLBpFI.defaultProps={height:20,width:21};addFonts(FramerNMfKLBpFI,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNMfKLBpFI\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"alJFBLKSU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"21\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NMfKLBpFI.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={YwCPmAXwn:{hover:true}};const serializationHash=\"framer-au2NR\";const variantClassNames={YwCPmAXwn:\"framer-v-1qtbqcw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({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{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"YwCPmAXwn\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://medium.com/@support_25102\",children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:150,pixelWidth:150,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/aU8r4MRbRFROM3Q6MLDIa7n3KD0.svg\",srcSet:\"https://framerusercontent.com/images/aU8r4MRbRFROM3Q6MLDIa7n3KD0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/aU8r4MRbRFROM3Q6MLDIa7n3KD0.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aU8r4MRbRFROM3Q6MLDIa7n3KD0.svg 1043w\"},className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1qtbqcw\",className,classNames)} framer-nu9d9e`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"YwCPmAXwn\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.3,...style},variants:{\"YwCPmAXwn-hover\":{opacity:1}},...addPropertyOverrides({\"YwCPmAXwn-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-j1ik2l\",layoutDependency:layoutDependency,layoutId:\"wteaUCCqs\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"}})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-au2NR.framer-nu9d9e, .framer-au2NR .framer-nu9d9e { display: block; }\",\".framer-au2NR.framer-1qtbqcw { cursor: pointer; height: 20px; position: relative; text-decoration: none; width: 28px; }\",\".framer-au2NR .framer-j1ik2l { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 28\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"MwhoKfHr1\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWOcydUeWg=withCSS(Component,css,\"framer-au2NR\");export default FramerWOcydUeWg;FramerWOcydUeWg.displayName=\"medium\";FramerWOcydUeWg.defaultProps={height:20,width:28};addFonts(FramerWOcydUeWg,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWOcydUeWg\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MwhoKfHr1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"20\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"28\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WOcydUeWg.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import FormSpark from\"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nTdnJR1CVsIgCYdGeUsd/G9cuTeanYR1DChWrCdvX/UTkM4G1fU.js\";import Telegram from\"https://framerusercontent.com/modules/rbxLN3Nm9QfZBJwfxDUU/CqzFZitNP2EMu7CSr07L/k0hEWGsAt.js\";import Discord from\"https://framerusercontent.com/modules/mQ2aMiNa2u9mKOm1dIe0/2AgeOLe7We0IFA2Y1eSO/MgTmys8zL.js\";import Twitter from\"https://framerusercontent.com/modules/8oQuMvw1SqAvldZdgO3T/YHkN3VZ0RJzpQ0eQOd0g/NMfKLBpFI.js\";import Medium from\"https://framerusercontent.com/modules/dAI5LXdLlWrbDJpiOu28/U38Q9OCSrhRHBUNc2WtL/WOcydUeWg.js\";const FormSparkFonts=getFonts(FormSpark);const TwitterFonts=getFonts(Twitter);const DiscordFonts=getFonts(Discord);const TelegramFonts=getFonts(Telegram);const MediumFonts=getFonts(Medium);const cycleOrder=[\"pqQJQlP2N\",\"jaKbHeqKU\",\"Jx_0MxmV3\"];const serializationHash=\"framer-CpgXc\";const variantClassNames={jaKbHeqKU:\"framer-v-tyo8km\",Jx_0MxmV3:\"framer-v-4kim3w\",pqQJQlP2N:\"framer-v-tvewzk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"pqQJQlP2N\",Phone:\"Jx_0MxmV3\",Tablet:\"jaKbHeqKU\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"pqQJQlP2N\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pqQJQlP2N\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-tvewzk\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"pqQJQlP2N\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({jaKbHeqKU:{\"data-framer-name\":\"Tablet\"},Jx_0MxmV3:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15qess9\",\"data-framer-name\":\"top\",layoutDependency:layoutDependency,layoutId:\"SqmaQGbWS\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yvq7h6\",\"data-framer-name\":\"left\",layoutDependency:layoutDependency,layoutId:\"f5NMoRQ6G\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cvpp5i\",\"data-framer-name\":\"brand\",layoutDependency:layoutDependency,layoutId:\"cR6aAvbOu\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-bu2frc\",\"data-framer-name\":\"Logo / BeWater\",layoutDependency:layoutDependency,layoutId:\"Fouf8a59p\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:75,intrinsicWidth:260,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+0+0+0+0+0+0+0+0),pixelHeight:75,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KzmEYJoH5H584cEIyvf1sjE69A.svg\"},className:\"framer-dzkf98\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"I6340:177980;1958:62844\",...addPropertyOverrides({jaKbHeqKU:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:75,intrinsicWidth:260,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+0+0+0+0+0+0+0+0+0),pixelHeight:75,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KzmEYJoH5H584cEIyvf1sjE69A.svg\"}},Jx_0MxmV3:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:75,intrinsicWidth:260,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+0+0+0+0+0+0+0+0+0),pixelHeight:75,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KzmEYJoH5H584cEIyvf1sjE69A.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1umh8ni\",\"data-framer-name\":\"slogan\",layoutDependency:layoutDependency,layoutId:\"suSceKWtu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Jhc2VtZW50IEdyb3Rlc3F1ZSBCb2xk\",\"--framer-font-family\":'\"Basement Grotesque Bold\", \"Basement Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(248, 250, 252))\"},children:\"I Build Therefore I Am.\"})}),className:\"framer-1pg5ygb\",\"data-framer-name\":\"I Build Therefore I Am.\",fonts:[\"CUSTOM;Basement Grotesque Bold\"],layoutDependency:layoutDependency,layoutId:\"KnYXc4z69\",style:{\"--extracted-r6o4lv\":\"rgb(248, 250, 252)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tl01s6\",\"data-framer-name\":\"form\",layoutDependency:layoutDependency,layoutId:\"DySOPxf0J\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"JetBrains Mono\"',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(248, 250, 252, 1))\"},children:\"Subscribe our newsletter for upcoming news.\"})})}),className:\"framer-6ci0xq\",\"data-framer-name\":\"Subscribe our newsletter for upcoming news.\",fonts:[\"GF;JetBrains Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"o7QRr4Z7r\",style:{\"--extracted-1w3ko1f\":\"rgba(248, 250, 252, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ln6msw\",\"data-framer-name\":\"Form\",layoutDependency:layoutDependency,layoutId:\"yL2fdkcR1\",style:{backgroundColor:\"rgba(255, 255, 255, 0.05)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"inset 0px 0px 0px 1px rgba(255, 255, 255, 0.1)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-quqfkx-container\",layoutDependency:layoutDependency,layoutId:\"iRTGKdR5N-container\",children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:6,bottomLeftRadius:6,bottomRightRadius:6,button:{color:\"rgba(255, 255, 255, 0.5)\",fill:\"rgba(255, 255, 255, 0)\",fontWeight:600,label:\"->\"},email:{placeholder:\"your@email.com\",value:\"\"},font:true,fontFamily:\"JetBrains Mono\",fontSize:14,fontWeight:400,formId:\"h5pp10io\",gap:0,height:\"100%\",id:\"iRTGKdR5N\",inputs:{color:\"rgb(255, 255, 255)\",error:\"rgb(238, 68, 68)\",fill:\"rgba(255, 255, 255, 0)\",placeholderColor:\"rgba(255, 255, 255, 0.5)\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"iRTGKdR5N\",message:{placeholder:\"Message\",value:\"\"},nameField:{placeholder:\"Name\",value:\"\"},padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,style:{height:\"100%\",width:\"100%\"},topLeftRadius:6,topRightRadius:6,width:\"100%\",withEmail:true,withMessage:false,withName:false})})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f0dqyt\",\"data-framer-name\":\"right\",layoutDependency:layoutDependency,layoutId:\"K1Hpuusjm\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hlwpfg\",\"data-framer-name\":\"nav\",layoutDependency:layoutDependency,layoutId:\"Dch0IvOBv\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lwtlsa\",\"data-framer-name\":\"accordion\",layoutDependency:layoutDependency,layoutId:\"TWKFt_ebs\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iu7g1s\",\"data-framer-name\":\"topic\",layoutDependency:layoutDependency,layoutId:\"OXTjmJyO9\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9yvewo\",\"data-framer-name\":\"Heading 2\",layoutDependency:layoutDependency,layoutId:\"kBIcXRBxH\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"24px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tNzAw\",\"--framer-font-family\":'\"JetBrains Mono\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(248, 250, 252, 1))\"},children:\"Docs\"})})}),className:\"framer-1vnryg6\",\"data-framer-name\":\"Platform\",fonts:[\"GF;JetBrains Mono-700\"],layoutDependency:layoutDependency,layoutId:\"RZBaLweJV\",style:{\"--extracted-1w3ko1f\":\"rgba(248, 250, 252, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jecrz7\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"TNm4xnTtn\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uuit0s\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"DQyXdd9Y4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(155, 150, 176))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.bewater.xyz/zh/guide/\",nodeId:\"B3C6IpbI1\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sgkpn3\",\"data-styles-preset\":\"UTkM4G1fU\",children:\"Join a campaign\"})})})}),className:\"framer-168hnma\",\"data-framer-name\":\"Link \u2192 Features\",fonts:[\"GF;JetBrains Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"B3C6IpbI1\",style:{\"--extracted-r6o4lv\":\"rgb(155, 150, 176)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p26n7w\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"L50Y3k5Ot\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(155, 150, 176))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.bewater.xyz/zh/guide/host-started.html\",nodeId:\"gVVLqHGTj\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sgkpn3\",\"data-styles-preset\":\"UTkM4G1fU\",children:\"Host a campaign \"})})})}),className:\"framer-qdfy1y\",\"data-framer-name\":\"Link \u2192 Pricing\",fonts:[\"GF;JetBrains Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"gVVLqHGTj\",style:{\"--extracted-r6o4lv\":\"rgb(155, 150, 176)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-x8fqbf\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"jqfnbA1j0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(155, 150, 176))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://blog.bewater.xyz\",nodeId:\"Ov7SMsME1\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sgkpn3\",\"data-styles-preset\":\"UTkM4G1fU\",children:\"Blog\"})})})}),className:\"framer-go9eaf\",\"data-framer-name\":\"Link \u2192 Community\",fonts:[\"GF;JetBrains Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"Ov7SMsME1\",style:{\"--extracted-r6o4lv\":\"rgb(155, 150, 176)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12rvert\",\"data-framer-name\":\"accordion\",layoutDependency:layoutDependency,layoutId:\"VsVt_xYXn\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9b5jqn\",\"data-framer-name\":\"topic\",layoutDependency:layoutDependency,layoutId:\"EHaw4oYay\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2d3y6n\",\"data-framer-name\":\"Heading 2\",layoutDependency:layoutDependency,layoutId:\"W1RajHFse\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"24px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tNzAw\",\"--framer-font-family\":'\"JetBrains Mono\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(248, 250, 252, 1))\"},children:\"Venture Studio\"})})}),className:\"framer-qw8kpv\",\"data-framer-name\":\"Venture Studio\",fonts:[\"GF;JetBrains Mono-700\"],layoutDependency:layoutDependency,layoutId:\"ui1Axh2PY\",style:{\"--extracted-1w3ko1f\":\"rgba(248, 250, 252, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oo4pcj\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"KJuPDvE9Z\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ijj7zk\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"RFH3TpTCk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(155, 150, 176))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://forms.gle/1rpsoNRkNzae7rmL8\",nodeId:\"TtoX1YInw\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sgkpn3\",\"data-styles-preset\":\"UTkM4G1fU\",children:\"Submit Project\"})})})}),className:\"framer-1yjpwjt\",\"data-framer-name\":\"Link \u2192 Features\",fonts:[\"GF;JetBrains Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"TtoX1YInw\",style:{\"--extracted-r6o4lv\":\"rgb(155, 150, 176)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8xjonu\",\"data-framer-name\":\"accordion\",layoutDependency:layoutDependency,layoutId:\"gdnr8yHaI\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dtn5hj\",\"data-framer-name\":\"topic\",layoutDependency:layoutDependency,layoutId:\"cjan8xjmC\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dq6dm6\",\"data-framer-name\":\"Heading 2\",layoutDependency:layoutDependency,layoutId:\"s7EbCsr9a\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"24px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tNzAw\",\"--framer-font-family\":'\"JetBrains Mono\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(248, 250, 252, 1))\"},children:\"Company\"})})}),className:\"framer-1gvhpwf\",\"data-framer-name\":\"Company\",fonts:[\"GF;JetBrains Mono-700\"],layoutDependency:layoutDependency,layoutId:\"Rri_aL5Bw\",style:{\"--extracted-1w3ko1f\":\"rgba(248, 250, 252, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12cokqn\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"w7woEe3o5\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-uq3l30\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"Lq9qBPaXm\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(155, 150, 176))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://medium.com/@support_25102\",nodeId:\"mMW3uO7XD\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sgkpn3\",\"data-styles-preset\":\"UTkM4G1fU\",children:\"Medium\"})})})}),className:\"framer-1scmznc\",\"data-framer-name\":\"Link \u2192 Pricing\",fonts:[\"GF;JetBrains Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"mMW3uO7XD\",style:{\"--extracted-r6o4lv\":\"rgb(155, 150, 176)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ejyodd\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"TL5TXU0bG\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(155, 150, 176))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/18KkcqYV762XEhRDMhEXTgDkUfSZ7C9WG/view?usp=sharing\",nodeId:\"AuH3MngZX\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sgkpn3\",\"data-styles-preset\":\"UTkM4G1fU\",children:\"Press Kit\"})})})}),className:\"framer-1p7s2y3\",\"data-framer-name\":\"Link \u2192 Community\",fonts:[\"GF;JetBrains Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"AuH3MngZX\",style:{\"--extracted-r6o4lv\":\"rgb(155, 150, 176)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lh2zjq\",\"data-framer-name\":\"accordion\",layoutDependency:layoutDependency,layoutId:\"itfFJFUwL\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-14rinc\",\"data-framer-name\":\"topic\",layoutDependency:layoutDependency,layoutId:\"medazBPUn\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-uufih3\",\"data-framer-name\":\"Heading 2\",layoutDependency:layoutDependency,layoutId:\"Il4lpy20I\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"24px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tNzAw\",\"--framer-font-family\":'\"JetBrains Mono\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(248, 250, 252, 1))\"},children:\"Resources\"})})}),className:\"framer-1mp6raj\",\"data-framer-name\":\"Resources\",fonts:[\"GF;JetBrains Mono-700\"],layoutDependency:layoutDependency,layoutId:\"cIh3knYQV\",style:{\"--extracted-1w3ko1f\":\"rgba(248, 250, 252, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1st9fhm\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"aZSErl7Oh\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3k5ayt\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"Qojhdicjo\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(155, 150, 176))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"J4BpZy97w\"},nodeId:\"iU5O2X2jo\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sgkpn3\",\"data-styles-preset\":\"UTkM4G1fU\",children:\"Privacy Policy\"})})})}),className:\"framer-12n7nm4\",\"data-framer-name\":\"Link \u2192 Features\",fonts:[\"GF;JetBrains Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"iU5O2X2jo\",style:{\"--extracted-r6o4lv\":\"rgb(155, 150, 176)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dwd4b8\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"fIL4O8RF8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(155, 150, 176))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UKjiDBAh7\"},nodeId:\"pOWnHnGnb\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sgkpn3\",\"data-styles-preset\":\"UTkM4G1fU\",children:\"Terms of Service\"})})})}),className:\"framer-1j63dny\",\"data-framer-name\":\"Link \u2192 Pricing\",fonts:[\"GF;JetBrains Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"pOWnHnGnb\",style:{\"--extracted-r6o4lv\":\"rgb(155, 150, 176)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9wenlz\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"cB5of3Z3v\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(155, 150, 176))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://t.me/+J3aIWvxCKvAxZTE1\",nodeId:\"iNooneUkK\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sgkpn3\",\"data-styles-preset\":\"UTkM4G1fU\",children:\"Community\"})})})}),className:\"framer-1egl1ab\",\"data-framer-name\":\"Link \u2192 Contact Us\",fonts:[\"GF;JetBrains Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"iNooneUkK\",style:{\"--extracted-r6o4lv\":\"rgb(155, 150, 176)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]})]})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1audg0r\",\"data-framer-name\":\"divider\",layoutDependency:layoutDependency,layoutId:\"dnSu9MirL\",style:{background:\"radial-gradient(50% 56400.00178590423% at 50% 100.00055152925142%, rgba(169, 163, 194, 0.23999999463558197) 0%, rgba(169, 163, 194, 0) 100%)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fmatul\",\"data-framer-name\":\"bottom\",layoutDependency:layoutDependency,layoutId:\"XJ9RwoQ0Q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SmV0QnJhaW5zIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"JetBrains Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.5))\",\"--framer-text-transform\":\"uppercase\"},children:\"2024 BeWater. All Rights Reserved.\"})}),className:\"framer-zf9kb3\",\"data-framer-name\":\"2022 BeWater. All Rights Reserved.\",fonts:[\"GF;JetBrains Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"kaVTUf0DJ\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.5)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kb9out\",\"data-framer-name\":\"Social\",layoutDependency:layoutDependency,layoutId:\"Ky4Y_PRgH\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+373+0+4,...addPropertyOverrides({jaKbHeqKU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+461+0+4},Jx_0MxmV3:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+962+0+48+4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uwlt78-container\",layoutDependency:layoutDependency,layoutId:\"Jxko0sRF3-container\",children:/*#__PURE__*/_jsx(Twitter,{height:\"100%\",id:\"Jxko0sRF3\",layoutId:\"Jxko0sRF3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+373+0+4,...addPropertyOverrides({jaKbHeqKU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+461+0+4},Jx_0MxmV3:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+962+0+48+4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6aa438-container\",layoutDependency:layoutDependency,layoutId:\"keQIQ0X2I-container\",children:/*#__PURE__*/_jsx(Discord,{height:\"100%\",id:\"keQIQ0X2I\",layoutId:\"keQIQ0X2I\",width:\"100%\",YAvSApomf:\"rgb(255, 255, 255)\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+373+0+4,...addPropertyOverrides({jaKbHeqKU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+461+0+4},Jx_0MxmV3:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+962+0+48+4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ftx886-container\",layoutDependency:layoutDependency,layoutId:\"Ht7wY2sYs-container\",children:/*#__PURE__*/_jsx(Telegram,{height:\"100%\",id:\"Ht7wY2sYs\",layoutId:\"Ht7wY2sYs\",SEW3JdBiT:\"rgb(255, 255, 255)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+373+0+4,...addPropertyOverrides({jaKbHeqKU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+461+0+4},Jx_0MxmV3:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+962+0+48+4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qe2bpb-container\",layoutDependency:layoutDependency,layoutId:\"zO5YRHwDj-container\",children:/*#__PURE__*/_jsx(Medium,{height:\"100%\",id:\"zO5YRHwDj\",layoutId:\"zO5YRHwDj\",width:\"100%\"})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CpgXc.framer-1h1psms, .framer-CpgXc .framer-1h1psms { display: block; }\",\".framer-CpgXc.framer-tvewzk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px; position: relative; width: 1282px; }\",\".framer-CpgXc .framer-15qess9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CpgXc .framer-yvq7h6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CpgXc .framer-cvpp5i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CpgXc .framer-bu2frc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-CpgXc .framer-dzkf98 { flex: none; height: 60px; position: relative; width: 180px; }\",\".framer-CpgXc .framer-1umh8ni { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CpgXc .framer-1pg5ygb, .framer-CpgXc .framer-1vnryg6, .framer-CpgXc .framer-go9eaf, .framer-CpgXc .framer-qw8kpv, .framer-CpgXc .framer-1yjpwjt, .framer-CpgXc .framer-1gvhpwf, .framer-CpgXc .framer-1scmznc, .framer-CpgXc .framer-1p7s2y3, .framer-CpgXc .framer-1mp6raj, .framer-CpgXc .framer-12n7nm4, .framer-CpgXc .framer-1j63dny, .framer-CpgXc .framer-1egl1ab { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-CpgXc .framer-1tl01s6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 16px 0px; position: relative; width: 312px; }\",\".framer-CpgXc .framer-6ci0xq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 312px; word-break: break-word; word-wrap: break-word; }\",\".framer-CpgXc .framer-ln6msw { flex: none; height: 53px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-CpgXc .framer-quqfkx-container { bottom: -1px; flex: none; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-CpgXc .framer-1f0dqyt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-CpgXc .framer-1hlwpfg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-CpgXc .framer-1lwtlsa, .framer-CpgXc .framer-12rvert, .framer-CpgXc .framer-8xjonu, .framer-CpgXc .framer-lh2zjq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 16px 0px; position: relative; width: 180px; }\",\".framer-CpgXc .framer-1iu7g1s, .framer-CpgXc .framer-9b5jqn, .framer-CpgXc .framer-1dtn5hj, .framer-CpgXc .framer-14rinc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 160px; }\",\".framer-CpgXc .framer-9yvewo, .framer-CpgXc .framer-2d3y6n, .framer-CpgXc .framer-dq6dm6, .framer-CpgXc .framer-uufih3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 103.33000183105469px 0px 0px; position: relative; width: 1px; }\",\".framer-CpgXc .framer-1jecrz7, .framer-CpgXc .framer-oo4pcj, .framer-CpgXc .framer-12cokqn, .framer-CpgXc .framer-1st9fhm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 160px; }\",\".framer-CpgXc .framer-1uuit0s, .framer-CpgXc .framer-ijj7zk, .framer-CpgXc .framer-3k5ayt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 103.33000183105469px 0px 0px; position: relative; width: 100%; }\",\".framer-CpgXc .framer-168hnma, .framer-CpgXc .framer-qdfy1y { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 160px; word-break: break-word; word-wrap: break-word; }\",\".framer-CpgXc .framer-1p26n7w, .framer-CpgXc .framer-uq3l30, .framer-CpgXc .framer-dwd4b8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 114.33000183105469px 0px 0px; position: relative; width: 100%; }\",\".framer-CpgXc .framer-x8fqbf, .framer-CpgXc .framer-ejyodd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 86.33000183105469px 0px 0px; position: relative; width: 100%; }\",\".framer-CpgXc .framer-9wenlz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 89.33000183105469px 0px 0px; position: relative; width: 100%; }\",\".framer-CpgXc .framer-1audg0r { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-CpgXc .framer-fmatul { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CpgXc .framer-zf9kb3 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-CpgXc .framer-kb9out { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px 0px 4px 0px; position: relative; width: min-content; }\",\".framer-CpgXc .framer-1uwlt78-container, .framer-CpgXc .framer-6aa438-container, .framer-CpgXc .framer-ftx886-container, .framer-CpgXc .framer-qe2bpb-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CpgXc.framer-tvewzk, .framer-CpgXc .framer-15qess9, .framer-CpgXc .framer-yvq7h6, .framer-CpgXc .framer-cvpp5i, .framer-CpgXc .framer-bu2frc, .framer-CpgXc .framer-1umh8ni, .framer-CpgXc .framer-1tl01s6, .framer-CpgXc .framer-1hlwpfg, .framer-CpgXc .framer-1lwtlsa, .framer-CpgXc .framer-9yvewo, .framer-CpgXc .framer-1jecrz7, .framer-CpgXc .framer-1uuit0s, .framer-CpgXc .framer-1p26n7w, .framer-CpgXc .framer-x8fqbf, .framer-CpgXc .framer-12rvert, .framer-CpgXc .framer-2d3y6n, .framer-CpgXc .framer-oo4pcj, .framer-CpgXc .framer-ijj7zk, .framer-CpgXc .framer-8xjonu, .framer-CpgXc .framer-dq6dm6, .framer-CpgXc .framer-12cokqn, .framer-CpgXc .framer-uq3l30, .framer-CpgXc .framer-ejyodd, .framer-CpgXc .framer-lh2zjq, .framer-CpgXc .framer-uufih3, .framer-CpgXc .framer-1st9fhm, .framer-CpgXc .framer-3k5ayt, .framer-CpgXc .framer-dwd4b8, .framer-CpgXc .framer-9wenlz, .framer-CpgXc .framer-kb9out { gap: 0px; } .framer-CpgXc.framer-tvewzk > *, .framer-CpgXc .framer-yvq7h6 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-CpgXc.framer-tvewzk > :first-child, .framer-CpgXc .framer-yvq7h6 > :first-child, .framer-CpgXc .framer-cvpp5i > :first-child, .framer-CpgXc .framer-bu2frc > :first-child, .framer-CpgXc .framer-1umh8ni > :first-child, .framer-CpgXc .framer-1tl01s6 > :first-child, .framer-CpgXc .framer-1lwtlsa > :first-child, .framer-CpgXc .framer-9yvewo > :first-child, .framer-CpgXc .framer-1jecrz7 > :first-child, .framer-CpgXc .framer-1uuit0s > :first-child, .framer-CpgXc .framer-1p26n7w > :first-child, .framer-CpgXc .framer-x8fqbf > :first-child, .framer-CpgXc .framer-12rvert > :first-child, .framer-CpgXc .framer-2d3y6n > :first-child, .framer-CpgXc .framer-oo4pcj > :first-child, .framer-CpgXc .framer-ijj7zk > :first-child, .framer-CpgXc .framer-8xjonu > :first-child, .framer-CpgXc .framer-dq6dm6 > :first-child, .framer-CpgXc .framer-12cokqn > :first-child, .framer-CpgXc .framer-uq3l30 > :first-child, .framer-CpgXc .framer-ejyodd > :first-child, .framer-CpgXc .framer-lh2zjq > :first-child, .framer-CpgXc .framer-uufih3 > :first-child, .framer-CpgXc .framer-1st9fhm > :first-child, .framer-CpgXc .framer-3k5ayt > :first-child, .framer-CpgXc .framer-dwd4b8 > :first-child, .framer-CpgXc .framer-9wenlz > :first-child { margin-top: 0px; } .framer-CpgXc.framer-tvewzk > :last-child, .framer-CpgXc .framer-yvq7h6 > :last-child, .framer-CpgXc .framer-cvpp5i > :last-child, .framer-CpgXc .framer-bu2frc > :last-child, .framer-CpgXc .framer-1umh8ni > :last-child, .framer-CpgXc .framer-1tl01s6 > :last-child, .framer-CpgXc .framer-1lwtlsa > :last-child, .framer-CpgXc .framer-9yvewo > :last-child, .framer-CpgXc .framer-1jecrz7 > :last-child, .framer-CpgXc .framer-1uuit0s > :last-child, .framer-CpgXc .framer-1p26n7w > :last-child, .framer-CpgXc .framer-x8fqbf > :last-child, .framer-CpgXc .framer-12rvert > :last-child, .framer-CpgXc .framer-2d3y6n > :last-child, .framer-CpgXc .framer-oo4pcj > :last-child, .framer-CpgXc .framer-ijj7zk > :last-child, .framer-CpgXc .framer-8xjonu > :last-child, .framer-CpgXc .framer-dq6dm6 > :last-child, .framer-CpgXc .framer-12cokqn > :last-child, .framer-CpgXc .framer-uq3l30 > :last-child, .framer-CpgXc .framer-ejyodd > :last-child, .framer-CpgXc .framer-lh2zjq > :last-child, .framer-CpgXc .framer-uufih3 > :last-child, .framer-CpgXc .framer-1st9fhm > :last-child, .framer-CpgXc .framer-3k5ayt > :last-child, .framer-CpgXc .framer-dwd4b8 > :last-child, .framer-CpgXc .framer-9wenlz > :last-child { margin-bottom: 0px; } .framer-CpgXc .framer-15qess9 > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-CpgXc .framer-15qess9 > :first-child, .framer-CpgXc .framer-1hlwpfg > :first-child, .framer-CpgXc .framer-kb9out > :first-child { margin-left: 0px; } .framer-CpgXc .framer-15qess9 > :last-child, .framer-CpgXc .framer-1hlwpfg > :last-child, .framer-CpgXc .framer-kb9out > :last-child { margin-right: 0px; } .framer-CpgXc .framer-cvpp5i > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-CpgXc .framer-bu2frc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-CpgXc .framer-1umh8ni > *, .framer-CpgXc .framer-9yvewo > *, .framer-CpgXc .framer-1uuit0s > *, .framer-CpgXc .framer-1p26n7w > *, .framer-CpgXc .framer-x8fqbf > *, .framer-CpgXc .framer-2d3y6n > *, .framer-CpgXc .framer-ijj7zk > *, .framer-CpgXc .framer-dq6dm6 > *, .framer-CpgXc .framer-uq3l30 > *, .framer-CpgXc .framer-ejyodd > *, .framer-CpgXc .framer-uufih3 > *, .framer-CpgXc .framer-3k5ayt > *, .framer-CpgXc .framer-dwd4b8 > *, .framer-CpgXc .framer-9wenlz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-CpgXc .framer-1tl01s6 > *, .framer-CpgXc .framer-1lwtlsa > *, .framer-CpgXc .framer-1jecrz7 > *, .framer-CpgXc .framer-12rvert > *, .framer-CpgXc .framer-oo4pcj > *, .framer-CpgXc .framer-8xjonu > *, .framer-CpgXc .framer-12cokqn > *, .framer-CpgXc .framer-lh2zjq > *, .framer-CpgXc .framer-1st9fhm > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-CpgXc .framer-1hlwpfg > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-CpgXc .framer-kb9out > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-CpgXc.framer-v-tyo8km.framer-tvewzk { width: 780px; }\",\".framer-CpgXc.framer-v-tyo8km .framer-15qess9 { flex-direction: column; gap: 64px; }\",\".framer-CpgXc.framer-v-tyo8km .framer-yvq7h6 { height: 184px; }\",\".framer-CpgXc.framer-v-tyo8km .framer-1f0dqyt { flex: none; height: 148px; width: 100%; }\",\".framer-CpgXc.framer-v-tyo8km .framer-1hlwpfg { gap: 8px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CpgXc.framer-v-tyo8km .framer-15qess9, .framer-CpgXc.framer-v-tyo8km .framer-1hlwpfg { gap: 0px; } .framer-CpgXc.framer-v-tyo8km .framer-15qess9 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-CpgXc.framer-v-tyo8km .framer-15qess9 > :first-child { margin-top: 0px; } .framer-CpgXc.framer-v-tyo8km .framer-15qess9 > :last-child { margin-bottom: 0px; } .framer-CpgXc.framer-v-tyo8km .framer-1hlwpfg > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-CpgXc.framer-v-tyo8km .framer-1hlwpfg > :first-child { margin-left: 0px; } .framer-CpgXc.framer-v-tyo8km .framer-1hlwpfg > :last-child { margin-right: 0px; } }\",\".framer-CpgXc.framer-v-4kim3w.framer-tvewzk { width: 375px; }\",\".framer-CpgXc.framer-v-4kim3w .framer-15qess9 { flex-direction: column; gap: 32px; }\",\".framer-CpgXc.framer-v-4kim3w .framer-1f0dqyt { flex: none; width: 100%; }\",\".framer-CpgXc.framer-v-4kim3w .framer-1hlwpfg { flex-direction: column; }\",\".framer-CpgXc.framer-v-4kim3w .framer-1lwtlsa, .framer-CpgXc.framer-v-4kim3w .framer-1jecrz7, .framer-CpgXc.framer-v-4kim3w .framer-12rvert, .framer-CpgXc.framer-v-4kim3w .framer-9b5jqn, .framer-CpgXc.framer-v-4kim3w .framer-oo4pcj, .framer-CpgXc.framer-v-4kim3w .framer-8xjonu, .framer-CpgXc.framer-v-4kim3w .framer-1dtn5hj, .framer-CpgXc.framer-v-4kim3w .framer-12cokqn, .framer-CpgXc.framer-v-4kim3w .framer-lh2zjq, .framer-CpgXc.framer-v-4kim3w .framer-14rinc, .framer-CpgXc.framer-v-4kim3w .framer-1st9fhm { width: 100%; }\",\".framer-CpgXc.framer-v-4kim3w .framer-1iu7g1s { gap: 0px; justify-content: center; width: 100%; }\",\".framer-CpgXc.framer-v-4kim3w .framer-1uuit0s, .framer-CpgXc.framer-v-4kim3w .framer-1p26n7w, .framer-CpgXc.framer-v-4kim3w .framer-x8fqbf { width: 160px; }\",\".framer-CpgXc.framer-v-4kim3w .framer-168hnma, .framer-CpgXc.framer-v-4kim3w .framer-qdfy1y { white-space: pre; width: auto; }\",\".framer-CpgXc.framer-v-4kim3w .framer-fmatul { flex-direction: column; gap: 32px; justify-content: center; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CpgXc.framer-v-4kim3w .framer-15qess9, .framer-CpgXc.framer-v-4kim3w .framer-1hlwpfg, .framer-CpgXc.framer-v-4kim3w .framer-1iu7g1s, .framer-CpgXc.framer-v-4kim3w .framer-fmatul { gap: 0px; } .framer-CpgXc.framer-v-4kim3w .framer-15qess9 > *, .framer-CpgXc.framer-v-4kim3w .framer-1hlwpfg > *, .framer-CpgXc.framer-v-4kim3w .framer-fmatul > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-CpgXc.framer-v-4kim3w .framer-15qess9 > :first-child, .framer-CpgXc.framer-v-4kim3w .framer-1hlwpfg > :first-child, .framer-CpgXc.framer-v-4kim3w .framer-fmatul > :first-child { margin-top: 0px; } .framer-CpgXc.framer-v-4kim3w .framer-15qess9 > :last-child, .framer-CpgXc.framer-v-4kim3w .framer-1hlwpfg > :last-child, .framer-CpgXc.framer-v-4kim3w .framer-fmatul > :last-child { margin-bottom: 0px; } .framer-CpgXc.framer-v-4kim3w .framer-1iu7g1s > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-CpgXc.framer-v-4kim3w .framer-1iu7g1s > :first-child { margin-left: 0px; } .framer-CpgXc.framer-v-4kim3w .framer-1iu7g1s > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 378\n * @framerIntrinsicWidth 1282\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jaKbHeqKU\":{\"layout\":[\"fixed\",\"auto\"]},\"Jx_0MxmV3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQD6r7IkWc=withCSS(Component,css,\"framer-CpgXc\");export default FramerQD6r7IkWc;FramerQD6r7IkWc.displayName=\"Footer\";FramerQD6r7IkWc.defaultProps={height:378,width:1282};addPropertyControls(FramerQD6r7IkWc,{variant:{options:[\"pqQJQlP2N\",\"jaKbHeqKU\",\"Jx_0MxmV3\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerQD6r7IkWc,[{explicitInter:true,fonts:[{family:\"Basement Grotesque Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/Vgp0Lpy80mqteGsK3bdoaPsjpPw.otf\"},{family:\"JetBrains Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjOFmUsaaDhw.woff2\",weight:\"400\"},{family:\"JetBrains Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/jetbrainsmono/v20/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tjOFmUsaaDhw.woff2\",weight:\"700\"}]},...FormSparkFonts,...TwitterFonts,...DiscordFonts,...TelegramFonts,...MediumFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQD6r7IkWc\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jaKbHeqKU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Jx_0MxmV3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"378\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1282\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QD6r7IkWc.map"],
  "mappings": "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",
  "names": ["fontStore", "fonts", "css", "className", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "VARIANT_DEFAULT", "VARIANT_ALTERNATE", "useStore", "createStore", "withRightClick", "Component", "props", "store", "setStore", "componentRef", "pe", "handleRightClick", "e", "_componentRef_current", "handleOutsideClick", "ue", "currentComponent", "p", "withDropdown", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "rVlgJvCvp_exports", "__export", "__FramerMetadata__", "rVlgJvCvp_default", "MotionDivWithDropdown", "withDropdown", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "dLD89mAUk", "vzE39t44g", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "Image2", "RichText2", "css", "FramerrVlgJvCvp", "withCSS", "rVlgJvCvp_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "_variant", "ref", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "XKaY3MrGu", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap16vb438", "args", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "css", "FramerWlmbTCjh8", "withCSS", "WlmbTCjh8_default", "addPropertyControls", "ControlType", "addFonts", "LogoFonts", "getFonts", "rVlgJvCvp_default", "LogoWithRightClickWithMappedReactPropsedqc34", "withMappedReactProps", "withRightClick", "rVlgJvCvp_exports", "IconFonts", "WlmbTCjh8_default", "ButtonGhostFonts", "fPyW6arUA_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "toResponsiveImage", "value", "transition3", "transition4", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "transition5", "transition6", "transition7", "transition8", "transition9", "transition10", "transition11", "transition12", "transition13", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "EjPHcJb49", "HeSRgcSbz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "tapz22v4v", "args", "tap1oripkn", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "Link", "Image2", "getLoadingLazyAtYPosition", "css", "FrameraKVKCrwGl", "withCSS", "aKVKCrwGl_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStack", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useOnEnter", "onEnter", "enabled", "useOnSpecificTargetChange", "useOnExit", "onExit", "goal", "callback", "isInTarget", "useIsInCurrentNavigationTarget", "ue", "isBrowserSafari", "navigator", "userAgent", "useIsBrowserSafari", "se", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "usePadding", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "paddingControl", "useConstant", "init", "ref", "pe", "fontWeights", "useFontControls", "props", "fontFamily", "fontSize", "fontWeight", "font", "fontWeightName", "customFontStack", "fontStack", "fontFamilyStyle", "fetchCustomFonts", "fontStore", "e", "ue", "emailRegex", "validateEmail", "email", "FormSpark", "withCSS", "formId", "withName", "name", "withEmail", "withMessage", "message", "layout", "inputs", "button", "style", "gap", "onSubmit", "props", "nameValue", "setName", "ye", "emailValue", "setEmail", "messageValue", "setMessage", "isNameError", "setNameError", "isEmailError", "setEmailError", "isMessageError", "setMessageError", "isLoading", "setLoading", "isSuccess", "setSuccess", "isCanvas", "se", "RenderTarget", "gridTemplateRows", "rows", "gridTemplateColumns", "cols", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "validateForm", "te", "error", "handleSubmit", "event", "data", "entries", "handleNameChange", "handleEmailChange", "handleMessageChange", "p", "motion", "containerStyles", "u", "defaultStyle", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "FormSpark_default", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "hover", "id", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "SEW3JdBiT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "SVG", "css", "Framerk0hEWGsAt", "withCSS", "k0hEWGsAt_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "socialHover", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "YAvSApomf", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "SVG", "css", "FramerMgTmys8zL", "withCSS", "MgTmys8zL_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "SVG", "css", "FramerNMfKLBpFI", "withCSS", "NMfKLBpFI_default", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "Image2", "getLoadingLazyAtYPosition", "cx", "css", "FramerWOcydUeWg", "withCSS", "WOcydUeWg_default", "addFonts", "FormSparkFonts", "getFonts", "FormSpark_default", "TwitterFonts", "NMfKLBpFI_default", "DiscordFonts", "MgTmys8zL_default", "TelegramFonts", "k0hEWGsAt_default", "MediumFonts", "WOcydUeWg_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "Link", "css", "FramerQD6r7IkWc", "withCSS", "QD6r7IkWc_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
