{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framerusercontent.com/modules/FndZuf53CXDh8Sh0Z2wQ/mr6T8XJA4tn5yaSNMgp3/sWDjdymW6.js", "ssg:https://framerusercontent.com/modules/bplaDC3zUR9ClgrpNEP9/TlIrFKIUp01Loy44sQoV/a7w3v2CCa.js", "ssg:https://framerusercontent.com/modules/5eF6WHuar5WEacOtpmb1/FZcLdRHNnhN9hyHTtLeH/hH1DdpI8D.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedURL,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHTML,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}];export const css=['.framer-ORjCh .framer-styles-preset-1liy3mn:not(.rich-text-wrapper), .framer-ORjCh .framer-styles-preset-1liy3mn.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-ORjCh\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3e546ec)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/FndZuf53CXDh8Sh0Z2wQ/mr6T8XJA4tn5yaSNMgp3/sWDjdymW6.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={AY2iJjz0z:{hover:true}};const cycleOrder=[\"pulFlqedB\",\"TuI1FkLhZ\",\"AY2iJjz0z\"];const serializationHash=\"framer-bsMNF\";const variantClassNames={AY2iJjz0z:\"framer-v-162iq3o\",pulFlqedB:\"framer-v-1wdy4ks\",TuI1FkLhZ:\"framer-v-baarrv\"};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 Variants=motion(React.Fragment);const humanReadableVariantMap={Closed:\"TuI1FkLhZ\",Open:\"pulFlqedB\",Simple:\"AY2iJjz0z\"};const getProps=({color,height,hover,id,link,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,Dl6AiX37G:(_ref=color!==null&&color!==void 0?color:props.Dl6AiX37G)!==null&&_ref!==void 0?_ref:\"rgb(0, 0, 0)\",kcKdHX2wm:(_ref1=title!==null&&title!==void 0?title:props.kcKdHX2wm)!==null&&_ref1!==void 0?_ref1:\"Features\",NKudH2mEX:link!==null&&link!==void 0?link:props.NKudH2mEX,qe8e_sxRy:hover!==null&&hover!==void 0?hover:props.qe8e_sxRy,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"pulFlqedB\"};};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,kcKdHX2wm,qe8e_sxRy,Dl6AiX37G,NKudH2mEX,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"pulFlqedB\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEntereq17gl=activeVariantCallback(async(...args)=>{if(qe8e_sxRy){const res=await qe8e_sxRy(...args);if(res===false)return false;}});const onClick1jfbi8x=activeVariantCallback(async(...args)=>{setVariant(\"vZNkcdFXx\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"AY2iJjz0z-hover\")return false;if(baseVariant===\"AY2iJjz0z\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];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:transition,children:/*#__PURE__*/_jsx(Link,{href:NKudH2mEX,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1wdy4ks\",className,classNames)} framer-roi0j8`,\"data-framer-name\":\"Open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"pulFlqedB\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onMouseEnter:onMouseEntereq17gl,onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"AY2iJjz0z-hover\":{\"data-framer-name\":undefined,\"data-highlight\":undefined,onMouseEnter:undefined},AY2iJjz0z:{\"data-framer-name\":\"Simple\",\"data-highlight\":undefined,onMouseEnter:undefined},TuI1FkLhZ:{\"data-framer-name\":\"Closed\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1liy3mn\",\"data-styles-preset\":\"sWDjdymW6\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-Dl6AiX37G-a7w3v2CCa))\"},children:\"Features\"})}),className:\"framer-b7fp7k\",layoutDependency:layoutDependency,layoutId:\"mHiSIHdfP\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-Dl6AiX37G-a7w3v2CCa)\",\"--variable-reference-Dl6AiX37G-a7w3v2CCa\":Dl6AiX37G,opacity:.6},text:kcKdHX2wm,variants:{\"AY2iJjz0z-hover\":{opacity:1},TuI1FkLhZ:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-jyo5yj\",layoutDependency:layoutDependency,layoutId:\"fLarbH1fh\",style:{rotate:0},variants:{TuI1FkLhZ:{rotate:-180}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16uib3x-container\",layoutDependency:layoutDependency,layoutId:\"ay1YqJbqw-container\",style:{opacity:.6},variants:{TuI1FkLhZ:{opacity:1}},children:/*#__PURE__*/_jsx(Phosphor,{color:Dl6AiX37G,height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretDown\",id:\"ay1YqJbqw\",layoutId:\"ay1YqJbqw\",mirrored:false,onClick:onClick1jfbi8x,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})]})})})})});});const css=['.framer-bsMNF[data-border=\"true\"]::after, .framer-bsMNF [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-bsMNF.framer-roi0j8, .framer-bsMNF .framer-roi0j8 { display: block; }\",\".framer-bsMNF.framer-1wdy4ks { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-bsMNF .framer-b7fp7k { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-bsMNF .framer-jyo5yj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 12px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 12px; }\",\".framer-bsMNF .framer-16uib3x-container { flex: none; height: 12px; position: relative; width: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bsMNF.framer-1wdy4ks, .framer-bsMNF .framer-jyo5yj { gap: 0px; } .framer-bsMNF.framer-1wdy4ks > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-bsMNF.framer-1wdy4ks > :first-child, .framer-bsMNF .framer-jyo5yj > :first-child { margin-left: 0px; } .framer-bsMNF.framer-1wdy4ks > :last-child, .framer-bsMNF .framer-jyo5yj > :last-child { margin-right: 0px; } .framer-bsMNF .framer-jyo5yj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-bsMNF.framer-v-162iq3o.framer-1wdy4ks { cursor: pointer; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 77\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"TuI1FkLhZ\":{\"layout\":[\"auto\",\"auto\"]},\"AY2iJjz0z\":{\"layout\":[\"auto\",\"auto\"]},\"GF2iy3eg1\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"kcKdHX2wm\":\"title\",\"qe8e_sxRy\":\"hover\",\"Dl6AiX37G\":\"color\",\"NKudH2mEX\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const Framera7w3v2CCa=withCSS(Component,css,\"framer-bsMNF\");export default Framera7w3v2CCa;Framera7w3v2CCa.displayName=\"Nav/Menu\";Framera7w3v2CCa.defaultProps={height:24,width:77};addPropertyControls(Framera7w3v2CCa,{variant:{options:[\"pulFlqedB\",\"TuI1FkLhZ\",\"AY2iJjz0z\"],optionTitles:[\"Open\",\"Closed\",\"Simple\"],title:\"Variant\",type:ControlType.Enum},kcKdHX2wm:{defaultValue:\"Features\",displayTextArea:false,title:\"Title\",type:ControlType.String},qe8e_sxRy:{title:\"Hover\",type:ControlType.EventHandler},Dl6AiX37G:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color\",type:ControlType.Color},NKudH2mEX:{title:\"Link\",type:ControlType.Link}});addFonts(Framera7w3v2CCa,[...PhosphorFonts,...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framera7w3v2CCa\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TuI1FkLhZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AY2iJjz0z\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GF2iy3eg1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"kcKdHX2wm\\\":\\\"title\\\",\\\"qe8e_sxRy\\\":\\\"hover\\\",\\\"Dl6AiX37G\\\":\\\"color\\\",\\\"NKudH2mEX\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"24\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"77\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./a7w3v2CCa.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import NavMenu from\"https://framerusercontent.com/modules/bplaDC3zUR9ClgrpNEP9/TlIrFKIUp01Loy44sQoV/a7w3v2CCa.js\";import Button from\"https://framerusercontent.com/modules/y36QuPMSLz46blOt4IKC/YXuStrjm6FSSmnNOkavW/hljNqlOx9.js\";import LogoCopy from\"https://framerusercontent.com/modules/32ucxCWpNflgRja0Kmwq/MnW2e2u1EgAieCVPi7Ni/zuxpEa9Qn.js\";const LogoCopyFonts=getFonts(LogoCopy);const ButtonFonts=getFonts(Button);const NavMenuFonts=getFonts(NavMenu);const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"J7TtQthx_\",\"onuwv4s61\",\"z45OQZKmF\",\"X7SD0dZ5V\",\"DhvD9HN0U\"];const serializationHash=\"framer-r0582\";const variantClassNames={DhvD9HN0U:\"framer-v-1o4ycbt\",J7TtQthx_:\"framer-v-1pmqjcu\",onuwv4s61:\"framer-v-w2rvpf\",X7SD0dZ5V:\"framer-v-1p5zilx\",z45OQZKmF:\"framer-v-1nw1we0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone Open\":\"z45OQZKmF\",\"Variant club page mobile\":\"DhvD9HN0U\",\"Variant Club page\":\"X7SD0dZ5V\",Desktop:\"J7TtQthx_\",Phone:\"onuwv4s61\"};const getProps=({background,backgroundBlur,height,id,text,width,...props})=>{return{...props,LylWg8UG8:backgroundBlur??props.LylWg8UG8,oqrd6d5I6:background??props.oqrd6d5I6??\"rgb(255, 255, 255)\",Tyvh_HtHO:text??props.Tyvh_HtHO??\"rgb(0, 0, 0)\",variant:humanReadableVariantMap[props.variant]??props.variant??\"J7TtQthx_\"};};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,Tyvh_HtHO,oqrd6d5I6,LylWg8UG8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"J7TtQthx_\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onClick1jfbi8x=activeVariantCallback(async(...args)=>{setVariant(\"vZNkcdFXx\");});const onClickagw30o=activeVariantCallback(async(...args)=>{setVariant(\"z45OQZKmF\");});const onClickbcknn2=activeVariantCallback(async(...args)=>{setVariant(\"onuwv4s61\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"X7SD0dZ5V\")return true;return false;};const isDisplayed1=()=>{if([\"onuwv4s61\",\"z45OQZKmF\",\"DhvD9HN0U\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed2=()=>{if([\"onuwv4s61\",\"z45OQZKmF\",\"DhvD9HN0U\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"z45OQZKmF\",\"DhvD9HN0U\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"DhvD9HN0U\")return true;return false;};const isDisplayed5=()=>{if([\"z45OQZKmF\",\"DhvD9HN0U\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1pmqjcu\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"J7TtQthx_\",ref:ref??ref1,style:{backdropFilter:`blur(${LylWg8UG8}px)`,backgroundColor:oqrd6d5I6,...style},...addPropertyOverrides({DhvD9HN0U:{\"data-framer-name\":\"Variant club page mobile\"},onuwv4s61:{\"data-framer-name\":\"Phone\"},X7SD0dZ5V:{\"data-framer-name\":\"Variant Club page\"},z45OQZKmF:{\"data-framer-name\":\"Phone Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aas860\",layoutDependency:layoutDependency,layoutId:\"OmPYeV0DI\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-80)/2)+20,...addPropertyOverrides({DhvD9HN0U:{y:(componentViewport?.y||0)+0+0+20},X7SD0dZ5V:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-94)/2)+27},z45OQZKmF:{y:(componentViewport?.y||0)+0+0+20}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wh96jr-container\",layoutDependency:layoutDependency,layoutId:\"pIvMYhOVZ-container\",nodeId:\"pIvMYhOVZ\",rendersWithMotion:true,scopeId:\"hH1DdpI8D\",children:/*#__PURE__*/_jsx(LogoCopy,{height:\"100%\",id:\"pIvMYhOVZ\",layoutId:\"pIvMYhOVZ\",style:{height:\"100%\"},variant:\"jw_muapfN\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1brz4np\",layoutDependency:layoutDependency,layoutId:\"g3TWzsekv\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({X7SD0dZ5V:{height:54,y:(componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-94)/2)+20+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gz7qgt-container\",layoutDependency:layoutDependency,layoutId:\"v9Gjs2lno-container\",nodeId:\"v9Gjs2lno\",rendersWithMotion:true,scopeId:\"hH1DdpI8D\",children:/*#__PURE__*/_jsx(Button,{eszixBaDA:10,height:\"100%\",id:\"v9Gjs2lno\",ik9I5qIGz:true,J0LC2FGV8:true,KJK1sV1GB:\"Book a demo\",layoutId:\"v9Gjs2lno\",RmkZjgJwi:\"ArrowRight\",UsLusPFRg:\"rgb(0, 0, 0)\",variant:\"PqgBulBPi\",width:\"100%\",yTZZaFOb3:\"https://calendar.app.google/q6hMhRmaSHKfT8wL8\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"IilknqsQI\"},implicitPathVariables:undefined},{href:{webPageId:\"IilknqsQI\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xby698-container\",layoutDependency:layoutDependency,layoutId:\"c6wveJwuu-container\",nodeId:\"c6wveJwuu\",rendersWithMotion:true,scopeId:\"hH1DdpI8D\",children:/*#__PURE__*/_jsx(NavMenu,{Dl6AiX37G:\"rgb(0, 0, 0)\",height:\"100%\",id:\"c6wveJwuu\",kcKdHX2wm:\"For Athletes\",layoutId:\"c6wveJwuu\",NKudH2mEX:resolvedLinks[0],variant:\"AY2iJjz0z\",width:\"100%\",...addPropertyOverrides({X7SD0dZ5V:{NKudH2mEX:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"d0AK7dBG8\"},implicitPathVariables:undefined},{href:{webPageId:\"d0AK7dBG8\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1x7v7kr-container\",layoutDependency:layoutDependency,layoutId:\"d7cFF4JU3-container\",nodeId:\"d7cFF4JU3\",rendersWithMotion:true,scopeId:\"hH1DdpI8D\",children:/*#__PURE__*/_jsx(NavMenu,{Dl6AiX37G:\"rgb(0, 0, 0)\",height:\"100%\",id:\"d7cFF4JU3\",kcKdHX2wm:\" For Clubs and Coaches\",layoutId:\"d7cFF4JU3\",NKudH2mEX:resolvedLinks1[0],variant:\"AY2iJjz0z\",width:\"100%\",...addPropertyOverrides({X7SD0dZ5V:{NKudH2mEX:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17lc3dw-container\",\"data-framer-name\":\"Menu\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rJ6U1Akpz-container\",name:\"Menu\",nodeId:\"rJ6U1Akpz\",rendersWithMotion:true,scopeId:\"hH1DdpI8D\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"List\",id:\"rJ6U1Akpz\",layoutId:\"rJ6U1Akpz\",mirrored:false,name:\"Menu\",onClick:onClick1jfbi8x,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({DhvD9HN0U:{color:Tyvh_HtHO,iconSelection:\"X\",onClick:onClickbcknn2},onuwv4s61:{color:Tyvh_HtHO,onClick:onClickagw30o},z45OQZKmF:{color:Tyvh_HtHO,iconSelection:\"X\",onClick:onClickbcknn2}},baseVariant,gestureVariant)})})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4bjjip\",layoutDependency:layoutDependency,layoutId:\"tNLARxRIT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6yy0gv\",layoutDependency:layoutDependency,layoutId:\"NXfxn_d7T\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"IilknqsQI\"},implicitPathVariables:undefined},{href:{webPageId:\"IilknqsQI\"},implicitPathVariables:undefined},{href:{webPageId:\"IilknqsQI\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-u5m3t1-container\",layoutDependency:layoutDependency,layoutId:\"wWIMrMmun-container\",nodeId:\"wWIMrMmun\",rendersWithMotion:true,scopeId:\"hH1DdpI8D\",children:/*#__PURE__*/_jsx(NavMenu,{Dl6AiX37G:\"rgb(0, 0, 0)\",height:\"100%\",id:\"wWIMrMmun\",kcKdHX2wm:\"For Athletes\",layoutId:\"wWIMrMmun\",NKudH2mEX:resolvedLinks2[0],variant:\"AY2iJjz0z\",width:\"100%\",...addPropertyOverrides({DhvD9HN0U:{NKudH2mEX:resolvedLinks2[2]},z45OQZKmF:{NKudH2mEX:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({DhvD9HN0U:{height:54,y:(componentViewport?.y||0)+0+90+20+0+0+88}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cywd2d-container\",layoutDependency:layoutDependency,layoutId:\"NagJ9RMBb-container\",nodeId:\"NagJ9RMBb\",rendersWithMotion:true,scopeId:\"hH1DdpI8D\",children:/*#__PURE__*/_jsx(Button,{eszixBaDA:10,height:\"100%\",id:\"NagJ9RMBb\",ik9I5qIGz:true,J0LC2FGV8:true,KJK1sV1GB:\"Book a demo\",layoutId:\"NagJ9RMBb\",RmkZjgJwi:\"ArrowRight\",UsLusPFRg:\"rgb(0, 0, 0)\",variant:\"PqgBulBPi\",width:\"100%\",yTZZaFOb3:\"https://calendar.app.google/q6hMhRmaSHKfT8wL8\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"d0AK7dBG8\"},implicitPathVariables:undefined},{href:{webPageId:\"d0AK7dBG8\"},implicitPathVariables:undefined},{href:{webPageId:\"d0AK7dBG8\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9umz9z-container\",layoutDependency:layoutDependency,layoutId:\"Tod8CxkAF-container\",nodeId:\"Tod8CxkAF\",rendersWithMotion:true,scopeId:\"hH1DdpI8D\",children:/*#__PURE__*/_jsx(NavMenu,{Dl6AiX37G:\"rgb(0, 0, 0)\",height:\"100%\",id:\"Tod8CxkAF\",kcKdHX2wm:\"For Clubs and Coaches\",layoutId:\"Tod8CxkAF\",NKudH2mEX:resolvedLinks3[0],variant:\"AY2iJjz0z\",width:\"100%\",...addPropertyOverrides({DhvD9HN0U:{NKudH2mEX:resolvedLinks3[2]},z45OQZKmF:{NKudH2mEX:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})})]}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-149sc7l-container\",layoutDependency:layoutDependency,layoutId:\"E4pihRaKD-container\",nodeId:\"E4pihRaKD\",rendersWithMotion:true,scopeId:\"hH1DdpI8D\",children:/*#__PURE__*/_jsx(Button,{eszixBaDA:10,height:\"100%\",id:\"E4pihRaKD\",ik9I5qIGz:false,J0LC2FGV8:false,KJK1sV1GB:\"Book a demo\",layoutId:\"E4pihRaKD\",RmkZjgJwi:\"ArrowRight\",UsLusPFRg:\"rgb(0, 0, 0)\",variant:\"PqgBulBPi\",width:\"100%\",yTZZaFOb3:\"https://apps.apple.com/ca/app/communiti/id1551306754\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-r0582.framer-1977ihu, .framer-r0582 .framer-1977ihu { display: block; }\",\".framer-r0582.framer-1pmqjcu { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1120px; }\",\".framer-r0582 .framer-1aas860 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1600px; overflow: visible; padding: 20px; position: relative; width: 1px; z-index: 0; }\",\".framer-r0582 .framer-1wh96jr-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-r0582 .framer-1brz4np { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-r0582 .framer-1gz7qgt-container, .framer-r0582 .framer-1xby698-container, .framer-r0582 .framer-1x7v7kr-container, .framer-r0582 .framer-u5m3t1-container, .framer-r0582 .framer-cywd2d-container, .framer-r0582 .framer-9umz9z-container, .framer-r0582 .framer-149sc7l-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-r0582 .framer-17lc3dw-container { flex: none; height: 28px; position: relative; width: 28px; }\",\".framer-r0582 .framer-4bjjip { 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: center; overflow: visible; padding: 20px; position: relative; width: 1px; }\",\".framer-r0582 .framer-6yy0gv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-r0582.framer-1pmqjcu, .framer-r0582 .framer-1brz4np, .framer-r0582 .framer-4bjjip, .framer-r0582 .framer-6yy0gv { gap: 0px; } .framer-r0582.framer-1pmqjcu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-r0582.framer-1pmqjcu > :first-child, .framer-r0582 .framer-1brz4np > :first-child { margin-left: 0px; } .framer-r0582.framer-1pmqjcu > :last-child, .framer-r0582 .framer-1brz4np > :last-child { margin-right: 0px; } .framer-r0582 .framer-1brz4np > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-r0582 .framer-4bjjip > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-r0582 .framer-4bjjip > :first-child, .framer-r0582 .framer-6yy0gv > :first-child { margin-top: 0px; } .framer-r0582 .framer-4bjjip > :last-child, .framer-r0582 .framer-6yy0gv > :last-child { margin-bottom: 0px; } .framer-r0582 .framer-6yy0gv > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-r0582.framer-v-w2rvpf.framer-1pmqjcu { width: 390px; }\",\".framer-r0582.framer-v-1nw1we0.framer-1pmqjcu, .framer-r0582.framer-v-1o4ycbt.framer-1pmqjcu { flex-direction: column; justify-content: flex-start; min-height: calc(var(--framer-viewport-height, 100vh) * 1); width: 390px; }\",\".framer-r0582.framer-v-1nw1we0 .framer-1aas860, .framer-r0582.framer-v-1nw1we0 .framer-4bjjip, .framer-r0582.framer-v-1o4ycbt .framer-1aas860, .framer-r0582.framer-v-1o4ycbt .framer-4bjjip { flex: none; width: 100%; }\",\".framer-r0582.framer-v-1nw1we0 .framer-1brz4np, .framer-r0582.framer-v-1o4ycbt .framer-1brz4np { flex-direction: column; }\",\".framer-r0582.framer-v-1nw1we0 .framer-17lc3dw-container, .framer-r0582.framer-v-1o4ycbt .framer-17lc3dw-container { order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-r0582.framer-v-1nw1we0.framer-1pmqjcu, .framer-r0582.framer-v-1nw1we0 .framer-1brz4np { gap: 0px; } .framer-r0582.framer-v-1nw1we0.framer-1pmqjcu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-r0582.framer-v-1nw1we0.framer-1pmqjcu > :first-child, .framer-r0582.framer-v-1nw1we0 .framer-1brz4np > :first-child { margin-top: 0px; } .framer-r0582.framer-v-1nw1we0.framer-1pmqjcu > :last-child, .framer-r0582.framer-v-1nw1we0 .framer-1brz4np > :last-child { margin-bottom: 0px; } .framer-r0582.framer-v-1nw1we0 .framer-1brz4np > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-r0582.framer-v-1p5zilx .framer-1wh96jr-container, .framer-r0582.framer-v-1p5zilx .framer-1xby698-container, .framer-r0582.framer-v-1o4ycbt .framer-u5m3t1-container { order: 0; }\",\".framer-r0582.framer-v-1p5zilx .framer-1brz4np, .framer-r0582.framer-v-1p5zilx .framer-1x7v7kr-container, .framer-r0582.framer-v-1o4ycbt .framer-9umz9z-container { order: 1; }\",\".framer-r0582.framer-v-1p5zilx .framer-1gz7qgt-container, .framer-r0582.framer-v-1o4ycbt .framer-cywd2d-container { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-r0582.framer-v-1o4ycbt.framer-1pmqjcu, .framer-r0582.framer-v-1o4ycbt .framer-1brz4np { gap: 0px; } .framer-r0582.framer-v-1o4ycbt.framer-1pmqjcu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-r0582.framer-v-1o4ycbt.framer-1pmqjcu > :first-child, .framer-r0582.framer-v-1o4ycbt .framer-1brz4np > :first-child { margin-top: 0px; } .framer-r0582.framer-v-1o4ycbt.framer-1pmqjcu > :last-child, .framer-r0582.framer-v-1o4ycbt .framer-1brz4np > :last-child { margin-bottom: 0px; } .framer-r0582.framer-v-1o4ycbt .framer-1brz4np > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 1120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"onuwv4s61\":{\"layout\":[\"fixed\",\"auto\"]},\"z45OQZKmF\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"X7SD0dZ5V\":{\"layout\":[\"fixed\",\"auto\"]},\"DhvD9HN0U\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]}}}\n * @framerVariables {\"Tyvh_HtHO\":\"text\",\"oqrd6d5I6\":\"background\",\"LylWg8UG8\":\"backgroundBlur\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhH1DdpI8D=withCSS(Component,css,\"framer-r0582\");export default FramerhH1DdpI8D;FramerhH1DdpI8D.displayName=\"Nav Simple\";FramerhH1DdpI8D.defaultProps={height:80,width:1120};addPropertyControls(FramerhH1DdpI8D,{variant:{options:[\"J7TtQthx_\",\"onuwv4s61\",\"z45OQZKmF\",\"X7SD0dZ5V\",\"DhvD9HN0U\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Open\",\"Variant Club page\",\"Variant club page mobile\"],title:\"Variant\",type:ControlType.Enum},Tyvh_HtHO:{defaultValue:\"rgb(0, 0, 0)\",title:\"Text\",type:ControlType.Color},oqrd6d5I6:{defaultValue:\"rgb(255, 255, 255)\",title:\"Background\",type:ControlType.Color},LylWg8UG8:{defaultValue:0,max:7,title:\"Background Blur\",type:ControlType.Number}});addFonts(FramerhH1DdpI8D,[{explicitInter:true,fonts:[]},...LogoCopyFonts,...ButtonFonts,...NavMenuFonts,...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhH1DdpI8D\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"onuwv4s61\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"z45OQZKmF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"X7SD0dZ5V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DhvD9HN0U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]}}}\",\"framerIntrinsicHeight\":\"80\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"Tyvh_HtHO\\\":\\\"text\\\",\\\"oqrd6d5I6\\\":\\\"background\\\",\\\"LylWg8UG8\\\":\\\"backgroundBlur\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1120\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "color", "height", "hover", "id", "link", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "kcKdHX2wm", "qe8e_sxRy", "Dl6AiX37G", "NKudH2mEX", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntereq17gl", "args", "onClick1jfbi8x", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "Link", "u", "cx", "RichText2", "css", "Framera7w3v2CCa", "withCSS", "a7w3v2CCa_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "LogoCopyFonts", "getFonts", "zuxpEa9Qn_default", "ButtonFonts", "hljNqlOx9_default", "NavMenuFonts", "a7w3v2CCa_default", "PhosphorFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "backgroundBlur", "height", "id", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Tyvh_HtHO", "oqrd6d5I6", "LylWg8UG8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onClick1jfbi8x", "args", "onClickagw30o", "onClickbcknn2", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "css", "FramerhH1DdpI8D", "withCSS", "hH1DdpI8D_default", "addPropertyControls", "ControlType", "addFonts"]
}
