{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/3mJMRmGuzeZ6qKeLspPE/nLkA6xOvUKfc2u4DunT0/N_086XObP.js", "ssg:https://framerusercontent.com/modules/p03t5dZnq6rRjJ0aJsbG/yNusGc6XMmPFslltDSog/Flow.js", "ssg:https://framerusercontent.com/modules/w9Py34m3TMsKKfGNrMoz/BLRb6Idoxi2HqkHh7LUj/xfjMwv3Kz.js"],
  "sourcesContent": ["// Generated by Framer (7e0329e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-rVaQG .framer-styles-preset-y46eo1:not(.rich-text-wrapper), .framer-rVaQG .framer-styles-preset-y46eo1.rich-text-wrapper a { --framer-link-current-text-color: var(--token-edeb14ec-f228-4164-bb7b-6cc5e17a6e7f, #4a4a4a); --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-edeb14ec-f228-4164-bb7b-6cc5e17a6e7f, #4a4a4a); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-edeb14ec-f228-4164-bb7b-6cc5e17a6e7f, #4a4a4a); --framer-link-text-decoration: none; }\"];export const className=\"framer-rVaQG\";\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\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import*as ogl from\"ogl\";export function MouseFlowmapComponent(props){const canvasRef=useRef(null);useEffect(()=>{const{imgSource,falloff,dissipation,imageWidth,imageHeight,shaderType,deformationSize}=props;// Shader options\nconst shaders={Basic:{vertex:`\n          attribute vec2 uv;\n          attribute vec2 position;\n          varying vec2 vUv;\n          void main() {\n            vUv = uv;\n            gl_Position = vec4(position, 0, 1);\n          }\n        `,fragment:`\n          precision highp float;\n          precision highp int;\n          uniform sampler2D tWater;\n          uniform sampler2D tFlow;\n          uniform float uTime;\n          uniform float uDeformationSize;\n          varying vec2 vUv;\n          uniform vec4 res;\n\n          void main() {\n            vec3 flow = texture2D(tFlow, vUv).rgb;\n            vec2 uv = .5 * gl_FragCoord.xy / res.xy;\n            vec2 myUV = (uv - vec2(0.5)) * res.zw + vec2(0.5);\n            myUV -= flow.xy * uDeformationSize;\n            vec3 tex = texture2D(tWater, myUV).rgb;\n\n            gl_FragColor.rgb = vec3(tex.r, tex.g, tex.b);\n            gl_FragColor.a = tex.r;\n          }\n        `},Enhanced:{vertex:`\n          attribute vec2 uv;\n          attribute vec2 position;\n          varying vec2 vUv;\n          void main() {\n            vUv = uv;\n            gl_Position = vec4(position, 0, 1);\n          }\n        `,fragment:`\n          precision highp float;\n          precision highp int;\n          uniform sampler2D tWater;\n          uniform sampler2D tFlow;\n          uniform float uTime;\n          uniform float uDeformationSize;\n          varying vec2 vUv;\n          uniform vec4 res;\n\n          void main() {\n            vec3 flow = texture2D(tFlow, vUv).rgb;\n\n            vec2 uv = .5 * gl_FragCoord.xy / res.xy ;\n            vec2 myUV = (uv - vec2(0.5))*res.zw + vec2(0.5);\n            myUV -= flow.xy * uDeformationSize;\n\n            vec3 tex = texture2D(tWater, myUV).rgb;\n            gl_FragColor = vec4(tex.r, tex.g, tex.b, 1.0);\n          }\n        `}};const vertex=shaders[shaderType].vertex;const fragment=shaders[shaderType].fragment;const canvas=canvasRef.current;if(!canvas)return;const renderer=new ogl.Renderer({canvas,dpr:2,alpha:true,premultipliedAlpha:true});const gl=renderer.gl;canvas.width=imageWidth;canvas.height=imageHeight;let aspect=imageWidth/imageHeight;const mouse=new ogl.Vec2(-1);const velocity=new ogl.Vec2;function resize(){let a1,a2;const imageAspect=imageHeight/imageWidth;if(canvas.height/canvas.width<imageAspect){a1=1;a2=canvas.height/canvas.width/imageAspect;}else{a1=canvas.width/canvas.height*imageAspect;a2=1;}mesh.program.uniforms.res.value=new ogl.Vec4(canvas.width,canvas.height,a1,a2);renderer.setSize(canvas.width,canvas.height);aspect=canvas.width/canvas.height;}const flowmap=new ogl.Flowmap(gl,{falloff,dissipation});const geometry=new ogl.Geometry(gl,{position:{size:2,data:new Float32Array([-1,-1,3,-1,-1,3])},uv:{size:2,data:new Float32Array([0,0,2,0,0,2])}});const texture=new ogl.Texture(gl,{minFilter:gl.LINEAR,magFilter:gl.LINEAR,premultiplyAlpha:true});const img=new Image;img.onload=()=>texture.image=img;img.crossOrigin=\"Anonymous\";img.src=imgSource;let a1,a2;const imageAspect=imageHeight/imageWidth;if(canvas.height/canvas.width<imageAspect){a1=1;a2=canvas.height/canvas.width/imageAspect;}else{a1=canvas.width/canvas.height*imageAspect;a2=1;}const program=new ogl.Program(gl,{vertex,fragment,uniforms:{uTime:{value:0},tWater:{value:texture},res:{value:new ogl.Vec4(canvas.width,canvas.height,a1,a2)},img:{value:new ogl.Vec2(imageWidth,imageHeight)},tFlow:flowmap.uniform,uDeformationSize:{value:deformationSize}}});const mesh=new ogl.Mesh(gl,{geometry,program});window.addEventListener(\"resize\",resize,false);resize();const lastMouse=new ogl.Vec2;let lastTime;function updateMouse(e){e.preventDefault();if(e.changedTouches&&e.changedTouches.length){e.x=e.changedTouches[0].pageX;e.y=e.changedTouches[0].pageY;}if(e.x===undefined){e.x=e.pageX;e.y=e.pageY;}// Boundary check\nconst rect=canvas.getBoundingClientRect();if(e.x<rect.left||e.x>rect.right||e.y<rect.top||e.y>rect.bottom){mouse.set(-1);velocity.set(0);return;}mouse.set((e.x-rect.left)/rect.width,1-(e.y-rect.top)/rect.height);if(!lastTime){lastTime=performance.now();lastMouse.set(e.x,e.y);}const deltaX=e.x-lastMouse.x;const deltaY=e.y-lastMouse.y;lastMouse.set(e.x,e.y);let time=performance.now();let delta=Math.max(10.4,time-lastTime);lastTime=time;velocity.x=deltaX/delta;velocity.y=deltaY/delta;velocity.needsUpdate=true;}const isTouchCapable=\"ontouchstart\"in window;if(isTouchCapable){window.addEventListener(\"touchstart\",updateMouse,false);window.addEventListener(\"touchmove\",updateMouse,{passive:false});}else{window.addEventListener(\"mousemove\",updateMouse,false);}function update(t){requestAnimationFrame(update);if(!velocity.needsUpdate){mouse.set(-1);velocity.set(0);}velocity.needsUpdate=false;flowmap.aspect=aspect;flowmap.mouse.copy(mouse);flowmap.velocity.lerp(velocity,velocity.len?.15:.1);flowmap.update();program.uniforms.uTime.value=t*.01;renderer.render({scene:mesh});}requestAnimationFrame(update);return()=>{window.removeEventListener(\"resize\",resize);window.removeEventListener(\"mousemove\",updateMouse);window.removeEventListener(\"touchstart\",updateMouse);window.removeEventListener(\"touchmove\",updateMouse);};},[props.imgSource,props.falloff,props.dissipation,props.imageWidth,props.imageHeight,props.shaderType,props.deformationSize]);return /*#__PURE__*/_jsx(\"canvas\",{ref:canvasRef,style:{display:\"block\"}});}MouseFlowmapComponent.defaultProps={imgSource:\"img/Alienation.svg\",falloff:.5,dissipation:.9,imageWidth:700,imageHeight:800,shaderType:\"Basic\",deformationSize:.2};addPropertyControls(MouseFlowmapComponent,{imgSource:{type:ControlType.Image,title:\"Image Source\"},shaderType:{type:ControlType.Enum,title:\"Shader Type\",options:[\"Basic\",\"Enhanced\"],optionTitles:[\"Basic\",\"Enhanced\"],defaultValue:\"Basic\"},falloff:{type:ControlType.Number,title:\"Falloff\",defaultValue:.5,min:0,max:1,step:.01},dissipation:{type:ControlType.Number,title:\"Dissipation\",defaultValue:.9,min:0,max:1,step:.01},deformationSize:{type:ControlType.Number,title:\"Deformation Size\",defaultValue:.2,min:0,max:1,step:.01},imageWidth:{type:ControlType.Number,title:\"Image Width\",defaultValue:700,min:16,max:3e3,step:10},imageHeight:{type:ControlType.Number,title:\"Image Height\",defaultValue:800,min:16,max:3e3,step:10}});\nexport const __FramerMetadata__ = {\"exports\":{\"MouseFlowmapComponent\":{\"type\":\"reactComponent\",\"name\":\"MouseFlowmapComponent\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Flow.map", "// Generated by Framer (7e0329e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{MouseFlowmapComponent}from\"https://framerusercontent.com/modules/p03t5dZnq6rRjJ0aJsbG/yNusGc6XMmPFslltDSog/Flow.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/3mJMRmGuzeZ6qKeLspPE/nLkA6xOvUKfc2u4DunT0/N_086XObP.js\";const MouseFlowmapComponentFonts=getFonts(MouseFlowmapComponent);const cycleOrder=[\"rfxFd9ZOD\",\"RjCk3SlJ_\",\"VhULPF76w\"];const serializationHash=\"framer-VbbTD\";const variantClassNames={rfxFd9ZOD:\"framer-v-s12cmh\",RjCk3SlJ_:\"framer-v-lq1rln\",VhULPF76w:\"framer-v-4r3vy8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone - No Margin\":\"VhULPF76w\",Desktop:\"rfxFd9ZOD\",Phone:\"RjCk3SlJ_\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"rfxFd9ZOD\"};};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:\"rfxFd9ZOD\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"RjCk3SlJ_\",\"VhULPF76w\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"RjCk3SlJ_\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"VhULPF76w\")return true;return false;};const isDisplayed3=()=>{if([\"RjCk3SlJ_\",\"VhULPF76w\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-s12cmh\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"rfxFd9ZOD\",ref:refBinding,style:{backgroundColor:\"var(--token-181fc355-5d42-4d5a-922e-9ff5076c713e, rgb(255, 255, 255))\",...style},...addPropertyOverrides({RjCk3SlJ_:{\"data-framer-name\":\"Phone\"},VhULPF76w:{\"data-framer-name\":\"Phone - No Margin\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18q8gwd\",layoutDependency:layoutDependency,layoutId:\"Y44C2W5Bi\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12fv12g\",layoutDependency:layoutDependency,layoutId:\"gwoZzJJzm\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"hd8AvkxiV\",scopeId:\"xfjMwv3Kz\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-11grf58 framer-1u8qzxa\",layoutDependency:layoutDependency,layoutId:\"hd8AvkxiV\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-p0ag5y-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"xlVUPKVvN-container\",nodeId:\"xlVUPKVvN\",rendersWithMotion:true,scopeId:\"xfjMwv3Kz\",children:/*#__PURE__*/_jsx(MouseFlowmapComponent,{deformationSize:.59,dissipation:.9,falloff:.5,height:\"100%\",id:\"xlVUPKVvN\",imageHeight:100,imageWidth:100,imgSource:\"https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png\",layoutId:\"xlVUPKVvN\",shaderType:\"Basic\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2250,intrinsicWidth:2250,pixelHeight:4500,pixelWidth:4500,src:\"https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png 4500w\"},className:\"framer-1fruxjv\",\"data-framer-name\":\"Pamsrojosinfondo\",layoutDependency:layoutDependency,layoutId:\"PvNMGnNMd\",...addPropertyOverrides({RjCk3SlJ_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2250,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(10+((componentViewport?.height||200)-20-80)/2)+0+0+0+0+0),pixelHeight:4500,pixelWidth:4500,sizes:\"100px\",src:\"https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png 4500w\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2250,intrinsicWidth:2250,pixelHeight:4500,pixelWidth:4500,src:\"https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png 4500w\"},className:\"framer-1x4acqt\",\"data-framer-name\":\"Pamsrojosinfondo\",layoutDependency:layoutDependency,layoutId:\"xIernQIaH\",...addPropertyOverrides({VhULPF76w:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2250,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-2250)/2)+0+0+0+0+0),pixelHeight:4500,pixelWidth:4500,sizes:\"100px\",src:\"https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Y9ET2IjcP4iph2whidOPCktUD54.png 4500w\"}}},baseVariant,gestureVariant)})]})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17qzkmj\",layoutDependency:layoutDependency,layoutId:\"eEE5yYjvQ\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Qyh_8KCtr\"},motionChild:true,nodeId:\"V0cjYUdBJ\",openInNewTab:false,scopeId:\"xfjMwv3Kz\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-i4hau9 framer-1u8qzxa\",layoutDependency:layoutDependency,layoutId:\"V0cjYUdBJ\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ml7w8s-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"kS2fpJ13y-container\",nodeId:\"kS2fpJ13y\",rendersWithMotion:true,scopeId:\"xfjMwv3Kz\",children:/*#__PURE__*/_jsx(MouseFlowmapComponent,{deformationSize:.59,dissipation:.9,falloff:.5,height:\"100%\",id:\"kS2fpJ13y\",imageHeight:34,imageWidth:150,imgSource:\"https://framerusercontent.com/images/NPE8R0ZPRaEPoiiBsL7V15Mya0.png\",layoutId:\"kS2fpJ13y\",shaderType:\"Basic\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:180,pixelWidth:799,src:\"https://framerusercontent.com/images/NPE8R0ZPRaEPoiiBsL7V15Mya0.png\",srcSet:\"https://framerusercontent.com/images/NPE8R0ZPRaEPoiiBsL7V15Mya0.png?scale-down-to=512 512w,https://framerusercontent.com/images/NPE8R0ZPRaEPoiiBsL7V15Mya0.png 799w\"},className:\"framer-191k3kq\",layoutDependency:layoutDependency,layoutId:\"Cfwrr9cOK\",...addPropertyOverrides({RjCk3SlJ_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(10+((componentViewport?.height||200)-20-55)/2)+0+0+0),pixelHeight:180,pixelWidth:799,sizes:\"100px\",src:\"https://framerusercontent.com/images/NPE8R0ZPRaEPoiiBsL7V15Mya0.png\",srcSet:\"https://framerusercontent.com/images/NPE8R0ZPRaEPoiiBsL7V15Mya0.png?scale-down-to=512 512w,https://framerusercontent.com/images/NPE8R0ZPRaEPoiiBsL7V15Mya0.png 799w\"}},VhULPF76w:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-55)/2)+0+0+0),pixelHeight:180,pixelWidth:799,sizes:\"100px\",src:\"https://framerusercontent.com/images/NPE8R0ZPRaEPoiiBsL7V15Mya0.png\",srcSet:\"https://framerusercontent.com/images/NPE8R0ZPRaEPoiiBsL7V15Mya0.png?scale-down-to=512 512w,https://framerusercontent.com/images/NPE8R0ZPRaEPoiiBsL7V15Mya0.png 799w\"}}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"B9nQF8cYV\"},motionChild:true,nodeId:\"RYfilfhhW\",scopeId:\"xfjMwv3Kz\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-9lc8jn framer-1u8qzxa\",layoutDependency:layoutDependency,layoutId:\"RYfilfhhW\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kamgme-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"t3TVbTIge-container\",nodeId:\"t3TVbTIge\",rendersWithMotion:true,scopeId:\"xfjMwv3Kz\",children:/*#__PURE__*/_jsx(MouseFlowmapComponent,{deformationSize:.59,dissipation:.9,falloff:.5,height:\"100%\",id:\"t3TVbTIge\",imageHeight:34,imageWidth:150,imgSource:\"https://framerusercontent.com/images/JK10W4KqZbUWYLjiOpm2URGTkzU.png\",layoutId:\"t3TVbTIge\",shaderType:\"Basic\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:180,pixelWidth:799,src:\"https://framerusercontent.com/images/JK10W4KqZbUWYLjiOpm2URGTkzU.png\",srcSet:\"https://framerusercontent.com/images/JK10W4KqZbUWYLjiOpm2URGTkzU.png?scale-down-to=512 512w,https://framerusercontent.com/images/JK10W4KqZbUWYLjiOpm2URGTkzU.png 799w\"},className:\"framer-njfw37\",layoutDependency:layoutDependency,layoutId:\"rLjXZTSvR\",...addPropertyOverrides({RjCk3SlJ_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(10+((componentViewport?.height||200)-20-55)/2)+0+32.5+0+0),pixelHeight:180,pixelWidth:799,sizes:\"100px\",src:\"https://framerusercontent.com/images/JK10W4KqZbUWYLjiOpm2URGTkzU.png\",srcSet:\"https://framerusercontent.com/images/JK10W4KqZbUWYLjiOpm2URGTkzU.png?scale-down-to=512 512w,https://framerusercontent.com/images/JK10W4KqZbUWYLjiOpm2URGTkzU.png 799w\"}},VhULPF76w:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-55)/2)+0+32.5+0+0),pixelHeight:180,pixelWidth:799,sizes:\"100px\",src:\"https://framerusercontent.com/images/JK10W4KqZbUWYLjiOpm2URGTkzU.png\",srcSet:\"https://framerusercontent.com/images/JK10W4KqZbUWYLjiOpm2URGTkzU.png?scale-down-to=512 512w,https://framerusercontent.com/images/JK10W4KqZbUWYLjiOpm2URGTkzU.png 799w\"}}},baseVariant,gestureVariant)})]})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-7ojrfy\",layoutDependency:layoutDependency,layoutId:\"W4x0CL88i\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NodWxhcGEgTGlnaHQ=\",\"--framer-font-family\":'\"Chulapa Light\", \"Chulapa Light Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(74, 74, 74))\"},children:\"All content copyright the artist. No commercial use without express written permission.\"}),/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NodWxhcGEgTGlnaHQ=\",\"--framer-font-family\":'\"Chulapa Light\", \"Chulapa Light Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(74, 74, 74))\"},children:[\"2025, MADE BY \",/*#__PURE__*/_jsx(Link,{href:\"vitreastudio.com\",motionChild:true,nodeId:\"n_BanLR_n\",openInNewTab:true,scopeId:\"xfjMwv3Kz\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-y46eo1\",\"data-styles-preset\":\"N_086XObP\",children:\"V\\xcdTREA STUDIO\"})})]})]}),className:\"framer-wemse\",fonts:[\"CUSTOM;Chulapa Light\"],layoutDependency:layoutDependency,layoutId:\"n_BanLR_n\",style:{\"--extracted-2gxw0f\":\"rgb(74, 74, 74)\",\"--extracted-r6o4lv\":\"rgb(74, 74, 74)\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VbbTD.framer-1u8qzxa, .framer-VbbTD .framer-1u8qzxa { display: block; }\",\".framer-VbbTD.framer-s12cmh { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: 800px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-VbbTD .framer-18q8gwd, .framer-VbbTD .framer-12fv12g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VbbTD .framer-11grf58 { 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-VbbTD .framer-p0ag5y-container, .framer-VbbTD .framer-ml7w8s-container, .framer-VbbTD .framer-kamgme-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-VbbTD .framer-1fruxjv { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); overflow: visible; position: relative; width: 100px; }\",\".framer-VbbTD .framer-1x4acqt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2250px); overflow: visible; position: relative; width: 100px; }\",\".framer-VbbTD .framer-17qzkmj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 20px; position: relative; width: min-content; }\",\".framer-VbbTD .framer-i4hau9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-VbbTD .framer-191k3kq, .framer-VbbTD .framer-njfw37 { flex: none; height: 23px; overflow: hidden; position: relative; width: 100px; }\",\".framer-VbbTD .framer-9lc8jn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-VbbTD .framer-7ojrfy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: min-content; z-index: 1; }\",\".framer-VbbTD .framer-wemse { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 310px; word-break: break-word; word-wrap: break-word; }\",\".framer-VbbTD.framer-v-lq1rln.framer-s12cmh { align-content: center; align-items: center; flex-direction: row; height: min-content; padding: 10px; }\",\".framer-VbbTD.framer-v-lq1rln .framer-18q8gwd, .framer-VbbTD.framer-v-4r3vy8 .framer-18q8gwd { flex: 1 0 0px; width: 1px; }\",\".framer-VbbTD.framer-v-lq1rln .framer-17qzkmj, .framer-VbbTD.framer-v-4r3vy8 .framer-17qzkmj { align-content: flex-end; align-items: flex-end; padding: 0px 20px 0px 0px; }\",\".framer-VbbTD.framer-v-4r3vy8.framer-s12cmh { align-content: center; align-items: center; flex-direction: row; height: min-content; }\",\".framer-VbbTD.framer-v-4r3vy8 .framer-1x4acqt { order: 0; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"RjCk3SlJ_\":{\"layout\":[\"fixed\",\"auto\"]},\"VhULPF76w\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerxfjMwv3Kz=withCSS(Component,css,\"framer-VbbTD\");export default FramerxfjMwv3Kz;FramerxfjMwv3Kz.displayName=\"Menu\";FramerxfjMwv3Kz.defaultProps={height:800,width:400};addPropertyControls(FramerxfjMwv3Kz,{variant:{options:[\"rfxFd9ZOD\",\"RjCk3SlJ_\",\"VhULPF76w\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone - No Margin\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerxfjMwv3Kz,[{explicitInter:true,fonts:[{family:\"Chulapa Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/iKnJlLKbww74v3rS2GTXPmis8.woff2\"}]},...MouseFlowmapComponentFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxfjMwv3Kz\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RjCk3SlJ_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VhULPF76w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"800\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xfjMwv3Kz.map"],
  "mappings": "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",
  "names": ["fontStore", "fonts", "css", "className", "MouseFlowmapComponent", "props", "canvasRef", "pe", "ue", "imgSource", "falloff", "dissipation", "imageWidth", "imageHeight", "shaderType", "deformationSize", "shaders", "vertex", "fragment", "canvas", "renderer", "Renderer", "gl", "aspect", "mouse", "Vec2", "velocity", "resize", "a1", "a2", "imageAspect", "mesh", "Vec4", "flowmap", "Flowmap", "geometry", "Geometry", "texture", "Texture", "img", "program", "Program", "Mesh", "window", "lastMouse", "lastTime", "updateMouse", "rect", "deltaX", "deltaY", "time", "delta", "update", "t", "p", "addPropertyControls", "ControlType", "MouseFlowmapComponentFonts", "getFonts", "MouseFlowmapComponent", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerxfjMwv3Kz", "withCSS", "xfjMwv3Kz_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
