{"version":3,"file":"i8v0PEDjH.DHiKLJs_.mjs","names":["useStore","x","Button","className","css"],"sources":["https:/framer.com/m/framer/store.js@^1.0.0","https:/framer.com/m/Utils-QTIc.js@hDBsItohjMEOACix8wDv","https:/framerusercontent.com/modules/o7kxMNcq1QFbNlxER8ZO/mGYCpj2iAc99jKtNOx5M/CursorImageTrail_Prod.js","https:/framerusercontent.com/modules/aIboMFuJucofwcE3nCAv/wertNdMlyM1t7Wcypozr/i8v0PEDjH.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","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType}from\"framer\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";export const updateChildren=(children,properties)=>{return[{...children,props:{...children.props,children:{...children.props.children,props:{...children.props.children.props,children:{...children.props.children.props.children,props:{...children.props.children.props.children.props,...properties}}}}}}];};export const SettingsMessage=({title,description,containerStyle})=>{return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",textAlign:\"center\",justifyContent:\"center\",backgroundColor:\"rgba(136, 85, 255, 0.1)\",overflow:\"hidden\",...containerStyle},children:[/*#__PURE__*/_jsx(\"span\",{role:\"img\",\"aria-label\":\"icon\",style:{fontSize:\"32px\"},children:\"✨\"}),/*#__PURE__*/_jsxs(\"div\",{style:{maxWidth:\"240px\"},children:[/*#__PURE__*/_jsx(\"h1\",{style:{fontSize:11,color:\"#96F\",fontWeight:600},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:11,color:\"rgba(153, 102, 255, 0.7)\",lineHeight:1.5},children:description})]})]});};export const getBorder=border=>{if(!border)return{border:\"none\"};const{width,color,style}=border;return{borderWidth:width,borderColor:color,borderStyle:style};};export const borderProperty=(title=\"Border\",width=\"0px\",color=\"#fff\")=>({title,type:ControlType.Object,controls:{width:{title:\"Width\",type:ControlType.Padding,defaultValue:width},color:{title:\"Color\",type:ControlType.Color,defaultValue:color},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}});export const getBoxShadow=property=>{const{x,y,blur,color}=property.shadow;return`${x}px ${y}px ${blur}px ${color}`;};export const shadowProperty={type:ControlType.Object,controls:{color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#bfbfbf\"},x:{title:\"X\",type:ControlType.Number,defaultValue:0,min:-100,max:100},y:{title:\"Y\",type:ControlType.Number,defaultValue:0,min:-100,max:100},blur:{title:\"Blur\",type:ControlType.Number,defaultValue:0,min:0,max:100}}};export const heightProperty={height:{type:ControlType.Enum,defaultValue:\"auto\",displaySegmentedControl:true,options:[\"auto\",\"fixed\"],optionTitles:[\"Auto\",\"Fixed\"]},heightNumber:{title:\" \",type:ControlType.Number,defaultValue:50,hidden(props){return props.height===\"auto\";}}};export const getHeight=property=>{if(property.height===\"auto\"){return property.height;}else{return`${property.heightNumber}px`;}};export const getPageQueryParam=()=>{const urlParams=new URLSearchParams(window.location.search);const pageParam=urlParams.get(\"page\");return pageParam?parseInt(pageParam,10):1;};export const updatePageQueryParam=newPage=>{const url=new URL(window.location.href);url.searchParams.set(\"page\",newPage);window.history.replaceState({},\"\",url.toString());};export const useStore=createStore({initialLimit:undefined,initialOffset:undefined,limit:undefined,offset:undefined,totalItems:undefined,page:1,searchQuery:\"\",totalPages:undefined});export const scrollToTop=(withScroll,scrollTop,scrollBehavior)=>{if(withScroll){window.scrollTo({top:scrollTop,behavior:scrollBehavior});}};\nexport const __FramerMetadata__ = {\"exports\":{\"heightProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"updatePageQueryParam\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getHeight\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBoxShadow\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"updateChildren\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"shadowProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBorder\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SettingsMessage\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getPageQueryParam\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"scrollToTop\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Utils.map","import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{Frame,addPropertyControls,ControlType}from\"framer\";import{motion,AnimatePresence}from\"framer-motion\";import{SettingsMessage}from\"https://framer.com/m/Utils-QTIc.js@hDBsItohjMEOACix8wDv\";// Custom hook for preloading images\nfunction useImagePreloader(imageUrls){const[imagesPreloaded,setImagesPreloaded]=React.useState(false);React.useEffect(()=>{let isMounted=true;const preloadImages=async()=>{const imagePromises=imageUrls.map(url=>{return new Promise((resolve,reject)=>{const img=new Image;img.src=url;img.onload=resolve;img.onerror=reject;});});try{await Promise.all(imagePromises);if(isMounted){setImagesPreloaded(true);}}catch(error){console.error(\"Failed to preload images:\",error);}};preloadImages();return()=>{isMounted=false;};},[imageUrls]);return imagesPreloaded;}/**\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function CursorImageTrail({images=[],style={width:100,height:100,radius:0,fit:\"fill\"},frequency=50,visibleFor=1,perspective={enabled:false,value:1e3},animation={in:{from:{opacity:0,scale:.5,blur:8,is3D:\"2D\",rotate2D:0,rotate3D:{x:0,y:0,z:0}},to:{opacity:1,scale:1,blur:0,is3D:\"2D\",rotate2D:0,rotate3D:{x:0,y:0,z:0}},transition:{type:\"spring\",stiffness:300,damping:30}},out:{opacity:0,scale:.5,blur:8,is3D:\"2D\",rotate2D:0,rotate3D:{x:0,y:0,z:0},transition:{type:\"spring\",stiffness:300,damping:30}}},...props}){const threshold=200-(frequency-1)*199/49;const[mousePos,setMousePos]=React.useState({x:0,y:0});const[isHovering,setIsHovering]=React.useState(false);const[currentImageIndex,setCurrentImageIndex]=React.useState(0);const[activeImages,setActiveImages]=React.useState([]);const[isInViewport,setIsInViewport]=React.useState(false);const componentRef=React.useRef(null);const imagesPreloaded=useImagePreloader(isInViewport?images:[]);React.useEffect(()=>{const observer=new IntersectionObserver(([entry])=>{setIsInViewport(entry.isIntersecting);},{root:null,rootMargin:\"0px\",threshold:.1});if(componentRef.current){observer.observe(componentRef.current);}return()=>{if(componentRef.current){observer.unobserve(componentRef.current);}};},[]);const handleMouseMove=event=>{const rect=event.currentTarget.getBoundingClientRect();const x=event.clientX-rect.left;const y=event.clientY-rect.top;setMousePos({x,y});};const handleMouseEnter=()=>{setIsHovering(true);};const handleMouseLeave=()=>{setIsHovering(false);};React.useEffect(()=>{if(isHovering&&images.length>0){const lastImage=activeImages[activeImages.length-1];const distance=lastImage?Math.hypot(mousePos.x-lastImage.x,mousePos.y-lastImage.y):Infinity;if(distance>threshold){const newImage={id:Math.random(),position:currentImageIndex,x:mousePos.x,y:mousePos.y,createdAt:Date.now(),state:\"entering\"};setActiveImages(prev=>[...prev,newImage]);setCurrentImageIndex(prev=>(prev+1)%images.length);// Schedule exit animation\nsetTimeout(()=>{setActiveImages(prev=>prev.map(img=>img.id===newImage.id?{...img,state:\"exiting\"}:img));},visibleFor*1e3);// Schedule removal from DOM\nsetTimeout(()=>{setActiveImages(prev=>prev.filter(img=>img.id!==newImage.id));},1e4)// 10 seconds\n;}}},[mousePos,isHovering,images,threshold,currentImageIndex,visibleFor]);if(images.length===0){return /*#__PURE__*/_jsx(SettingsMessage,{title:\"Set Up the Component\",description:\"Add images to the component through the 'Images' property on the right panel. Then preview the website, and hover over the component.\",containerStyle:{...props.style,width:\"100%\",height:\"100%\"}});}return /*#__PURE__*/_jsx(Frame,{...props,ref:componentRef,onMouseMove:handleMouseMove,onMouseEnter:handleMouseEnter,onMouseLeave:handleMouseLeave,background:\"\",children:imagesPreloaded&&/*#__PURE__*/_jsx(AnimatePresence,{children:activeImages.map(({id,position,x,y,state})=>/*#__PURE__*/{var _images_position;return _jsx(motion.div,{initial:{opacity:animation.in.from.opacity,scale:animation.in.from.scale,filter:`blur(${animation.in.from.blur}px)`,x:x-style.width/2,y:y-style.height/2,rotate:animation.in.from.is3D===\"2D\"?animation.in.from.rotate2D:0,rotateX:animation.in.from.is3D===\"3D\"?animation.in.from.rotate3D.x:0,rotateY:animation.in.from.is3D===\"3D\"?animation.in.from.rotate3D.y:0,rotateZ:animation.in.from.is3D===\"3D\"?animation.in.from.rotate3D.z:0},animate:state===\"entering\"?{opacity:animation.in.to.opacity,scale:animation.in.to.scale,filter:`blur(${animation.in.to.blur}px)`,x:x-style.width/2,y:y-style.height/2,rotate:animation.in.to.is3D===\"2D\"?animation.in.to.rotate2D:0,rotateX:animation.in.to.is3D===\"3D\"?animation.in.to.rotate3D.x:0,rotateY:animation.in.to.is3D===\"3D\"?animation.in.to.rotate3D.y:0,rotateZ:animation.in.to.is3D===\"3D\"?animation.in.to.rotate3D.z:0}:{opacity:animation.out.opacity,scale:animation.out.scale,filter:`blur(${animation.out.blur}px)`,x:x-style.width/2,y:y-style.height/2,rotate:animation.out.is3D===\"2D\"?animation.out.rotate2D:0,rotateX:animation.out.is3D===\"3D\"?animation.out.rotate3D.x:0,rotateY:animation.out.is3D===\"3D\"?animation.out.rotate3D.y:0,rotateZ:animation.out.is3D===\"3D\"?animation.out.rotate3D.z:0},transition:state===\"entering\"?animation.in.transition:animation.out.transition,style:{position:\"absolute\",width:`${style.width}px`,height:`${style.height}px`,backgroundImage:`url(${(_images_position=images[position])!==null&&_images_position!==void 0?_images_position:\"\"})`,backgroundSize:style.fit===\"fill\"?\"cover\":\"contain\",backgroundPosition:\"center\",backgroundRepeat:\"no-repeat\",borderRadius:`${style.radius}px`,pointerEvents:\"none\",perspective:perspective.enabled?`${perspective.value}px`:\"none\"}},id);})})});}CursorImageTrail.displayName=\"Cursor Image Trail\";addPropertyControls(CursorImageTrail,{images:{type:ControlType.Array,title:\"Images\",propertyControl:{type:ControlType.Image}},style:{type:ControlType.Object,title:\"Style\",controls:{width:{type:ControlType.Number,title:\"Width\",defaultValue:100,min:0,max:1e3,unit:\"px\",step:1,displayStepper:true},height:{type:ControlType.Number,title:\"Height\",defaultValue:100,min:0,max:1e3,unit:\"px\",step:1,displayStepper:true},radius:{type:ControlType.Number,title:\"Radius\",defaultValue:0,min:0,max:500,unit:\"px\",step:1,displayStepper:true},fit:{type:ControlType.Enum,title:\"Type\",options:[\"fill\",\"fit\"],optionTitles:[\"Fill\",\"Fit\"],defaultValue:\"fill\",description:\"Style the images that will appear.\"}}},frequency:{type:ControlType.Number,title:\"Frequency\",defaultValue:35,min:1,max:50,step:1,displayStepper:false,description:\"How frequently these images appear.\"},visibleFor:{type:ControlType.Number,title:\"Visible For\",defaultValue:1,min:.1,max:10,step:.1,unit:\"s\",displayStepper:true,description:\"How long they're visible for before they animate out.\"},animation:{type:ControlType.Object,title:\"Animation\",controls:{in:{type:ControlType.Object,title:\"In\",controls:{from:{type:ControlType.Object,title:\"From\",controls:{opacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.1},scale:{type:ControlType.Number,title:\"Scale\",defaultValue:.5,min:0,max:10,step:.1},blur:{type:ControlType.Number,title:\"Blur\",defaultValue:10,min:0,max:50,step:1,unit:\"px\"},is3D:{type:ControlType.Enum,title:\"Rotation\",options:[\"2D\",\"3D\"],optionTitles:[\"2D\",\"3D\"],defaultValue:\"2D\",displaySegmentedControl:true},rotate2D:{type:ControlType.Number,title:\"2D Rotate\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\",hidden:props=>props.is3D===\"3D\"},rotate3D:{type:ControlType.Object,title:\"3D Rotate\",controls:{x:{type:ControlType.Number,title:\"X\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},y:{type:ControlType.Number,title:\"Y\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},z:{type:ControlType.Number,title:\"Z\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"}},hidden:props=>props.is3D===\"2D\"}}},to:{type:ControlType.Object,title:\"To\",controls:{opacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:1,min:0,max:1,step:.1},scale:{type:ControlType.Number,title:\"Scale\",defaultValue:1,min:0,max:10,step:.1},blur:{type:ControlType.Number,title:\"Blur\",defaultValue:0,min:0,max:50,step:1,unit:\"px\"},is3D:{type:ControlType.Enum,title:\"Rotation\",options:[\"2D\",\"3D\"],optionTitles:[\"2D\",\"3D\"],defaultValue:\"2D\",displaySegmentedControl:true},rotate2D:{type:ControlType.Number,title:\"2D Rotate\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\",hidden:props=>props.is3D===\"3D\"},rotate3D:{type:ControlType.Object,title:\"3D Rotate\",controls:{x:{type:ControlType.Number,title:\"X\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},y:{type:ControlType.Number,title:\"Y\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},z:{type:ControlType.Number,title:\"Z\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"}},hidden:props=>props.is3D===\"2D\"}}},transition:{type:ControlType.Transition,title:\"Transition\"}}},out:{type:ControlType.Object,title:\"Out\",controls:{opacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.1},scale:{type:ControlType.Number,title:\"Scale\",defaultValue:.5,min:0,max:10,step:.1},blur:{type:ControlType.Number,title:\"Blur\",defaultValue:10,min:0,max:50,step:1,unit:\"px\"},is3D:{type:ControlType.Enum,title:\"Rotation\",options:[\"2D\",\"3D\"],optionTitles:[\"2D\",\"3D\"],defaultValue:\"2D\",displaySegmentedControl:true},rotate2D:{type:ControlType.Number,title:\"2D Rotate\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\",hidden:props=>props.is3D===\"3D\"},rotate3D:{type:ControlType.Object,title:\"3D Rotate\",controls:{x:{type:ControlType.Number,title:\"X\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},y:{type:ControlType.Number,title:\"Y\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},z:{type:ControlType.Number,title:\"Z\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"}},hidden:props=>props.is3D===\"2D\"},transition:{type:ControlType.Transition,title:\"Transition\"}}}}},perspective:{type:ControlType.Object,title:\"Perspective\",description:\"More components at [Framer University](https://frameruni.link/cc).\",controls:{enabled:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},value:{type:ControlType.Number,title:\"Value\",defaultValue:1200,min:500,max:5e3,step:10,displayStepper:true,hidden:props=>!props.enabled}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CursorImageTrail\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CursorImageTrail_Prod.map","// Generated by Framer (6807895)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import CursorImageTrail from\"https://framerusercontent.com/modules/o7kxMNcq1QFbNlxER8ZO/mGYCpj2iAc99jKtNOx5M/CursorImageTrail_Prod.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/hN9CQE56d3OARN1vxxHA/D8weYreXdzp5S1EHm5uO/pAnqF9DCZ.js\";import Button from\"https://framerusercontent.com/modules/NoZbX01T77s4FISHDJZK/DKZ2NueZ9Q0aWiS5LNd6/qeXkn8N_j.js\";const ButtonFonts=getFonts(Button);const CursorImageTrailFonts=getFonts(CursorImageTrail);const cycleOrder=[\"ZUNpQHhfd\",\"AptAK6k6z\",\"GEbfDFcdg\"];const serializationHash=\"framer-11YRy\";const variantClassNames={AptAK6k6z:\"framer-v-h5s3p6\",GEbfDFcdg:\"framer-v-t1a8br\",ZUNpQHhfd:\"framer-v-1gz78k7\"};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={Default:\"ZUNpQHhfd\",Mobile:\"GEbfDFcdg\",Tablet:\"AptAK6k6z\"};const getProps=({button,buttonLabel,buttonLink,height,id,quote,width,...props})=>{return{...props,etTP6WCAO:button??props.etTP6WCAO??true,IklbymbVS:buttonLabel??props.IklbymbVS??\"let’s collaborate\",jvuvx2GyJ:quote??props.jvuvx2GyJ??\"Great ideas are fueled by creativity, passion, and a team dedicated to bringing visions to life. Let’s create something extraordinary together.\",muZC548jp:buttonLink??props.muZC548jp,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZUNpQHhfd\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,jvuvx2GyJ,etTP6WCAO,IklbymbVS,muZC548jp,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZUNpQHhfd\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"GEbfDFcdg\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1gz78k7\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"ZUNpQHhfd\",ref:ref??ref1,style:{...style},...addPropertyOverrides({AptAK6k6z:{\"data-framer-name\":\"Tablet\"},GEbfDFcdg:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oh4fry\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"xLIyaH9dZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-o1s8jc\",\"data-styles-preset\":\"pAnqF9DCZ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bbe88a05-93e6-4271-9bc6-5a853bd2a59b, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(82% 126% at 76.7% 10.4%, var(--token-90e2e161-fdb0-4026-be53-27f7ea820f78, rgb(231, 231, 231)) 13.74929617117117%, rgb(161, 161, 161) 100%)\"},children:\"Great ideas are fueled by creativity, passion, and a team dedicated to bringing visions to life. Let’s create something extraordinary together.\"})})}),className:\"framer-1x06d9u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"d9QtKrD9T\",style:{\"--extracted-1of0zx5\":\"var(--token-bbe88a05-93e6-4271-9bc6-5a853bd2a59b, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:jvuvx2GyJ,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GEbfDFcdg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-o1s8jc\",\"data-styles-preset\":\"pAnqF9DCZ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bbe88a05-93e6-4271-9bc6-5a853bd2a59b, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(82% 126% at 76.7% 10.4%, var(--token-90e2e161-fdb0-4026-be53-27f7ea820f78, rgb(231, 231, 231)) 13.74929617117117%, rgb(161, 161, 161) 100%)\"},children:\"Great ideas are fueled by creativity, passion, and a team dedicated to bringing visions to life. Let’s create something extraordinary together.\"})})})}},baseVariant,gestureVariant)}),etTP6WCAO&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+(((componentViewport?.height||640)-0-800)/2+0+0)+0+432,...addPropertyOverrides({AptAK6k6z:{y:(componentViewport?.y||0)+80+(((componentViewport?.height||576)-160-500)/2+0+0)+0+282},GEbfDFcdg:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||928)-80-144)/2+0+0)+0+96}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xwpqiz-container\",layoutDependency:layoutDependency,layoutId:\"HcjyXBUDH-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"HcjyXBUDH\",layoutId:\"HcjyXBUDH\",qoeV0dTiS:muZC548jp,rPTg7ailS:IklbymbVS,variant:\"VOW5LPpfI\",vnDixkvzH:false,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12rcubj-container\",layoutDependency:layoutDependency,layoutId:\"lauFUcLA9-container\",children:/*#__PURE__*/_jsx(CursorImageTrail,{animation:{in:{from:{blur:10,is3D:\"2D\",opacity:0,rotate2D:0,rotate3D:{x:0,y:0,z:0},scale:.5},to:{blur:0,is3D:\"2D\",opacity:1,rotate2D:0,rotate3D:{x:0,y:0,z:0},scale:1},transition:{damping:50,delay:0,mass:1,stiffness:400,type:\"spring\"}},out:{blur:10,is3D:\"2D\",opacity:0,rotate2D:0,rotate3D:{x:0,y:0,z:0},scale:.5,transition:{damping:50,delay:0,mass:1,stiffness:400,type:\"spring\"}}},frequency:20,height:\"100%\",id:\"lauFUcLA9\",images:[\"https://framerusercontent.com/images/VGTGpWRTgyYnIfcBp3hBEgvKAic.png\",\"https://framerusercontent.com/images/i2BCEhGX7W5Qu77pmPlj4dYIXjE.png\",\"https://framerusercontent.com/images/uSsFuYkCsIyxUWDyanLEkvNrxok.png\",\"https://framerusercontent.com/images/aXc4mAqlOPg5j7DfRIGvzmrC6A8.png\",\"https://framerusercontent.com/images/BC5vJ9VJwUAfL4GZEsfFI7XZhdY.png\",\"https://framerusercontent.com/images/lINHGC24cNObEcQNPg7BlU2OjU.png\"],layoutId:\"lauFUcLA9\",perspective:{enabled:false,value:1200},style:{fit:\"fill\",height:200,radius:0,width:200},visibleFor:.7,width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-11YRy.framer-i9kgye, .framer-11YRy .framer-i9kgye { display: block; }\",\".framer-11YRy.framer-1gz78k7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 1440px; }\",\".framer-11YRy .framer-1oh4fry { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; min-height: calc(var(--framer-viewport-height, 100vh) * 0.8); overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-11YRy .framer-1x06d9u { flex: none; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-11YRy .framer-1xwpqiz-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-11YRy .framer-12rcubj-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-11YRy.framer-1gz78k7, .framer-11YRy .framer-1oh4fry { gap: 0px; } .framer-11YRy.framer-1gz78k7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-11YRy.framer-1gz78k7 > :first-child, .framer-11YRy .framer-1oh4fry > :first-child { margin-top: 0px; } .framer-11YRy.framer-1gz78k7 > :last-child, .framer-11YRy .framer-1oh4fry > :last-child { margin-bottom: 0px; } .framer-11YRy .framer-1oh4fry > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }\",\".framer-11YRy.framer-v-h5s3p6.framer-1gz78k7 { padding: 80px 20px 80px 20px; width: 810px; }\",\".framer-11YRy.framer-v-h5s3p6 .framer-1oh4fry { min-height: calc(var(--framer-viewport-height, 100vh) * 0.5); order: 0; }\",\".framer-11YRy.framer-v-t1a8br.framer-1gz78k7 { padding: 40px 16px 40px 16px; width: 390px; }\",\".framer-11YRy.framer-v-t1a8br .framer-1oh4fry { align-content: flex-start; align-items: flex-start; gap: 32px; min-height: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-11YRy.framer-v-t1a8br .framer-1oh4fry { gap: 0px; } .framer-11YRy.framer-v-t1a8br .framer-1oh4fry > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-11YRy.framer-v-t1a8br .framer-1oh4fry > :first-child { margin-top: 0px; } .framer-11YRy.framer-v-t1a8br .framer-1oh4fry > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 640\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AptAK6k6z\":{\"layout\":[\"fixed\",\"auto\"]},\"GEbfDFcdg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"jvuvx2GyJ\":\"quote\",\"etTP6WCAO\":\"button\",\"IklbymbVS\":\"buttonLabel\",\"muZC548jp\":\"buttonLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameri8v0PEDjH=withCSS(Component,css,\"framer-11YRy\");export default Frameri8v0PEDjH;Frameri8v0PEDjH.displayName=\"Quote\";Frameri8v0PEDjH.defaultProps={height:640,width:1440};addPropertyControls(Frameri8v0PEDjH,{variant:{options:[\"ZUNpQHhfd\",\"AptAK6k6z\",\"GEbfDFcdg\"],optionTitles:[\"Default\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},jvuvx2GyJ:{defaultValue:\"Great ideas are fueled by creativity, passion, and a team dedicated to bringing visions to life. Let’s create something extraordinary together.\",displayTextArea:false,title:\"Quote\",type:ControlType.String},etTP6WCAO:{defaultValue:true,title:\"Button\",type:ControlType.Boolean},IklbymbVS:{defaultValue:\"let’s collaborate\",displayTextArea:false,title:\"Button label\",type:ControlType.String},muZC548jp:{title:\"Button link\",type:ControlType.Link}});addFonts(Frameri8v0PEDjH,[{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\"}]},...ButtonFonts,...CursorImageTrailFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameri8v0PEDjH\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AptAK6k6z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GEbfDFcdg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"jvuvx2GyJ\\\":\\\"quote\\\",\\\"etTP6WCAO\\\":\\\"button\\\",\\\"IklbymbVS\\\":\\\"buttonLabel\\\",\\\"muZC548jp\\\":\\\"buttonLink\\\"}\",\"framerIntrinsicHeight\":\"640\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}