{"version":3,"file":"eQ96sAfjM.CyD7FmU3.mjs","names":["useState","mediaQuery","Image","fonts","css","className","css","Material","useRef","className"],"sources":["https:/framerusercontent.com/modules/n9cR4gFLy0DjoxfkLrIe/9bbvaZD8RsNyj0rYVQ4z/Shared.js","https:/framerusercontent.com/modules/oz8LbimHQqM5Ulxjy5PL/LvEYgpF1IptUoCC86ZkX/ThemeImage.js","https:/framerusercontent.com/modules/yCHisqL3vUVWXGPYg1L9/r6a0yoMvWfVG0RLqqtiD/eyMiAD1fQ.js","https:/framerusercontent.com/modules/kAJeSYQOfT4sjBB5Jx8e/NDzNbBkO6zbZZ0SZGWQn/ro7OPezbn.js","https:/framerusercontent.com/modules/dEoTKhDddLabYoQxLi20/CzUncRo8p7FQmYhG4Gar/eQ96sAfjM.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType}from\"framer\";import{motion}from\"framer-motion\";export const borderPropertyControl=(hidden=null)=>({type:ControlType.Object,optional:true,hidden,controls:{color:{type:ControlType.Color,defaultValue:\"#222\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}});export function Border({width,widthIsMixed,widthTop,widthRight,widthBottom,widthLeft,style,color,transition}){return /*#__PURE__*/_jsx(motion.div,{animate:{borderColor:color},style:{position:\"absolute\",inset:0,borderWidth:widthIsMixed?`${widthTop}px ${widthRight}px ${widthBottom}px ${widthLeft}px`:`${width}px`,borderStyle:style,borderRadius:\"inherit\",pointerEvents:\"none\"},initial:false,transition:transition});}export function EmptyState({title,subtitle,maxWidth=0}){return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",gap:16,backgroundColor:\"rgba(136, 85, 255, 0.1)\",borderRadius:6,border:\"1px dashed rgb(136, 85, 255)\",color:\"rgb(136, 85, 255)\",fontSize:16,padding:20,minHeight:200,maxWidth:maxWidth||undefined},children:[/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontWeight:600,textAlign:\"center\"},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{margin:0,opacity:.7,// maxWidth: 500,\nlineHeight:1.5,textAlign:\"center\"},children:subtitle})]});}EmptyState.displayName=\"Empty State\";\nexport const __FramerMetadata__ = {\"exports\":{\"EmptyState\":{\"type\":\"reactComponent\",\"name\":\"EmptyState\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"Border\":{\"type\":\"reactComponent\",\"name\":\"Border\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderPropertyControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Shared.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,Image}from\"framer\";import{useState,useEffect}from\"react\";import{EmptyState}from\"https://framerusercontent.com/modules/n9cR4gFLy0DjoxfkLrIe/9bbvaZD8RsNyj0rYVQ4z/Shared.js\";import{borderPropertyControl,Border}from\"https://framerusercontent.com/modules/n9cR4gFLy0DjoxfkLrIe/9bbvaZD8RsNyj0rYVQ4z/Shared.js\";const THEME_ATTRIBUTE=\"framestack-theme\";const SIGNAL_NAME=\"framestack-theme-changed\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function ThemeImage(props){var _props_dark,_props_light;const[isDarkTheme,setIsDarkTheme]=useState(null);useEffect(()=>{const updateTheme=()=>{// For compatibility with the theme toggle component.\n// https://framestack.co/components/theme-toggle\n// If the site does not have a theme toggle, the device theme will be used.\nconst currentToggleState=document.body.getAttribute(THEME_ATTRIBUTE);// Check if page has the theme toggle attribute.\nif(!currentToggleState||currentToggleState==\"deviceTheme\"){if(document.body.hasAttribute(\"data-framer-theme\")){setIsDarkTheme(document.body.getAttribute(\"data-framer-theme\")==\"dark\");}else{const mediaQuery=window.matchMedia(\"(prefers-color-scheme: dark)\");setIsDarkTheme(mediaQuery.matches);}}else{// Use device theme\nsetIsDarkTheme(currentToggleState==\"dark\")// light or dark\n;}};// Event listener for changes in the device theme\nconst osThemeChange=e=>{setIsDarkTheme(e.matches);};// Update the theme when the page loads\nupdateTheme();// Listen for theme changes made by the theme toggle component\nwindow.addEventListener(SIGNAL_NAME,updateTheme);// Listen for changes in the device theme\nconst mediaQuery=window.matchMedia(\"(prefers-color-scheme: dark)\");mediaQuery.addListener(osThemeChange);// Clean up the event listeners when the theme toggle component unmounts\nreturn()=>{window.removeEventListener(SIGNAL_NAME,updateTheme);mediaQuery.removeListener(osThemeChange);};},[]);// Before the theme has been determined, render nothing.\n// This prevents flashing while the page loads.\nif(isDarkTheme===null){return null;}// Empty state\nif(!((_props_dark=props.dark)===null||_props_dark===void 0?void 0:_props_dark.src)||!((_props_light=props.light)===null||_props_light===void 0?void 0:_props_light.src)){return /*#__PURE__*/_jsx(EmptyState,{title:\"Add dark and light images.\",subtitle:\"Use the properties panel on the right side to upload images for dark and light theme.\"});}return /*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",borderRadius:props.radiusIsMixed?`${props.topLeft}px ${props.topRight}px ${props.bottomRight}px ${props.bottomLeft}px`:`${props.radius}px`,boxShadow:props.shadows,...props.style},children:[/*#__PURE__*/_jsx(Image,{background:{fit:props.sizing,...isDarkTheme?props.dark:props.light},style:{borderRadius:\"inherit\",...props.style}}),/*#__PURE__*/_jsx(Border,{...props.border})]});}ThemeImage.displayName=\"Theme Image\";addPropertyControls(ThemeImage,{light:{type:ControlType.ResponsiveImage},dark:{type:ControlType.ResponsiveImage},sizing:{type:ControlType.Enum,defaultValue:\"cover\",options:[\"fill\",\"fit\",\"stretch\"],optionTitles:[\"Fill\",\"Fit\",\"Stretch\"]},radius:{type:ControlType.FusedNumber,defaultValue:0,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"topLeft\",\"topRight\",\"bottomRight\",\"bottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},border:borderPropertyControl(),shadows:{type:ControlType.BoxShadow,description:\"*Note:* Theming may not work properly in the editor or preview.\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ThemeImage\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ThemeImage.map","// Generated by Framer (9e04080)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Mono-300\",\"GF;DM Mono-regular\",\"GF;DM Mono-italic\",\"GF;DM Mono-300italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmmono/v15/aFTR7PB1QTsUX8KYvrGyIYGnbKX9Rlk.woff2\",weight:\"300\"},{family:\"DM Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmmono/v15/aFTU7PB1QTsUX8KYhhiaBYyMcKw.woff2\",weight:\"400\"},{family:\"DM Mono\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmmono/v15/aFTW7PB1QTsUX8KYth-QBK6JYKzkXw.woff2\",weight:\"400\"},{family:\"DM Mono\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmmono/v15/aFTT7PB1QTsUX8KYth-orYatbYf4VllXuA.woff2\",weight:\"300\"}]}];export const css=['.framer-FbmLX .framer-styles-preset-1tpv7hm:not(.rich-text-wrapper), .framer-FbmLX .framer-styles-preset-1tpv7hm.rich-text-wrapper p { --framer-font-family: \"DM Mono\", monospace; --framer-font-family-bold: \"DM Mono\", monospace; --framer-font-family-bold-italic: \"DM Mono\", monospace; --framer-font-family-italic: \"DM Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 300; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 300; --framer-letter-spacing: 0.1em; --framer-line-height: 2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: right; --framer-text-color: var(--token-4ab25853-8bac-41da-8d03-239ccc768cac, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-FbmLX\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (f8e3bf6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-T2Lr2 .framer-styles-preset-1wicq5s:not(.rich-text-wrapper), .framer-T2Lr2 .framer-styles-preset-1wicq5s.rich-text-wrapper a { --framer-link-current-text-color: var(--token-4ab25853-8bac-41da-8d03-239ccc768cac, #ffffff); --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-4ab25853-8bac-41da-8d03-239ccc768cac, #ffffff); --framer-link-hover-text-decoration: none; --framer-link-text-color: rgba(255, 255, 255, 0.75); --framer-link-text-decoration: none; }\"];export const className=\"framer-T2Lr2\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (2ac8f15)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import ThemeImage from\"https://framerusercontent.com/modules/oz8LbimHQqM5Ulxjy5PL/LvEYgpF1IptUoCC86ZkX/ThemeImage.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/yCHisqL3vUVWXGPYg1L9/r6a0yoMvWfVG0RLqqtiD/eyMiAD1fQ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/kAJeSYQOfT4sjBB5Jx8e/NDzNbBkO6zbZZ0SZGWQn/ro7OPezbn.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/lsGO65lZtGHfKcHGfEzH/1ERomnsoop1zrrm2kGnJ/WqKuzGm9M.js\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const MaterialFonts=getFonts(Material);const ThemeImageFonts=getFonts(ThemeImage);const cycleOrder=[\"QRiI_AcuU\",\"Ubv0U3uKO\",\"SRM8PScF8\",\"h4177Wsf3\"];const serializationHash=\"framer-qbtL5\";const variantClassNames={h4177Wsf3:\"framer-v-1y2xh43\",QRiI_AcuU:\"framer-v-covw0l\",SRM8PScF8:\"framer-v-2u4x49\",Ubv0U3uKO:\"framer-v-tyxb7o\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition3={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - Opened\":\"h4177Wsf3\",\"Phone Open\":\"SRM8PScF8\",Desktop:\"QRiI_AcuU\",Phone:\"Ubv0U3uKO\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"QRiI_AcuU\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QRiI_AcuU\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter5c6gcu=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"h4177Wsf3\");});const onMouseEnter4xrvmh=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"SRM8PScF8\");});const onMouseLeave16jhy24=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"Ubv0U3uKO\");});const onMouseLeaveadf7e0=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"QRiI_AcuU\");});const onMouseEnter1gfq1a4=activeVariantCallback(async(...args)=>{setVariant(\"SRM8PScF8\");});const onTap1gfq1a4=activeVariantCallback(async(...args)=>{setVariant(\"SRM8PScF8\");});const onTapa8mqs3=activeVariantCallback(async(...args)=>{setVariant(\"Ubv0U3uKO\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"h4177Wsf3\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"h4177Wsf3\")return false;return true;};const isDisplayed2=()=>{if([\"Ubv0U3uKO\",\"SRM8PScF8\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"SRM8PScF8\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"SRM8PScF8\")return false;return true;};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.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-covw0l\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-hide-scrollbars\":true,\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"QRiI_AcuU\",onMouseEnter:onMouseEnter5c6gcu,ref:refBinding,style:{backdropFilter:\"blur(0px)\",background:\"linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%)\",WebkitBackdropFilter:\"blur(0px)\",...style},variants:{h4177Wsf3:{backdropFilter:\"blur(24px)\",WebkitBackdropFilter:\"blur(24px)\"},SRM8PScF8:{backdropFilter:\"blur(24px)\",WebkitBackdropFilter:\"blur(24px)\"}},...addPropertyOverrides({h4177Wsf3:{\"data-framer-name\":\"Desktop - Opened\",onMouseLeave:onMouseLeaveadf7e0},SRM8PScF8:{\"data-framer-name\":\"Phone Open\",onMouseEnter:undefined,onMouseLeave:onMouseLeave16jhy24},Ubv0U3uKO:{\"data-framer-name\":\"Phone\",onMouseEnter:onMouseEnter4xrvmh}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ux5gg2\",layoutDependency:layoutDependency,layoutId:\"gEDFh3YZB\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d3letf\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"gsg1ddtqn\",children:[/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-oho762\",\"data-framer-appear-id\":\"oho762\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"cNKVUa0wM\",optimized:true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-dovyxu\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"amz5ogldY\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XHqhd9eRq\"},motionChild:true,nodeId:\"Z6QFHVm9e\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"ABOUT US\"})})})}),className:\"framer-1l9publ\",\"data-framer-name\":\"ABOUT US\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Z6QFHVm9e\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-154sg9l\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"HBJ0BrR2K\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:\"https://blog.nexus.xyz/\",motionChild:true,nodeId:\"Whv_qOXXJ\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"BLOG\"})})})}),className:\"framer-iiyydn\",\"data-framer-name\":\"BLOG\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Whv_qOXXJ\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vn8wsw\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"RKUHERPP3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"T3Z8K_0lr\"},motionChild:true,nodeId:\"ocpsVQLZv\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"MEDIA\"})})})}),className:\"framer-1x6u4xp\",\"data-framer-name\":\"NEWS & MEDIA\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ocpsVQLZv\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w4wl37\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"a8C3UrUct\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:\"https://jobs.ashbyhq.com/nexus.xyz\",motionChild:true,nodeId:\"hwIVacTB3\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"OPEN ROLES\"})})})}),className:\"framer-3972nq\",\"data-framer-name\":\"CAREERS\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hwIVacTB3\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xh89xy\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"ZOCPPwKbp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"aGoxKmPCg\"},motionChild:true,nodeId:\"FiDsyHGJC\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"CAREERS\"})})})}),className:\"framer-1koqnia\",\"data-framer-name\":\"CAREERS\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FiDsyHGJC\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1x7fl51\",\"data-framer-appear-id\":\"1x7fl51\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"QMlITS_Ef\",optimized:true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mmxo4x\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"qTipEsMYv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TxiCAr85a\"},motionChild:true,nodeId:\"Xw4fzlipT\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"zkVM\"})})})}),className:\"framer-chlk3y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Xw4fzlipT\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kfdzw8\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"bE4w6UP4X\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gD9zBnWXq\"},motionChild:true,nodeId:\"HbgPLIhda\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"LAYER 1\"})})})}),className:\"framer-1ifgcyo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HbgPLIhda\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-by9zyh\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"ceoEIKRKe\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pLgsXbgM3\"},motionChild:true,nodeId:\"Q65XHtlGS\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"AI LAB\"})})})}),className:\"framer-t7ex6s\",\"data-framer-name\":\"LAYER 1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Q65XHtlGS\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oya6ha\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"NzmkgfGNk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LUlXHwhyx\"},motionChild:true,nodeId:\"gkA4dMDiT\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"RESEARCH\"})})})}),className:\"framer-l3mqas\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gkA4dMDiT\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-fucwk\",\"data-framer-appear-id\":\"fucwk\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"XeHrnNRKA\",optimized:true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ovf9m6\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"tC7y9TO2d\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Iq3fb_4w_\"},motionChild:true,nodeId:\"lQ_m9LhXv\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"PARTNERSHIPS\"})})})}),className:\"framer-153hdp8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lQ_m9LhXv\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xc9b16\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"jtNekidbm\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HnIZhwdMJ\"},motionChild:true,nodeId:\"zHMDgDKta\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"COMMUNITY\"})})})}),className:\"framer-4zkiuz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zHMDgDKta\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1w0qn66\",\"data-framer-appear-id\":\"1w0qn66\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"MInQYbkJq\",optimized:true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t6mi62\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"yb1QbV2U0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.nexus.xyz/\",motionChild:true,nodeId:\"d3Ecf6ZlH\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"DOCS\"})})})}),className:\"framer-11o4lj8\",\"data-framer-name\":\"DOCS\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"d3Ecf6ZlH\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ilztmk\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"qIQC2EO3g\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:\"https://github.com/nexus-xyz/\",motionChild:true,nodeId:\"pZ9tIUOfM\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"GITHUB\"})})})}),className:\"framer-ojxmy1\",\"data-framer-name\":\"GITHUB\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pZ9tIUOfM\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-58gro\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"sv5GkkMEJ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:\"https://whitepaper.nexus.xyz/\",motionChild:true,nodeId:\"tTByMw2vE\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"WHITEPAPER\"})})})}),className:\"framer-16544gx\",\"data-framer-name\":\"WHITEPAPER\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tTByMw2vE\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1licn7e\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"SCmUIopGU\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:\"https://specification.nexus.xyz\",motionChild:true,nodeId:\"LI5exX_a5\",openInNewTab:true,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"SPECIFICATION\"})})})}),className:\"framer-171k5sf\",\"data-framer-name\":\"WHITEPAPER\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LI5exX_a5\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ayxn5x\",layoutDependency:layoutDependency,layoutId:\"XzUokYyY3\",style:{opacity:0},children:[/*#__PURE__*/_jsx(Link,{href:\"https://github.com/nexus-xyz\",motionChild:true,nodeId:\"GZdlpRMcw\",scopeId:\"eQ96sAfjM\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-fwd63o framer-2ptdmh\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"GZdlpRMcw\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-57832f-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"osYIQqJZx-container\",nodeId:\"osYIQqJZx\",rendersWithMotion:true,scopeId:\"eQ96sAfjM\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-4ab25853-8bac-41da-8d03-239ccc768cac, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"GitHub\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"osYIQqJZx\",layoutId:\"osYIQqJZx\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/NexusLabsHQ\",motionChild:true,nodeId:\"sGmcCRBp4\",scopeId:\"eQ96sAfjM\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17j327t framer-2ptdmh\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"sGmcCRBp4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1114lnb\",\"data-framer-name\":\"graphic\",fill:\"var(--token-4ab25853-8bac-41da-8d03-239ccc768cac, rgb(0, 0, 0))\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"SX7MEewhs\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><!--!Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8l164.9-188.5L26.8 48h145.6l100.5 132.9L389.2 48zm-24.8 373.8h39.1L151.1 88h-42l255.3 333.8z\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://discord.gg/nexusnetwork\",motionChild:true,nodeId:\"BlylESvMt\",openInNewTab:false,scopeId:\"eQ96sAfjM\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1xjwbsg framer-2ptdmh\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"BlylESvMt\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ch8e59\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"o93pew9RV\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 16.931 3.463 C 15.634 2.868 14.266 2.443 12.86 2.2 C 12.834 2.195 12.807 2.208 12.795 2.231 C 12.619 2.544 12.424 2.952 12.287 3.272 C 10.772 3.042 9.231 3.042 7.715 3.272 C 7.563 2.916 7.391 2.569 7.2 2.231 C 7.187 2.208 7.161 2.196 7.135 2.2 C 5.729 2.443 4.361 2.867 3.064 3.463 C 3.053 3.468 3.044 3.476 3.037 3.486 C 0.445 7.36 -0.266 11.138 0.082 14.87 C 0.084 14.888 0.094 14.905 0.109 14.917 C 1.819 16.173 3.476 16.935 5.103 17.441 C 5.129 17.449 5.157 17.439 5.173 17.418 C 5.559 16.893 5.9 16.337 6.195 15.756 C 6.203 15.74 6.204 15.721 6.197 15.704 C 6.191 15.687 6.177 15.674 6.16 15.668 C 5.621 15.462 5.099 15.213 4.6 14.924 C 4.581 14.913 4.569 14.894 4.568 14.873 C 4.567 14.851 4.576 14.831 4.593 14.818 C 4.698 14.74 4.803 14.657 4.903 14.575 C 4.922 14.56 4.947 14.557 4.968 14.567 C 8.241 16.061 11.785 16.061 15.019 14.567 C 15.041 14.556 15.066 14.559 15.085 14.574 C 15.185 14.657 15.29 14.74 15.395 14.818 C 15.431 14.845 15.429 14.901 15.39 14.924 C 14.891 15.215 14.369 15.464 13.829 15.667 C 13.812 15.674 13.798 15.687 13.792 15.704 C 13.785 15.721 13.787 15.74 13.795 15.756 C 14.094 16.334 14.435 16.889 14.816 17.417 C 14.832 17.439 14.86 17.449 14.886 17.441 C 16.52 16.935 18.177 16.173 19.888 14.917 C 19.903 14.906 19.912 14.889 19.914 14.87 C 20.331 10.556 19.215 6.809 16.957 3.487 C 16.951 3.476 16.942 3.468 16.931 3.463 Z M 6.683 12.598 C 5.698 12.598 4.886 11.693 4.886 10.582 C 4.886 9.471 5.682 8.566 6.683 8.566 C 7.693 8.566 8.497 9.478 8.481 10.582 C 8.481 11.693 7.685 12.598 6.683 12.598 Z M 13.329 12.598 C 12.344 12.598 11.532 11.693 11.532 10.582 C 11.532 9.471 12.328 8.566 13.329 8.566 C 14.338 8.566 15.142 9.478 15.126 10.582 C 15.126 11.693 14.338 12.598 13.329 12.598 Z\" fill=\"var(--token-4ab25853-8bac-41da-8d03-239ccc768cac, rgb(255, 255, 255))\"></path></svg>',svgContentId:11757261931,withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s6g21n\",layoutDependency:layoutDependency,layoutId:\"SH6TygniE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1088qod\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"NtX3cLt_I\",...addPropertyOverrides({Ubv0U3uKO:{\"data-highlight\":true,onMouseEnter:onMouseEnter1gfq1a4}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"w5FIXygTv\"},motionChild:true,nodeId:\"GE7Nd9Xvv\",openInNewTab:false,scopeId:\"eQ96sAfjM\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1eel21u framer-2ptdmh\",\"data-framer-name\":\"Home\",layoutDependency:layoutDependency,layoutId:\"GE7Nd9Xvv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sasmrf-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ccO4JLHhD-container\",nodeId:\"ccO4JLHhD\",rendersWithMotion:true,scopeId:\"eQ96sAfjM\",children:/*#__PURE__*/_jsx(ThemeImage,{bottomLeft:0,bottomRight:0,dark:addImageAlt({pixelHeight:389,pixelWidth:1648,src:\"https://framerusercontent.com/images/GH4eYYlpLF9CjHxi5JWsZT4InA.png\",srcSet:\"https://framerusercontent.com/images/GH4eYYlpLF9CjHxi5JWsZT4InA.png?scale-down-to=512 512w,https://framerusercontent.com/images/GH4eYYlpLF9CjHxi5JWsZT4InA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GH4eYYlpLF9CjHxi5JWsZT4InA.png 1648w\"},\"\"),height:\"100%\",id:\"ccO4JLHhD\",layoutId:\"ccO4JLHhD\",light:addImageAlt({pixelHeight:389,pixelWidth:1648,src:\"https://framerusercontent.com/images/GH4eYYlpLF9CjHxi5JWsZT4InA.png\",srcSet:\"https://framerusercontent.com/images/GH4eYYlpLF9CjHxi5JWsZT4InA.png?scale-down-to=512 512w,https://framerusercontent.com/images/GH4eYYlpLF9CjHxi5JWsZT4InA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GH4eYYlpLF9CjHxi5JWsZT4InA.png 1648w\"},\"\"),radius:0,radiusIsMixed:false,shadows:\"\",sizing:\"fit\",style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y7bbq1\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"DjocKiX33\",...addPropertyOverrides({SRM8PScF8:{\"data-highlight\":true,onTap:onTapa8mqs3},Ubv0U3uKO:{\"data-highlight\":true,onTap:onTap1gfq1a4}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-nwqai4\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"XSNxqIIuJ\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{SRM8PScF8:{backgroundColor:\"var(--token-4ab25853-8bac-41da-8d03-239ccc768cac, rgb(0, 0, 0))\",rotate:-45},Ubv0U3uKO:{backgroundColor:\"var(--token-4ab25853-8bac-41da-8d03-239ccc768cac, rgb(0, 0, 0))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-177pgkm\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"Zbn9QQiOg\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{SRM8PScF8:{backgroundColor:\"var(--token-4ab25853-8bac-41da-8d03-239ccc768cac, rgb(0, 0, 0))\",rotate:45},Ubv0U3uKO:{backgroundColor:\"var(--token-4ab25853-8bac-41da-8d03-239ccc768cac, rgb(0, 0, 0))\"}}})]})]}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({SRM8PScF8:{value:transition3},Ubv0U3uKO:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13stuaz\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"tYhUbe7Iq\",style:{opacity:1},variants:{h4177Wsf3:{opacity:1},SRM8PScF8:{opacity:1},Ubv0U3uKO:{opacity:0}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mwnyhq\",layoutDependency:layoutDependency,layoutId:\"d7vSWBqdP\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fud6q9\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"LEUtJfAMx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gsnyum\",\"data-styles-preset\":\"WqKuzGm9M\",style:{\"--framer-text-alignment\":\"right\"},children:\"WHO WE ARE\"})}),className:\"framer-176kjrn\",\"data-framer-name\":\"WHO WE ARE\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SaCna6yhp\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1ro90az\",\"data-framer-appear-id\":\"1ro90az\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"Ij3VPrAdK\",optimized:true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11ddkea\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"j7MxTFMDl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XHqhd9eRq\"},motionChild:true,nodeId:\"uXWKBr647\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"ABOUT US\"})})})}),className:\"framer-c5mzs4\",\"data-framer-name\":\"ABOUT US\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uXWKBr647\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f5ri4d\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"dP2ly9uXA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:\"https://blog.nexus.xyz/\",motionChild:true,nodeId:\"uyoApzm91\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"BLOG\"})})})}),className:\"framer-1febd8t\",\"data-framer-name\":\"BLOG\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uyoApzm91\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q6482z\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"imNcAO6bh\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"T3Z8K_0lr\"},motionChild:true,nodeId:\"wRjtnK4Yb\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"MEDIA\"})})})}),className:\"framer-184ty8n\",\"data-framer-name\":\"NEWS & MEDIA\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wRjtnK4Yb\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-54myqx\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"rCJSSvxO7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:\"https://jobs.ashbyhq.com/nexus.xyz\",motionChild:true,nodeId:\"exMA6ei_U\",openInNewTab:true,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"OPEN ROLES\"})})})}),className:\"framer-11jivc5\",\"data-framer-name\":\"CAREERS\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"exMA6ei_U\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lg0nfk\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"Ou3MnDXAr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"aGoxKmPCg\"},motionChild:true,nodeId:\"gtKLlDPAA\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"CAREERS\"})})})}),className:\"framer-1ejh2dh\",\"data-framer-name\":\"CAREERS\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gtKLlDPAA\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lechez\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"BZn5ujB7l\",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\"},variants:{h4177Wsf3:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},SRM8PScF8:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},Ubv0U3uKO:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({Ubv0U3uKO:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gsnyum\",\"data-styles-preset\":\"WqKuzGm9M\",style:{\"--framer-text-alignment\":\"right\"},children:\"WHAT WE DO\"})}),className:\"framer-1w8xmft\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zbWVpuQZO\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({SRM8PScF8:{verticalAlignment:\"center\"},Ubv0U3uKO:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-ojf5rx\",\"data-framer-appear-id\":\"ojf5rx\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"FrKZFDSxn\",optimized:true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-169y51d\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"fZF34J9KP\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TxiCAr85a\"},motionChild:true,nodeId:\"VgJLiuIus\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"zkVM\"})})})}),className:\"framer-l50dn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VgJLiuIus\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wbwryd\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"m_6GPwM10\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gD9zBnWXq\"},motionChild:true,nodeId:\"wEuyM7hwk\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"LAYER 1\"})})})}),className:\"framer-1trbwvz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wEuyM7hwk\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1se1ysx\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"FqQN4j9Bm\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pLgsXbgM3\"},motionChild:true,nodeId:\"dQH_2iq2Q\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"AI LAB\"})})})}),className:\"framer-1db4h6i\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dQH_2iq2Q\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-sid2bn\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"hsz6nt5GO\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LUlXHwhyx\"},motionChild:true,nodeId:\"wX4Puy9qW\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"RESEARCH\"})})})}),className:\"framer-12dl73b\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wX4Puy9qW\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mr9q71\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"ombvDvBLy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gsnyum\",\"data-styles-preset\":\"WqKuzGm9M\",style:{\"--framer-text-alignment\":\"right\"},children:\"ECOSYSTEM\"})}),className:\"framer-1vbp01m\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LzSUr9V3W\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-6p263c\",\"data-framer-appear-id\":\"6p263c\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"IAAIAS_FY\",optimized:true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11hfzk3\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"Cr9OJE5Sg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Iq3fb_4w_\"},motionChild:true,nodeId:\"BmNowptCB\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"PARTNERSHIPS\"})})})}),className:\"framer-1480qws\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BmNowptCB\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yhh3xd\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"U9v4uqBq_\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HnIZhwdMJ\"},motionChild:true,nodeId:\"wR63BDdvc\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"COMMUNITY\"})})})}),className:\"framer-47i96q\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wR63BDdvc\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i3e9q0\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"IYyjERRR3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gsnyum\",\"data-styles-preset\":\"WqKuzGm9M\",style:{\"--framer-text-alignment\":\"right\"},children:\"DEVELOPERS\"})}),className:\"framer-1unao94\",\"data-framer-name\":\"DEVELOPERS\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NNoV_u77i\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1eeufqb\",\"data-framer-appear-id\":\"1eeufqb\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"xCn6YtUim\",optimized:true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-nclpg2\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"p6GOLYvez\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.nexus.xyz/\",motionChild:true,nodeId:\"hnksydkUR\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"DOCS\"})})})}),className:\"framer-1gtlzp7\",\"data-framer-name\":\"DOCS\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hnksydkUR\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-npuutg\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"moQjxeYHK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:\"https://github.com/nexus-xyz/\",motionChild:true,nodeId:\"a6kmtEwr_\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"GITHUB\"})})})}),className:\"framer-16ua2v4\",\"data-framer-name\":\"GITHUB\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"a6kmtEwr_\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p0u6u\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"XcNFrxTLP\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:\"https://whitepaper.nexus.xyz/\",motionChild:true,nodeId:\"FJzdDiP9a\",openInNewTab:false,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"WHITEPAPER\"})})})}),className:\"framer-xf2qz8\",\"data-framer-name\":\"WHITEPAPER\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FJzdDiP9a\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nyapm7\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"Yc2_fuAfP\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tpv7hm\",\"data-styles-preset\":\"eyMiAD1fQ\",children:/*#__PURE__*/_jsx(Link,{href:\"https://specification.nexus.xyz\",motionChild:true,nodeId:\"e85WIwXJO\",openInNewTab:true,relValues:[],scopeId:\"eQ96sAfjM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"SPECIFICATION\"})})})}),className:\"framer-w9twdh\",\"data-framer-name\":\"WHITEPAPER\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"e85WIwXJO\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m1nt7z\",layoutDependency:layoutDependency,layoutId:\"rKP3SLmvr\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://github.com/nexus-xyz\",motionChild:true,nodeId:\"Rh825_YFv\",openInNewTab:false,scopeId:\"eQ96sAfjM\",...addPropertyOverrides({h4177Wsf3:{href:\"https://github.com/nexus-xyz/\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-hp6u6m framer-2ptdmh\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"Rh825_YFv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-r294f4-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"am1aB5hnm-container\",nodeId:\"am1aB5hnm\",rendersWithMotion:true,scopeId:\"eQ96sAfjM\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-4ab25853-8bac-41da-8d03-239ccc768cac, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"GitHub\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"am1aB5hnm\",layoutId:\"am1aB5hnm\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/NexusLabs\",motionChild:true,nodeId:\"zinOtCJ75\",openInNewTab:false,scopeId:\"eQ96sAfjM\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-7cvjrb framer-2ptdmh\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"zinOtCJ75\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-84h1el\",\"data-framer-name\":\"graphic\",fill:\"var(--token-4ab25853-8bac-41da-8d03-239ccc768cac, rgb(0, 0, 0))\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"Q2CefWcEN\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><!--!Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8l164.9-188.5L26.8 48h145.6l100.5 132.9L389.2 48zm-24.8 373.8h39.1L151.1 88h-42l255.3 333.8z\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://discord.gg/nexus-xyz\",motionChild:true,nodeId:\"o9rXXgvGF\",openInNewTab:false,scopeId:\"eQ96sAfjM\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1buq71 framer-2ptdmh\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"o9rXXgvGF\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19h8hgp\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Jd9eKHGaU\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 16.931 3.463 C 15.634 2.868 14.266 2.443 12.86 2.2 C 12.834 2.195 12.807 2.208 12.795 2.231 C 12.619 2.544 12.424 2.952 12.287 3.272 C 10.772 3.042 9.231 3.042 7.715 3.272 C 7.563 2.916 7.391 2.569 7.2 2.231 C 7.187 2.208 7.161 2.196 7.135 2.2 C 5.729 2.443 4.361 2.867 3.064 3.463 C 3.053 3.468 3.044 3.476 3.037 3.486 C 0.445 7.36 -0.266 11.138 0.082 14.87 C 0.084 14.888 0.094 14.905 0.109 14.917 C 1.819 16.173 3.476 16.935 5.103 17.441 C 5.129 17.449 5.157 17.439 5.173 17.418 C 5.559 16.893 5.9 16.337 6.195 15.756 C 6.203 15.74 6.204 15.721 6.197 15.704 C 6.191 15.687 6.177 15.674 6.16 15.668 C 5.621 15.462 5.099 15.213 4.6 14.924 C 4.581 14.913 4.569 14.894 4.568 14.873 C 4.567 14.851 4.576 14.831 4.593 14.818 C 4.698 14.74 4.803 14.657 4.903 14.575 C 4.922 14.56 4.947 14.557 4.968 14.567 C 8.241 16.061 11.785 16.061 15.019 14.567 C 15.041 14.556 15.066 14.559 15.085 14.574 C 15.185 14.657 15.29 14.74 15.395 14.818 C 15.431 14.845 15.429 14.901 15.39 14.924 C 14.891 15.215 14.369 15.464 13.829 15.667 C 13.812 15.674 13.798 15.687 13.792 15.704 C 13.785 15.721 13.787 15.74 13.795 15.756 C 14.094 16.334 14.435 16.889 14.816 17.417 C 14.832 17.439 14.86 17.449 14.886 17.441 C 16.52 16.935 18.177 16.173 19.888 14.917 C 19.903 14.906 19.912 14.889 19.914 14.87 C 20.331 10.556 19.215 6.809 16.957 3.487 C 16.951 3.476 16.942 3.468 16.931 3.463 Z M 6.683 12.598 C 5.698 12.598 4.886 11.693 4.886 10.582 C 4.886 9.471 5.682 8.566 6.683 8.566 C 7.693 8.566 8.497 9.478 8.481 10.582 C 8.481 11.693 7.685 12.598 6.683 12.598 Z M 13.329 12.598 C 12.344 12.598 11.532 11.693 11.532 10.582 C 11.532 9.471 12.328 8.566 13.329 8.566 C 14.338 8.566 15.142 9.478 15.126 10.582 C 15.126 11.693 14.338 12.598 13.329 12.598 Z\" fill=\"var(--token-4ab25853-8bac-41da-8d03-239ccc768cac, rgb(255, 255, 255))\"></path></svg>',svgContentId:11757261931,withExternalLayout:true})})})]})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qbtL5.framer-2ptdmh, .framer-qbtL5 .framer-2ptdmh { display: block; }\",\".framer-qbtL5.framer-covw0l { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 48px 24px 48px; position: relative; width: 1200px; }\",\".framer-qbtL5 .framer-1ux5gg2, .framer-qbtL5 .framer-1s6g21n { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-qbtL5 .framer-d3letf { 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-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-qbtL5 .framer-oho762, .framer-qbtL5 .framer-1x7fl51, .framer-qbtL5 .framer-fucwk, .framer-qbtL5 .framer-1w0qn66 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qbtL5 .framer-dovyxu, .framer-qbtL5 .framer-154sg9l, .framer-qbtL5 .framer-1vn8wsw, .framer-qbtL5 .framer-1w4wl37, .framer-qbtL5 .framer-xh89xy, .framer-qbtL5 .framer-1mmxo4x, .framer-qbtL5 .framer-kfdzw8, .framer-qbtL5 .framer-by9zyh, .framer-qbtL5 .framer-1oya6ha, .framer-qbtL5 .framer-ovf9m6, .framer-qbtL5 .framer-xc9b16, .framer-qbtL5 .framer-1t6mi62, .framer-qbtL5 .framer-1ilztmk, .framer-qbtL5 .framer-58gro, .framer-qbtL5 .framer-1licn7e, .framer-qbtL5 .framer-fud6q9, .framer-qbtL5 .framer-11ddkea, .framer-qbtL5 .framer-1f5ri4d, .framer-qbtL5 .framer-q6482z, .framer-qbtL5 .framer-54myqx, .framer-qbtL5 .framer-1lg0nfk, .framer-qbtL5 .framer-1lechez, .framer-qbtL5 .framer-169y51d, .framer-qbtL5 .framer-wbwryd, .framer-qbtL5 .framer-1se1ysx, .framer-qbtL5 .framer-sid2bn, .framer-qbtL5 .framer-mr9q71, .framer-qbtL5 .framer-11hfzk3, .framer-qbtL5 .framer-1yhh3xd, .framer-qbtL5 .framer-i3e9q0, .framer-qbtL5 .framer-nclpg2, .framer-qbtL5 .framer-npuutg, .framer-qbtL5 .framer-1p0u6u, .framer-qbtL5 .framer-nyapm7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qbtL5 .framer-1l9publ, .framer-qbtL5 .framer-iiyydn, .framer-qbtL5 .framer-1x6u4xp, .framer-qbtL5 .framer-3972nq, .framer-qbtL5 .framer-1koqnia, .framer-qbtL5 .framer-chlk3y, .framer-qbtL5 .framer-1ifgcyo, .framer-qbtL5 .framer-t7ex6s, .framer-qbtL5 .framer-l3mqas, .framer-qbtL5 .framer-153hdp8, .framer-qbtL5 .framer-4zkiuz, .framer-qbtL5 .framer-11o4lj8, .framer-qbtL5 .framer-ojxmy1, .framer-qbtL5 .framer-16544gx, .framer-qbtL5 .framer-171k5sf, .framer-qbtL5 .framer-176kjrn, .framer-qbtL5 .framer-c5mzs4, .framer-qbtL5 .framer-1febd8t, .framer-qbtL5 .framer-184ty8n, .framer-qbtL5 .framer-11jivc5, .framer-qbtL5 .framer-1ejh2dh, .framer-qbtL5 .framer-1w8xmft, .framer-qbtL5 .framer-l50dn, .framer-qbtL5 .framer-1trbwvz, .framer-qbtL5 .framer-1db4h6i, .framer-qbtL5 .framer-12dl73b, .framer-qbtL5 .framer-1vbp01m, .framer-qbtL5 .framer-1480qws, .framer-qbtL5 .framer-47i96q, .framer-qbtL5 .framer-1unao94, .framer-qbtL5 .framer-1gtlzp7, .framer-qbtL5 .framer-16ua2v4, .framer-qbtL5 .framer-xf2qz8, .framer-qbtL5 .framer-w9twdh { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 112px; word-break: break-word; word-wrap: break-word; }\",\".framer-qbtL5 .framer-ayxn5x, .framer-qbtL5 .framer-1m1nt7z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 32px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qbtL5 .framer-fwd63o, .framer-qbtL5 .framer-17j327t, .framer-qbtL5 .framer-1xjwbsg, .framer-qbtL5 .framer-1eel21u, .framer-qbtL5 .framer-hp6u6m, .framer-qbtL5 .framer-7cvjrb, .framer-qbtL5 .framer-1buq71 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-qbtL5 .framer-57832f-container, .framer-qbtL5 .framer-ch8e59, .framer-qbtL5 .framer-r294f4-container, .framer-qbtL5 .framer-19h8hgp { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-qbtL5 .framer-1114lnb, .framer-qbtL5 .framer-84h1el { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-qbtL5 .framer-1088qod { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qbtL5 .framer-1sasmrf-container { flex: none; height: 32px; position: relative; width: 141px; }\",\".framer-qbtL5 .framer-y7bbq1 { flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-qbtL5 .framer-nwqai4 { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qbtL5 .framer-177pgkm { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qbtL5 .framer-13stuaz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-qbtL5 .framer-1mwnyhq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-qbtL5 .framer-1ro90az, .framer-qbtL5 .framer-ojf5rx, .framer-qbtL5 .framer-6p263c, .framer-qbtL5 .framer-1eeufqb { 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: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qbtL5.framer-v-tyxb7o.framer-covw0l { flex-direction: column; gap: 0px; height: 64px; overflow: hidden; padding: 0px; width: 390px; }\",\".framer-qbtL5.framer-v-tyxb7o .framer-1s6g21n { flex: none; flex-direction: column; order: 0; width: 100%; }\",\".framer-qbtL5.framer-v-tyxb7o .framer-1088qod, .framer-qbtL5.framer-v-2u4x49 .framer-1088qod { gap: unset; height: 64px; justify-content: space-between; padding: 0px 10px 0px 20px; width: 100%; z-index: 2; }\",\".framer-qbtL5.framer-v-tyxb7o .framer-1eel21u, .framer-qbtL5.framer-v-tyxb7o .framer-1sasmrf-container, .framer-qbtL5.framer-v-tyxb7o .framer-1m1nt7z, .framer-qbtL5.framer-v-2u4x49 .framer-1eel21u, .framer-qbtL5.framer-v-2u4x49 .framer-11ddkea, .framer-qbtL5.framer-v-2u4x49 .framer-hp6u6m, .framer-qbtL5.framer-v-1y2xh43 .framer-dovyxu, .framer-qbtL5.framer-v-1y2xh43 .framer-hp6u6m { order: 0; }\",\".framer-qbtL5.framer-v-tyxb7o .framer-y7bbq1, .framer-qbtL5.framer-v-2u4x49 .framer-y7bbq1 { cursor: pointer; height: 44px; order: 1; width: 44px; }\",\".framer-qbtL5.framer-v-tyxb7o .framer-13stuaz { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 0px; justify-content: flex-start; padding: 0px 20px 0px 20px; width: 100%; z-index: 2; }\",\".framer-qbtL5.framer-v-tyxb7o .framer-1mwnyhq, .framer-qbtL5.framer-v-1y2xh43 .framer-1ux5gg2 { flex: none; order: 1; width: 100%; }\",\".framer-qbtL5.framer-v-tyxb7o .framer-1lechez { flex: 1 0 0px; gap: 15px; height: 56px; justify-content: flex-start; overflow: hidden; width: 1px; }\",\".framer-qbtL5.framer-v-tyxb7o .framer-1w8xmft { white-space: pre; width: auto; }\",\".framer-qbtL5.framer-v-2u4x49.framer-covw0l { flex-direction: column; gap: 0px; max-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; overscroll-behavior: contain; padding: 0px; width: 390px; }\",\".framer-qbtL5.framer-v-2u4x49 .framer-1s6g21n { align-content: flex-end; align-items: flex-end; flex: none; flex-direction: column; justify-content: flex-end; order: 0; width: 100%; }\",\".framer-qbtL5.framer-v-2u4x49 .framer-nwqai4, .framer-qbtL5.framer-v-2u4x49 .framer-177pgkm { top: calc(50.00000000000002% - 2px / 2); }\",\".framer-qbtL5.framer-v-2u4x49 .framer-13stuaz { align-content: flex-end; align-items: flex-end; flex: none; flex-direction: column; flex-wrap: wrap; gap: 48px; padding: 24px 24px 48px 24px; width: 100%; z-index: 2; }\",\".framer-qbtL5.framer-v-2u4x49 .framer-1mwnyhq { flex: none; flex-wrap: wrap; gap: 48px; order: 0; width: 100%; }\",\".framer-qbtL5.framer-v-2u4x49 .framer-fud6q9, .framer-qbtL5.framer-v-2u4x49 .framer-i3e9q0 { align-content: flex-end; align-items: flex-end; align-self: stretch; flex-direction: column; gap: 16px; height: auto; justify-content: flex-start; width: 140px; }\",\".framer-qbtL5.framer-v-2u4x49 .framer-1f5ri4d, .framer-qbtL5.framer-v-2u4x49 .framer-1buq71, .framer-qbtL5.framer-v-1y2xh43 .framer-154sg9l, .framer-qbtL5.framer-v-1y2xh43 .framer-1buq71 { order: 2; }\",\".framer-qbtL5.framer-v-2u4x49 .framer-q6482z, .framer-qbtL5.framer-v-1y2xh43 .framer-1vn8wsw { order: 3; }\",\".framer-qbtL5.framer-v-2u4x49 .framer-54myqx, .framer-qbtL5.framer-v-1y2xh43 .framer-1w4wl37 { order: 4; }\",\".framer-qbtL5.framer-v-2u4x49 .framer-1lg0nfk, .framer-qbtL5.framer-v-2u4x49 .framer-7cvjrb, .framer-qbtL5.framer-v-1y2xh43 .framer-xh89xy, .framer-qbtL5.framer-v-1y2xh43 .framer-7cvjrb { order: 1; }\",\".framer-qbtL5.framer-v-2u4x49 .framer-1lechez, .framer-qbtL5.framer-v-2u4x49 .framer-mr9q71 { align-content: flex-end; align-items: flex-end; align-self: stretch; flex-direction: column; gap: 16px; height: auto; justify-content: flex-start; overflow: hidden; width: 140px; }\",\".framer-qbtL5.framer-v-2u4x49 .framer-1m1nt7z { order: 1; width: 100%; }\",\".framer-qbtL5.framer-v-2u4x49 .framer-r294f4-container { z-index: 1; }\",\".framer-qbtL5.framer-v-1y2xh43.framer-covw0l { flex-direction: column; padding: 24px 48px 48px 48px; }\",\".framer-qbtL5.framer-v-1y2xh43 .framer-1s6g21n { flex: none; order: 0; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-qbtL5[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-qbtL5 [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-qbtL5[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-qbtL5 [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-qbtL5[data-hide-scrollbars=\"true\"], .framer-qbtL5 [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }','.framer-qbtL5[data-border=\"true\"]::after, .framer-qbtL5 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ubv0U3uKO\":{\"layout\":[\"fixed\",\"fixed\"]},\"SRM8PScF8\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"h4177Wsf3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramereQ96sAfjM=withCSS(Component,css,\"framer-qbtL5\");export default FramereQ96sAfjM;FramereQ96sAfjM.displayName=\"Navigation\";FramereQ96sAfjM.defaultProps={height:80,width:1200};addPropertyControls(FramereQ96sAfjM,{variant:{options:[\"QRiI_AcuU\",\"Ubv0U3uKO\",\"SRM8PScF8\",\"h4177Wsf3\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Open\",\"Desktop - Opened\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramereQ96sAfjM,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...MaterialFonts,...ThemeImageFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereQ96sAfjM\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ubv0U3uKO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SRM8PScF8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"h4177Wsf3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"80\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eQ96sAfjM.map"],"mappings":"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"}