{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/2LSklRHbibcm0vwGmXcB/HUx1PmvVBxg32jIHckY8/integrationsOrbit.js", "ssg:https://framerusercontent.com/modules/jsupnc5XOftCPhLgXWD6/YcQV3hmGO3b0H6bUSbd7/oly3H4A1H.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState,startTransition}from\"react\";import{addPropertyControls,ControlType,useIsStaticRenderer}from\"framer\";const defaultImages=[{src:\"https://framerusercontent.com/images/GfGkADagM4KEibNcIiRUWlfrR0.jpg\",alt:\"Logo 1\"},{src:\"https://framerusercontent.com/images/aNsAT3jCvt4zglbWCUoFe33Q.jpg\",alt:\"Logo 2\"},{src:\"https://framerusercontent.com/images/BYnxEV1zjYb9bhWh1IwBZ1ZoS60.jpg\",alt:\"Logo 3\"},{src:\"https://framerusercontent.com/images/2uTNEj5aTl2K3NJaEFWMbnrA.jpg\",alt:\"Logo 4\"}];function degToRad(deg){return deg*Math.PI/180;}function getCirclePoint(cx,cy,r,angle){const rad=degToRad(angle);return{x:cx+r*Math.cos(rad),y:cy+r*Math.sin(rad)};}/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function integrationsOrbit(props){const{centerImage={src:\"https://framerusercontent.com/images/f9RiWoNpmlCMqVRIHz8l8wYfeI.jpg\",alt:\"Center\"},rings,style,centerImageSize=80,centerImagePadding=4,padding=24,ringSpacing=40,globalLogoSize=40,componentPadding=20}=props;const isStatic=useIsStaticRenderer();const[tick,setTick]=useState(0);const reqRef=useRef(0);useEffect(()=>{if(isStatic)return;let last=Date.now();function animate(){const now=Date.now();if(now-last>16){startTransition(()=>setTick(t=>t+1));last=now;}reqRef.current=window.requestAnimationFrame(animate);}reqRef.current=window.requestAnimationFrame(animate);return()=>window.cancelAnimationFrame(reqRef.current);},[isStatic]);// Total visual size based on number of rings and spacing\nconst maxRingRadius=centerImageSize/2+padding+ringSpacing*rings.length+componentPadding;const totalVisualSize=maxRingRadius*2;const cx=totalVisualSize/2;const cy=totalVisualSize/2;return /*#__PURE__*/_jsxs(\"div\",{style:{width:totalVisualSize,height:totalVisualSize,position:\"relative\",overflow:\"visible\",...style},children:[/*#__PURE__*/_jsx(\"svg\",{width:\"100%\",height:\"100%\",viewBox:`0 0 ${totalVisualSize} ${totalVisualSize}`,preserveAspectRatio:\"xMidYMid meet\",style:{position:\"absolute\",top:0,left:0,overflow:\"visible\"},children:rings.map((ring,ringIndex)=>{const radius=centerImageSize/2+padding+ringSpacing*(ringIndex+1);const baseAngle=tick*(ring.speed||.1)%360;return /*#__PURE__*/_jsxs(\"g\",{children:[/*#__PURE__*/_jsx(\"circle\",{cx:cx,cy:cy,r:radius,stroke:ring.ringColor,strokeWidth:ring.thickness||8,fill:\"none\",opacity:.2}),ring.images.map((img,imgIndex)=>{const imageAngle=baseAngle+360/ring.images.length*imgIndex+(img.startAngle||0);const{x,y}=getCirclePoint(cx,cy,radius,imageAngle);return /*#__PURE__*/_jsx(\"image\",{href:img.src,x:x-globalLogoSize/2,y:y-globalLogoSize/2,width:globalLogoSize,height:globalLogoSize,rx:globalLogoSize/2,ry:globalLogoSize/2},imgIndex);})]},ringIndex);})}),/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",zIndex:10},children:/*#__PURE__*/_jsx(\"div\",{style:{width:centerImageSize+centerImagePadding*2,height:centerImageSize+centerImagePadding*2,borderRadius:\"50%\",padding:`${centerImagePadding}px`,backgroundColor:\"white\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\"},children:/*#__PURE__*/_jsx(\"img\",{src:centerImage.src,alt:centerImage.alt,style:{width:centerImageSize,height:centerImageSize,borderRadius:\"50%\",objectFit:\"cover\"}})})})]});}addPropertyControls(integrationsOrbit,{componentPadding:{type:ControlType.Number,title:\"Component Padding\",defaultValue:20,min:0,max:100,step:1,unit:\"px\"},padding:{type:ControlType.Number,title:\"Padding\",defaultValue:24,min:0,max:120,step:1},ringSpacing:{type:ControlType.Number,title:\"Ring Spacing\",defaultValue:40,min:10,max:200,step:1},centerImage:{type:ControlType.ResponsiveImage,title:\"Center Image\"},centerImageSize:{type:ControlType.Number,title:\"Center Size\",defaultValue:80,min:24,max:200,step:1,unit:\"px\"},centerImagePadding:{type:ControlType.Number,title:\"Center Padding\",defaultValue:4,min:0,max:32,step:1,unit:\"px\"},globalLogoSize:{type:ControlType.Number,title:\"Global Logo Size\",defaultValue:40,min:20,max:100,step:1,unit:\"px\"},rings:{type:ControlType.Array,title:\"Rings\",maxCount:3,defaultValue:[{images:defaultImages.slice(0,3),ringColor:\"#CCCCCC\",thickness:2,speed:.12},{images:defaultImages.slice(1,4),ringColor:\"#CCCCCC\",thickness:2,speed:.08},{images:defaultImages.slice(0,4),ringColor:\"#CCCCCC\",thickness:2,speed:.06}],control:{type:ControlType.Object,controls:{images:{type:ControlType.Array,maxCount:6,defaultValue:defaultImages.slice(0,3),control:{type:ControlType.Object,controls:{src:{type:ControlType.File,allowedFileTypes:[\"jpg\",\"jpeg\",\"png\",\"gif\",\"webp\",\"svg\"],title:\"Image\"},alt:{type:ControlType.String,defaultValue:\"Logo\",title:\"Alt Text\"},startAngle:{type:ControlType.Number,defaultValue:0,min:0,max:359,step:1,title:\"Start Angle\",unit:\"\\xb0\"}}}},ringColor:{type:ControlType.Color,defaultValue:\"#CCCCCC\",title:\"Ring Color\"},thickness:{type:ControlType.Number,defaultValue:8,min:1,max:24,step:1,title:\"Thickness\",unit:\"px\"},speed:{type:ControlType.Number,defaultValue:.12,min:.01,max:.5,step:.01,title:\"Speed\"}}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"integrationsOrbit\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./integrationsOrbit.map", "// Generated by Framer (f5fefb6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import IntegrationsOrbit from\"https://framerusercontent.com/modules/2LSklRHbibcm0vwGmXcB/HUx1PmvVBxg32jIHckY8/integrationsOrbit.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ezJ90H6tq65HRgjLuA5U/lp4DnlGfN7wxD9omKKei/nNVLabHUL.js\";import Buttons from\"https://framerusercontent.com/modules/gUFPVMSkrLv597ZuQ2UH/7RNZH1qR5AVeaHdCiNHQ/GC3LdEupm.js\";import ArrowLink from\"https://framerusercontent.com/modules/eIWVhbWvSVBtvmRxh0l7/xhKHvkiWuMtdTOQDU4wE/kssDu6UsH.js\";const ArrowLinkFonts=getFonts(ArrowLink);const IntegrationsOrbitFonts=getFonts(IntegrationsOrbit);const ButtonsFonts=getFonts(Buttons);const cycleOrder=[\"s2iSsL45L\",\"ixYDJpA_J\"];const serializationHash=\"framer-BM4XI\";const variantClassNames={ixYDJpA_J:\"framer-v-16hmvcq\",s2iSsL45L:\"framer-v-srzd2b\"};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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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={\"Variant 1\":\"s2iSsL45L\",Phone:\"ixYDJpA_J\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"s2iSsL45L\"};};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:\"s2iSsL45L\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();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-srzd2b\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"s2iSsL45L\",ref:refBinding,style:{...style},...addPropertyOverrides({ixYDJpA_J:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rvl6x2\",\"data-framer-name\":\"Frame 72\",layoutDependency:layoutDependency,layoutId:\"OLgAFMuYu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-s2at7o\",\"data-styles-preset\":\"nNVLabHUL\",style:{\"--framer-text-alignment\":\"center\"},children:\"Built for modern enterprises\"})}),className:\"framer-m7mz3l\",\"data-framer-name\":\"Built for modern operations\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"H_JDcSFvi\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T25lc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Meet employees where they work, automate any workflow, and monitor your team's performance.\"})}),className:\"framer-9wstq0\",\"data-framer-name\":\"Relentless automation, seamless execution, and a commitment to quality of support.\",fonts:[\"GF;Onest-regular\"],layoutDependency:layoutDependency,layoutId:\"e5P9hSRQG\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yxjq65\",\"data-framer-name\":\"Group 37\",layoutDependency:layoutDependency,layoutId:\"gsGOeV6p9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eyc3uq\",layoutDependency:layoutDependency,layoutId:\"D9Wmet1IK\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yh2zkc\",\"data-border\":true,\"data-framer-name\":\"Frame 58\",layoutDependency:layoutDependency,layoutId:\"lFcWt6zpq\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(230, 232, 235)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(137deg, rgb(247, 249, 250) 39%, rgb(230, 232, 235) 100%)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:456,intrinsicWidth:724,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+223.2+0+0+0+24+0),pixelHeight:1344,pixelWidth:2128,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 32px) / 2, 1px) - 48px)`,src:\"https://framerusercontent.com/images/xzag4SJ2knjHjqzkAwkYxAtvs.png?scale-down-to=1024&lossless=1\",srcSet:\"https://framerusercontent.com/images/xzag4SJ2knjHjqzkAwkYxAtvs.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/xzag4SJ2knjHjqzkAwkYxAtvs.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/xzag4SJ2knjHjqzkAwkYxAtvs.png?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/xzag4SJ2knjHjqzkAwkYxAtvs.png?lossless=1 2128w\"},className:\"framer-16ejvod\",\"data-framer-name\":\"Api\",layoutDependency:layoutDependency,layoutId:\"OlQfObkNy\",...addPropertyOverrides({ixYDJpA_J:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:456,intrinsicWidth:724,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+215.2+0+0+0+0+24+0),pixelHeight:1344,pixelWidth:2128,sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/xzag4SJ2knjHjqzkAwkYxAtvs.png?scale-down-to=1024&lossless=1\",srcSet:\"https://framerusercontent.com/images/xzag4SJ2knjHjqzkAwkYxAtvs.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/xzag4SJ2knjHjqzkAwkYxAtvs.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/xzag4SJ2knjHjqzkAwkYxAtvs.png?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/xzag4SJ2knjHjqzkAwkYxAtvs.png?lossless=1 2128w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kv2o7p\",layoutDependency:layoutDependency,layoutId:\"eWn4inGGy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T25lc3QtNjAw\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\"},children:\"Flexible API\"})}),className:\"framer-124eoj8\",\"data-framer-name\":\"Copilot for human agents\",fonts:[\"GF;Onest-600\"],layoutDependency:layoutDependency,layoutId:\"QxnO153Sn\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T25lc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\"},children:\"Create your own workflows and build automations on any platform with our modern API.\"})}),className:\"framer-33xpky\",\"data-framer-name\":\"Empower support agents with genAI and let LLMs reason,\\u2028plan, and execute complex requests.\",fonts:[\"GF;Onest-regular\"],layoutDependency:layoutDependency,layoutId:\"bgJd_pDcM\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+223.2+0+0+0+24+743,...addPropertyOverrides({ixYDJpA_J:{y:(componentViewport?.y||0)+0+215.2+0+0+0+0+24+743}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9k2v6s-container\",layoutDependency:layoutDependency,layoutId:\"oDKnUoKy_-container\",nodeId:\"oDKnUoKy_\",rendersWithMotion:true,scopeId:\"oly3H4A1H\",children:/*#__PURE__*/_jsx(ArrowLink,{BRVyEatmZ:\"https://docs.unthread.io\",h3bDISPEv:true,height:\"100%\",id:\"oDKnUoKy_\",layoutId:\"oDKnUoKy_\",variant:\"ZdmIoPsTo\",width:\"100%\",Xd6lf43Ar:\"View docs\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mtwhi4\",\"data-border\":true,\"data-framer-name\":\"Frame 59\",layoutDependency:layoutDependency,layoutId:\"FlajtBpAW\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(230, 232, 235)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(55deg, rgb(247, 249, 250) 39%, rgb(230, 232, 235) 100%)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:456,intrinsicWidth:724,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+223.2+0+0+0+24+0),pixelHeight:912,pixelWidth:1448,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 32px) / 2, 1px) - 48px)`,src:\"https://framerusercontent.com/images/MAPRDj82txpuJdukaxFrJmaJK4o.png?scale-down-to=1024&lossless=1\",srcSet:\"https://framerusercontent.com/images/MAPRDj82txpuJdukaxFrJmaJK4o.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/MAPRDj82txpuJdukaxFrJmaJK4o.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/MAPRDj82txpuJdukaxFrJmaJK4o.png?lossless=1 1448w\"},className:\"framer-b3s3nc\",\"data-framer-name\":\"Api\",layoutDependency:layoutDependency,layoutId:\"ZoPg2dYQT\",...addPropertyOverrides({ixYDJpA_J:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:456,intrinsicWidth:724,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+215.2+0+0+0+847+24+0),pixelHeight:912,pixelWidth:1448,sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/MAPRDj82txpuJdukaxFrJmaJK4o.png?scale-down-to=1024&lossless=1\",srcSet:\"https://framerusercontent.com/images/MAPRDj82txpuJdukaxFrJmaJK4o.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/MAPRDj82txpuJdukaxFrJmaJK4o.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/MAPRDj82txpuJdukaxFrJmaJK4o.png?lossless=1 1448w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xmfff3\",layoutDependency:layoutDependency,layoutId:\"B4XjeJZGe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T25lc3QtNjAw\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\"},children:\"Enterprise Security\"})}),className:\"framer-qvu34w\",\"data-framer-name\":\"Conversational experience\",fonts:[\"GF;Onest-600\"],layoutDependency:layoutDependency,layoutId:\"N_5gO213o\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T25lc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\"},children:\"Built from the ground up to meet the highest standards of privacy & security.\"})}),className:\"framer-17dzxgc\",\"data-framer-name\":\"Meet employees where they work with instant solutions and without service portals.\",fonts:[\"GF;Onest-regular\"],layoutDependency:layoutDependency,layoutId:\"FHLxqejfa\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sGxpRyZkm\"},implicitPathVariables:undefined},{href:{webPageId:\"sGxpRyZkm\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+223.2+0+0+0+24+743,...addPropertyOverrides({ixYDJpA_J:{y:(componentViewport?.y||0)+0+215.2+0+0+0+847+24+743}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8cw2bd-container\",layoutDependency:layoutDependency,layoutId:\"Au2pcHJhr-container\",nodeId:\"Au2pcHJhr\",rendersWithMotion:true,scopeId:\"oly3H4A1H\",children:/*#__PURE__*/_jsx(ArrowLink,{BRVyEatmZ:resolvedLinks[0],h3bDISPEv:false,height:\"100%\",id:\"Au2pcHJhr\",layoutId:\"Au2pcHJhr\",variant:\"ZdmIoPsTo\",width:\"100%\",Xd6lf43Ar:\"Learn about security\",...addPropertyOverrides({ixYDJpA_J:{BRVyEatmZ:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xa4vf8\",\"data-border\":true,\"data-framer-name\":\"Integrations\",layoutDependency:layoutDependency,layoutId:\"tsf7LapNg\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fc701918-72eb-4678-87df-2c7281379bef, rgb(255, 56, 39))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(292deg, var(--token-fc701918-72eb-4678-87df-2c7281379bef, rgb(255, 56, 39)) 4%, rgb(252, 139, 129) 100%)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-78p1a0\",layoutDependency:layoutDependency,layoutId:\"cXKsbeak_\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18rdoqn-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"KodSjnTej-container\",nodeId:\"KodSjnTej\",rendersWithMotion:true,scopeId:\"oly3H4A1H\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(IntegrationsOrbit,{centerImage:addImageAlt({pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/9wnD6kTx8EBZXpS85M7Qpq8e3fw.png\"},\"\"),centerImagePadding:8,centerImageSize:48,componentPadding:8,globalLogoSize:32,height:\"100%\",id:\"KodSjnTej\",layoutId:\"KodSjnTej\",padding:0,rings:[{images:[{alt:\"linear logo\",src:\"https://framerusercontent.com/assets/3DLZRhSUAwOTQyOi2Cfn3Loz0.png\",startAngle:60},{alt:\"okta logo\",src:\"https://framerusercontent.com/assets/HMoJFsfrRDweB6L1dvplzGJU3k.png\",startAngle:75}],ringColor:\"rgb(255, 255, 255)\",speed:.1,thickness:2},{images:[{alt:\"asana logo\",src:\"https://framerusercontent.com/assets/BMywAX3pRP8xpgwti7PkAuaYbA.png\",startAngle:10},{alt:\"clickup logo\",src:\"https://framerusercontent.com/assets/5v9f7VvH23sy5zDAznX4cpewnb8.png\",startAngle:90},{alt:\"jira logo\",src:\"https://framerusercontent.com/assets/rX3Xrj5wutufNw9387RIofya1U.png\",startAngle:270}],ringColor:\"rgb(255, 255, 255)\",speed:.1,thickness:2},{images:[{alt:\"github logo\",src:\"https://framerusercontent.com/assets/7BCCtmddgth3Wg9rVfjaKWsxiw.png\",startAngle:35},{alt:\"zapier logo\",src:\"https://framerusercontent.com/assets/YJfQ9XDD6AjZy7uRJhUHhHMlDU4.png\",startAngle:210},{alt:\"height logo\",src:\"https://framerusercontent.com/assets/txhpNKLgcfvx0FprnOm369H28NE.png\",startAngle:0}],ringColor:\"rgb(255, 255, 255)\",speed:.1,thickness:2}],ringSpacing:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({ixYDJpA_J:{centerImagePadding:4,centerImageSize:40,globalLogoSize:24}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-129kc03\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"GhYmKDSh8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-199efsj\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"jwRAILvbt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-s2at7o\",\"data-styles-preset\":\"nNVLabHUL\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:\"Integrates with your favorite tools\"})}),className:\"framer-aborxp\",\"data-framer-name\":\"Autonomous AI agents\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uJHFLEXS7\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T25lc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Unthread integrates with dozens of tools right out of the box, no code necessary.\"})}),className:\"framer-lb007m\",\"data-framer-name\":\"Empower support agents with genAI and let LLMs reason,\\u2028plan, and execute complex requests.\",fonts:[\"GF;Onest-regular\"],layoutDependency:layoutDependency,layoutId:\"cX_6WYAZB\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.75},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Rne7BS8Pf\"},implicitPathVariables:undefined},{href:{webPageId:\"Rne7BS8Pf\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+223.2+0+847+0+0+207.2,...addPropertyOverrides({ixYDJpA_J:{y:(componentViewport?.y||0)+0+215.2+0+1694+0+0+24+207.2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13gm7d7-container\",layoutDependency:layoutDependency,layoutId:\"D0wWOMHw2-container\",nodeId:\"D0wWOMHw2\",rendersWithMotion:true,scopeId:\"oly3H4A1H\",children:/*#__PURE__*/_jsx(Buttons,{aAWYchtiZ:\"View integrations\",height:\"100%\",id:\"D0wWOMHw2\",layoutId:\"D0wWOMHw2\",n4lJLRhFW:resolvedLinks1[0],ONiAQWI9s:false,variant:\"yBs9TM0bq\",width:\"100%\",...addPropertyOverrides({ixYDJpA_J:{n4lJLRhFW:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-grau9k\",layoutDependency:layoutDependency,layoutId:\"ZJn1bNBOC\",style:{backgroundColor:\"var(--token-46a49dfb-f034-47ae-8c6e-c652bd44be38, rgb(254, 246, 245))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,filter:\"blur(100px)\",opacity:.1,WebkitFilter:\"blur(100px)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-120srd5\",layoutDependency:layoutDependency,layoutId:\"uRm5swb_r\",style:{backgroundColor:\"var(--token-139b4ff0-6eaa-46a2-838b-ce66b7b53e0a, rgb(252, 220, 216))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,filter:\"blur(100px)\",opacity:.1,WebkitFilter:\"blur(100px)\"}})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BM4XI.framer-1qkzlxj, .framer-BM4XI .framer-1qkzlxj { display: block; }\",\".framer-BM4XI.framer-srzd2b { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 960px; }\",\".framer-BM4XI .framer-rvl6x2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BM4XI .framer-m7mz3l, .framer-BM4XI .framer-aborxp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BM4XI .framer-9wstq0 { flex: none; height: auto; max-width: 384px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BM4XI .framer-yxjq65 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BM4XI .framer-1eyc3uq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BM4XI .framer-1yh2zkc, .framer-BM4XI .framer-1mtwhi4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; overflow: visible; padding: 24px; position: relative; width: 1px; }\",\".framer-BM4XI .framer-16ejvod, .framer-BM4XI .framer-b3s3nc { aspect-ratio: 1.587719298245614 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 262px); overflow: visible; position: relative; width: 100%; }\",\".framer-BM4XI .framer-1kv2o7p, .framer-BM4XI .framer-1xmfff3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BM4XI .framer-124eoj8, .framer-BM4XI .framer-qvu34w { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-BM4XI .framer-33xpky, .framer-BM4XI .framer-17dzxgc, .framer-BM4XI .framer-lb007m { flex: none; height: auto; max-width: 384px; position: relative; white-space: pre-wrap; width: 384px; word-break: break-word; word-wrap: break-word; }\",\".framer-BM4XI .framer-9k2v6s-container, .framer-BM4XI .framer-8cw2bd-container, .framer-BM4XI .framer-13gm7d7-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-BM4XI .framer-xa4vf8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-BM4XI .framer-78p1a0 { align-content: center; align-items: center; display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 420px; overflow: hidden; padding: 32px; position: relative; width: 1px; }\",\".framer-BM4XI .framer-18rdoqn-container { aspect-ratio: 1.1071012805587892 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 571px); left: 17%; position: absolute; top: 45%; width: 632px; z-index: 1; }\",\".framer-BM4XI .framer-129kc03 { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.75 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-BM4XI .framer-199efsj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BM4XI .framer-grau9k { bottom: -72px; flex: none; left: -489px; overflow: visible; position: absolute; top: -474px; width: 966px; z-index: 0; }\",\".framer-BM4XI .framer-120srd5 { flex: none; height: 390px; left: -161px; overflow: visible; position: absolute; top: -26px; width: 390px; z-index: 0; }\",\".framer-BM4XI.framer-v-16hmvcq.framer-srzd2b { gap: 24px; width: 390px; }\",\".framer-BM4XI.framer-v-16hmvcq .framer-1eyc3uq { flex-direction: column; }\",\".framer-BM4XI.framer-v-16hmvcq .framer-1yh2zkc, .framer-BM4XI.framer-v-16hmvcq .framer-1mtwhi4 { flex: none; width: 100%; }\",\".framer-BM4XI.framer-v-16hmvcq .framer-16ejvod { height: var(--framer-aspect-ratio-supported, 216px); }\",\".framer-BM4XI.framer-v-16hmvcq .framer-b3s3nc { height: var(--framer-aspect-ratio-supported, 215px); }\",\".framer-BM4XI.framer-v-16hmvcq .framer-xa4vf8 { flex-direction: column; gap: 0px; }\",\".framer-BM4XI.framer-v-16hmvcq .framer-78p1a0 { flex: none; padding: 0px; width: 100%; }\",\".framer-BM4XI.framer-v-16hmvcq .framer-18rdoqn-container { height: var(--framer-aspect-ratio-supported, 493px); left: 50%; top: 34%; width: 545px; }\",\".framer-BM4XI.framer-v-16hmvcq .framer-129kc03 { flex: none; padding: 24px; width: 100%; }\",\".framer-BM4XI.framer-v-16hmvcq .framer-grau9k { bottom: unset; height: 636px; left: -60px; right: -18px; top: -269px; width: unset; }\",\".framer-BM4XI.framer-v-16hmvcq .framer-120srd5 { height: 189px; left: calc(49.48717948717951% - 188.94409937888202px / 2); top: -52px; width: 189px; }\",...sharedStyle.css,'.framer-BM4XI[data-border=\"true\"]::after, .framer-BM4XI [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 1053\n * @framerIntrinsicWidth 960\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ixYDJpA_J\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Frameroly3H4A1H=withCSS(Component,css,\"framer-BM4XI\");export default Frameroly3H4A1H;Frameroly3H4A1H.displayName=\"modernEnterprises\";Frameroly3H4A1H.defaultProps={height:1053,width:960};addPropertyControls(Frameroly3H4A1H,{variant:{options:[\"s2iSsL45L\",\"ixYDJpA_J\"],optionTitles:[\"Variant 1\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Frameroly3H4A1H,[{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\"},{family:\"Onest\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/onest/v8/gNMZW3F-SZuj7zOT0IfSjTS16cPh9R-ZtxFMQWXgSQ.woff2\",weight:\"400\"},{family:\"Onest\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/onest/v8/gNMZW3F-SZuj7zOT0IfSjTS16cPhKxiZtxFMQWXgSQ.woff2\",weight:\"600\"}]},...ArrowLinkFonts,...IntegrationsOrbitFonts,...ButtonsFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameroly3H4A1H\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ixYDJpA_J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"960\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"1053\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oly3H4A1H.map"],
  "mappings": "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",
  "names": ["defaultImages", "degToRad", "deg", "getCirclePoint", "cx", "cy", "r", "angle", "rad", "integrationsOrbit", "props", "centerImage", "rings", "style", "centerImageSize", "centerImagePadding", "padding", "ringSpacing", "globalLogoSize", "componentPadding", "isStatic", "useIsStaticRenderer", "tick", "setTick", "ye", "reqRef", "pe", "ue", "last", "animate", "now", "Z", "t", "window", "totalVisualSize", "u", "p", "ring", "ringIndex", "radius", "baseAngle", "img", "imgIndex", "imageAngle", "x", "y", "addPropertyControls", "ControlType", "ArrowLinkFonts", "getFonts", "kssDu6UsH_default", "IntegrationsOrbitFonts", "integrationsOrbit", "ButtonsFonts", "GC3LdEupm_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "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", "router", "useRouter", "LayoutGroup", "u", "RichText", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "Frameroly3H4A1H", "withCSS", "oly3H4A1H_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
