{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/WCJ4uPUpkFkN1vLtBSsZ/YSCZF7AHnczueZ8ypmpf/Examples.js", "ssg:https://framerusercontent.com/modules/RHepr4KAVdd8YP0GyjLv/tXfV6n3UvJkHqG63ptLR/YqS7FgnlI.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";import React from\"react\";const useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/ _jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}export function withClassMobileMenu(Component){return props=>{useEffect(()=>{const style=document.createElement(\"style\");style.innerHTML=`\n                .mobile-menu.visible {\n                    z-index: 10 !important;\n                    opacity: 1 !important;\n                }\n            `;document.head.appendChild(style);},[]);useEffect(()=>{const handleResize=()=>{if(window.innerWidth>=810){_handleCloseMobileMenu();}};window.addEventListener(\"resize\",handleResize);window.addEventListener(\"orientationchange\",handleResize);return()=>{window.removeEventListener(\"resize\",handleResize);window.removeEventListener(\"orientationchange\",handleResize);};},[]);return /*#__PURE__*/ _jsx(Component,{...props,className:`${props.className} mobile-menu`,style:{...props.style,position:\"fixed\",zIndex:-1,opacity:0,top:0,left:0,height:\"100%\",maxHeight:\"unset !important\"}});};}export function handleOpenMobileMenu(Component){return props=>{const handleClick=()=>{const mobileMenu=document.querySelector(\".mobile-menu\");document.body.style.overflow=\"hidden\";mobileMenu===null||mobileMenu===void 0?void 0:mobileMenu.classList.add(\"visible\");};return /*#__PURE__*/ _jsx(Component,{onClick:handleClick,...props});};}function handleClickBackTo(){window.history.back();}export const backbuttonOverride=()=>{React.useEffect(()=>{const button=document.getElementById(\"backbutton\");if(button){button.addEventListener(\"click\",handleClickBackTo);return()=>button.removeEventListener(\"click\",handleClickBackTo);}},[]);return null;};function _handleCloseMobileMenu(){const mobileMenu=document.querySelector(\".mobile-menu\");document.body.style.overflow=null;mobileMenu===null||mobileMenu===void 0?void 0:mobileMenu.classList.remove(\"visible\");}export function handleCloseMobileMenu(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,onClick:_handleCloseMobileMenu});};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withbackbuttonOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...backbuttonOverride(props)});};}withbackbuttonOverride.displayName=\"backbuttonOverride\";\nexport const __FramerMetadata__ = {\"exports\":{\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"handleOpenMobileMenu\":{\"type\":\"reactHoc\",\"name\":\"handleOpenMobileMenu\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"backbuttonOverride\":{\"type\":\"override\",\"name\":\"backbuttonOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClassMobileMenu\":{\"type\":\"reactHoc\",\"name\":\"withClassMobileMenu\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withbackbuttonOverride\":{\"type\":\"reactHoc\",\"name\":\"withbackbuttonOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"handleCloseMobileMenu\":{\"type\":\"reactHoc\",\"name\":\"handleCloseMobileMenu\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Examples.map", "// Generated by Framer (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{handleCloseMobileMenu,withClassMobileMenu}from\"https://framerusercontent.com/modules/WCJ4uPUpkFkN1vLtBSsZ/YSCZF7AHnczueZ8ypmpf/Examples.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/ZZ4GMLNZuQ6BAJkfEdZg/jMgtrwRYaxDmrcWngKzB/CvCPmj94V.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/1neGo2X6mx5G6vZZmtwm/P7D4RkWFiOl3z4wloDiv/pvZI9DMDg.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/onnXiosWu4X9vNFPmHeV/ZYdYjvBkhVmlTtqphla5/ro7OPezbn.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/k4QsfXVei9quJMh5kXeV/P2qgsgtPyp6xpkWGHXdQ/rRmIGrbPS.js\";import ContactUsButton from\"https://framerusercontent.com/modules/aRuN1ZBgFK1N3et9WQzW/Vl4izrw5p2ZNVhcjBRWe/RgkXMS6zb.js\";import EagLogo from\"https://framerusercontent.com/modules/T00UVtklcBnsYeKQpsrR/3ZICCWp9tKWL4tspgHy9/RiAZV0jG8.js\";const EagLogoFonts=getFonts(EagLogo);const MotionDivHandleCloseMobileMenu=handleCloseMobileMenu(motion.div);const RichTextHandleCloseMobileMenu=handleCloseMobileMenu(RichText);const ContactUsButtonFonts=getFonts(ContactUsButton);const MotionNavWithClassMobileMenu=withClassMobileMenu(motion.nav);const cycleOrder=[\"Aw3YBZVxz\"];const serializationHash=\"framer-fvsgZ\";const variantClassNames={Aw3YBZVxz:\"framer-v-1q9ohte\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Aw3YBZVxz\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1aj2pii=activeVariantCallback(async(...args)=>{setVariant(\"T8g0zWUSh\");});const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(MotionNavWithClassMobileMenu,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1q9ohte\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Aw3YBZVxz\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(0, 0, 0)\",...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vsblug\",\"data-border\":true,\"data-framer-name\":\"Title and Icon\",layoutDependency:layoutDependency,layoutId:\"jOur9oZ3Xg6KyqQqhp\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hdl7gp-container\",layoutDependency:layoutDependency,layoutId:\"jOur9oZ3XcwuSG2YCx-container\",children:/*#__PURE__*/_jsx(EagLogo,{height:\"100%\",id:\"jOur9oZ3XcwuSG2YCx\",layoutId:\"jOur9oZ3XcwuSG2YCx\",Or1jUHEGn:addImageAlt({src:\"https://framerusercontent.com/images/orofp2AwBElja5Qn8HlkU3HPaoQ.svg\"},\"\"),variant:\"yFlMMUwlb\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(MotionDivHandleCloseMobileMenu,{className:\"framer-o1ukf5\",\"data-framer-name\":\"Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jOur9oZ3Xi23R_LC5k\",onTap:onTap1aj2pii,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pagruv\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"jOur9oZ3XiwvTtSX8B\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:-45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t3i553\",\"data-framer-name\":\"Mid\",layoutDependency:layoutDependency,layoutId:\"jOur9oZ3XfRnP5pVCq\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b18wfc\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"jOur9oZ3XEpSzOk0V6\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:45}})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c9qfgi\",layoutDependency:layoutDependency,layoutId:\"NxECVp52M\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3bfayx\",layoutDependency:layoutDependency,layoutId:\"to9cK_JSe\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-aegxjs\",\"data-framer-name\":\"menu items phoen\",layoutDependency:layoutDependency,layoutId:\"jOur9oZ3XWCGrcroI_\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichTextHandleCloseMobileMenu,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9tovx3\",\"data-styles-preset\":\"pvZI9DMDg\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Lb1Cgdkt4\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"About Us\"})})})}),className:\"framer-uvt6b1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jOur9oZ3XSEAjIoR2V\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextHandleCloseMobileMenu,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9tovx3\",\"data-styles-preset\":\"pvZI9DMDg\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"aZc6Nuqtf\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Portfolio\"})})})}),className:\"framer-hxa6g0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jOur9oZ3XMYZjViB5c\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextHandleCloseMobileMenu,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9tovx3\",\"data-styles-preset\":\"pvZI9DMDg\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Jrah98ih9\",webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Our Brands\"})})})}),className:\"framer-gd6sww\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jOur9oZ3XXp1HlQ_v5\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextHandleCloseMobileMenu,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9tovx3\",\"data-styles-preset\":\"pvZI9DMDg\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PQojLfuS0\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Blog\"})})})}),className:\"framer-16v9tm2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qFFdixWNr\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivHandleCloseMobileMenu,{className:\"framer-mhumfm\",layoutDependency:layoutDependency,layoutId:\"lHTesaB3M\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":senvsJCSW\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8xwds-container\",layoutDependency:layoutDependency,layoutId:\"jOur9oZ3XoKkRnNF4J-container\",children:/*#__PURE__*/_jsx(ContactUsButton,{a2ZyzRa0o:\"Play\",aUm4UoB9H:\"Contact Us\",height:\"100%\",id:\"jOur9oZ3XoKkRnNF4J\",l9jSuuw7Q:resolvedLinks[0],layoutId:\"jOur9oZ3XoKkRnNF4J\",style:{height:\"100%\",width:\"100%\"},variant:\"sF1Zq40m8\",WDR9vcoeE:\"rgb(23, 23, 30)\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b2k4il\",\"data-styles-preset\":\"rRmIGrbPS\",children:\"Company\"})}),className:\"framer-hpwxv5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jOur9oZ3XeQdZ5HB_Y\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-v2s1hl\",\"data-styles-preset\":\"CvCPmj94V\",children:/*#__PURE__*/_jsx(Link,{href:\"https://spaceto.io\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"SpaceTo\"})})})}),className:\"framer-1nekt9a\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jOur9oZ3XW9b7qxfvC\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-v2s1hl\",\"data-styles-preset\":\"CvCPmj94V\",children:/*#__PURE__*/_jsx(Link,{href:\"https://altenter.io\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Alt Enter\"})})})}),className:\"framer-1ifkkmt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jOur9oZ3XYja234lzD\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-v2s1hl\",\"data-styles-preset\":\"CvCPmj94V\",children:/*#__PURE__*/_jsx(Link,{href:\"https://streamworks.ae\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Streamworks\"})})})}),className:\"framer-ps8wvz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jOur9oZ3XuCKnXPQO2\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-v2s1hl\",\"data-styles-preset\":\"CvCPmj94V\",children:/*#__PURE__*/_jsx(Link,{href:\"https://wa3in.com\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"WA3IN\"})})})}),className:\"framer-8fwgwb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jOur9oZ3XKvtpf8hJY\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-v2s1hl\",\"data-styles-preset\":\"CvCPmj94V\",children:/*#__PURE__*/_jsx(Link,{href:\"https://argeeks.io\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"ARgeeks\"})})})}),className:\"framer-1309dgb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jOur9oZ3XRQ5MKsJxJ\",verticalAlignment:\"top\",withExternalLayout:true})]})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fvsgZ.framer-jxuq6l, .framer-fvsgZ .framer-jxuq6l { display: block; }\",\".framer-fvsgZ.framer-1q9ohte { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 800px; justify-content: flex-start; max-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: hidden; padding: 0px; position: relative; width: 810px; }\",\".framer-fvsgZ .framer-1vsblug { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 115px; justify-content: space-between; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-fvsgZ .framer-hdl7gp-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-fvsgZ .framer-o1ukf5 { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 32px; }\",\".framer-fvsgZ .framer-pagruv, .framer-fvsgZ .framer-b18wfc { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fvsgZ .framer-t3i553 { flex: none; height: 2px; left: calc(50.00000000000002% - 2px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 2px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fvsgZ .framer-1c9qfgi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; max-height: 100%; overflow: visible; padding: 12px 0px 0px 24px; position: relative; width: 100%; }\",\".framer-fvsgZ .framer-3bfayx { flex: none; height: 100%; max-height: 100%; position: relative; width: 100%; }\",\".framer-fvsgZ .framer-aegxjs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-fvsgZ .framer-uvt6b1, .framer-fvsgZ .framer-hxa6g0, .framer-fvsgZ .framer-gd6sww, .framer-fvsgZ .framer-16v9tm2, .framer-fvsgZ .framer-hpwxv5, .framer-fvsgZ .framer-1nekt9a, .framer-fvsgZ .framer-1ifkkmt, .framer-fvsgZ .framer-ps8wvz, .framer-fvsgZ .framer-8fwgwb, .framer-fvsgZ .framer-1309dgb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-fvsgZ .framer-mhumfm { flex: none; height: 60px; overflow: visible; position: relative; width: 160px; }\",\".framer-fvsgZ .framer-8xwds-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fvsgZ.framer-1q9ohte, .framer-fvsgZ .framer-1c9qfgi, .framer-fvsgZ .framer-aegxjs { gap: 0px; } .framer-fvsgZ.framer-1q9ohte > *, .framer-fvsgZ .framer-1c9qfgi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fvsgZ.framer-1q9ohte > :first-child, .framer-fvsgZ .framer-1c9qfgi > :first-child, .framer-fvsgZ .framer-aegxjs > :first-child { margin-top: 0px; } .framer-fvsgZ.framer-1q9ohte > :last-child, .framer-fvsgZ .framer-1c9qfgi > :last-child, .framer-fvsgZ .framer-aegxjs > :last-child { margin-bottom: 0px; } .framer-fvsgZ .framer-aegxjs > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-fvsgZ[data-border=\"true\"]::after, .framer-fvsgZ [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 13\n * @framerIntrinsicWidth 810\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,null,null,\"100vh\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYqS7FgnlI=withCSS(Component,css,\"framer-fvsgZ\");export default FramerYqS7FgnlI;FramerYqS7FgnlI.displayName=\"Mobile Menu\";FramerYqS7FgnlI.defaultProps={height:13,width:810};addFonts(FramerYqS7FgnlI,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...EagLogoFonts,...ContactUsButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYqS7FgnlI\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"13\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"810\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withClassMobileMenu", "Component", "props", "ue", "style", "handleResize", "window", "_handleCloseMobileMenu", "p", "handleClickBackTo", "window", "backbuttonOverride", "e", "button", "_handleCloseMobileMenu", "mobileMenu", "handleCloseMobileMenu", "Component", "props", "p", "withbackbuttonOverride", "C", "re", "DataObserverContext", "EagLogoFonts", "getFonts", "RiAZV0jG8_default", "MotionDivHandleCloseMobileMenu", "handleCloseMobileMenu", "motion", "RichTextHandleCloseMobileMenu", "RichText2", "ContactUsButtonFonts", "RgkXMS6zb_default", "MotionNavWithClassMobileMenu", "withClassMobileMenu", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "addImageAlt", "image", "alt", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1aj2pii", "args", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "MotionNavWithClassMobileMenu", "cx", "serializationHash", "ComponentViewportProvider", "RiAZV0jG8_default", "MotionDivHandleCloseMobileMenu", "RichTextHandleCloseMobileMenu", "Link", "ResolveLinks", "resolvedLinks", "RgkXMS6zb_default", "RichText2", "css", "FramerYqS7FgnlI", "withCSS", "YqS7FgnlI_default", "addFonts", "EagLogoFonts", "ContactUsButtonFonts", "getFontsFromSharedStyle", "fonts"]
}
