{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/E2vNbAWvsPq0faLWbZhW/jgl4Vva7LlzpgeuhyIaN/FtN88BZtk.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/e7aAHoYgRaBbb2Y1TA2G/mxMa5MIedjtnl8dPrH3O/penKSB_Id.js", "ssg:https://framerusercontent.com/modules/2yIzG59032dnKmMOPxga/0dhIBNdWVUDKUWHlCOc9/idvMKSnbj.js"],
  "sourcesContent": ["// Generated by Framer (48da836)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;ABC Favorit Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"ABC Favorit Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/YWayyt1Iml0BqgKTFrny98dORY.otf\"}]}];export const css=['.framer-xE4n8 .framer-styles-preset-1m8vk73:not(.rich-text-wrapper), .framer-xE4n8 .framer-styles-preset-1m8vk73.rich-text-wrapper p { --framer-font-family: \"ABC Favorit Regular\", \"ABC Favorit Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.01em; --framer-line-height: 26px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-52f119b3-c695-48cb-b353-9260c7d083b0, #262930); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-xE4n8\";\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,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,Link,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-a1LGB\";const variantClassNames={UI23GyIHM:\"framer-v-1xfom67\"};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 transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};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 getProps=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"UI23GyIHM\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1xfom67\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"UI23GyIHM\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yk9m1y-container\",\"data-framer-name\":\"Ticker\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"oeiGBNJxW-container\",name:\"Ticker\",nodeId:\"oeiGBNJxW\",rendersWithMotion:true,scopeId:\"penKSB_Id\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:64,height:\"100%\",hoverFactor:1,id:\"oeiGBNJxW\",layoutId:\"oeiGBNJxW\",name:\"Ticker\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://docshub.run.ai/overview\",motionChild:true,nodeId:\"WtoymLbZ8\",scopeId:\"penKSB_Id\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-iis64j framer-85hs76\",\"data-framer-name\":\"NVIDIA\",layoutDependency:layoutDependency,layoutId:\"WtoymLbZ8\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xvtqzt\",\"data-framer-name\":\"NVIDIA logo 1\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:132,layoutDependency:layoutDependency,layoutId:\"Kz5maWdqo\",svg:'<svg width=\"132\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#262930\"><path d=\"M80.645 4.596v16.458h4.645V4.596h-4.645Zm-36.543-.028V21.04h4.687V8.25l3.654.014c1.2 0 2.036.293 2.608.906.74.781 1.032 2.05 1.032 4.352v7.518h4.547v-9.094c0-6.5-4.142-7.378-8.187-7.378h-8.34Zm44.033.028v16.458h7.531c4.017 0 5.329-.67 6.737-2.162 1.004-1.046 1.646-3.362 1.646-5.886 0-2.315-.544-4.38-1.506-5.663-1.702-2.301-4.185-2.747-7.895-2.747h-6.513Zm4.602 3.57h1.995c2.901 0 4.77 1.297 4.77 4.672 0 3.376-1.869 4.687-4.77 4.687h-1.995V8.166ZM73.95 4.596l-3.877 13.04-3.71-13.04h-5.021l5.3 16.458h6.694l5.356-16.458H73.95Zm32.275 16.458h4.644V4.596h-4.644v16.458Zm13.027-16.458-6.486 16.444h4.575l1.032-2.915h7.671l.977 2.9H132l-6.541-16.43h-6.207Zm3.013 2.998 2.817 7.7h-5.719l2.902-7.7ZM14.129 7.33V5.07c.223-.014.446-.028.67-.028 6.192-.195 10.25 5.328 10.25 5.328s-4.379 6.08-9.079 6.08a5.762 5.762 0 0 1-1.827-.293V9.296c2.413.293 2.901 1.353 4.338 3.766l3.221-2.706s-2.357-3.083-6.318-3.083a9.453 9.453 0 0 0-1.255.056Zm0-7.477V3.23l.67-.042c8.605-.293 14.226 7.057 14.226 7.057s-6.444 7.839-13.153 7.839c-.585 0-1.157-.056-1.73-.154v2.093c.475.055.963.097 1.438.097 6.248 0 10.767-3.194 15.147-6.96.725.586 3.696 1.995 4.31 2.608-4.157 3.487-13.85 6.29-19.346 6.29-.53 0-1.032-.027-1.534-.083v2.943h23.739V-.147H14.129Zm0 16.305v1.785C8.355 16.911 6.75 10.9 6.75 10.9s2.775-3.069 7.378-3.57v1.952h-.014c-2.413-.293-4.31 1.966-4.31 1.966s1.074 3.808 4.324 4.91Zm-10.252-5.51S7.295 5.6 14.143 5.07V3.229C6.555 3.842 0 10.259 0 10.259s3.71 10.739 14.129 11.715v-1.952c-7.643-.949-10.252-9.373-10.252-9.373Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h132v24.673H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.snyk.io/\",motionChild:true,nodeId:\"U9UOYzasN\",scopeId:\"penKSB_Id\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ybaauu framer-85hs76\",\"data-framer-name\":\"Snyk\",layoutDependency:layoutDependency,layoutId:\"U9UOYzasN\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dbe2dp\",\"data-framer-name\":\"Snyk\",fill:\"black\",intrinsicHeight:45,intrinsicWidth:86,layoutDependency:layoutDependency,layoutId:\"BuSoblOqG\",svg:'<svg width=\"86\" height=\"45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><mask id=\"b\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"86\" height=\"45\"><path d=\"M85.32.673H.718v43.933h84.6V.673Z\" fill=\"#fff\"/></mask><g mask=\"url(#b)\"><mask id=\"c\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"29\" height=\"45\"><path d=\"M28.478.673H.908v43.789h27.57V.672Z\" fill=\"#fff\"/></mask><g mask=\"url(#c)\" fill=\"#262930\"><path d=\"M27.705 10.463c-.36-.101-.736-.202-1.129-.298.124.47.193.953.205 1.439v.345l-1.643 4.455c.833 7.713.426 8.766.293 9.111-.212.55-.779 1.439-1.729 2.734l.934 8.684 3.395-2.45a1.075 1.075 0 0 0 .448-.878V11.498a1.09 1.09 0 0 0-.217-.647 1.076 1.076 0 0 0-.557-.388Z\"/><path d=\"M28.479 33.608a1.086 1.086 0 0 1-.448.877l-3.395 2.45-.934-8.684c.953-1.29 1.517-2.184 1.729-2.733.133-.346.54-1.398-.293-9.111l1.643-4.455v-.346a6.236 6.236 0 0 0-.205-1.438c.393.096.77.196 1.129.297a1.077 1.077 0 0 1 .774 1.038v22.105Zm-16.572-22.69a9.861 9.861 0 0 1 5.572 0l.212-.35.238-1.623a78.165 78.165 0 0 0-3.21-.096c-1.088 0-2.176.031-3.247.089l.238 1.63.197.35Z\"/><path d=\"M14.712 8.851c.998 0 2.398.058 3.21.096l-.239 1.623-.212.35a9.861 9.861 0 0 0-5.57 0l-.213-.347-.238-1.63a59.184 59.184 0 0 1 3.262-.092ZM4.248 16.407 2.61 11.954v-.348a6.32 6.32 0 0 1 .202-1.438c-.39.096-.769.196-1.126.297a1.086 1.086 0 0 0-.774 1.038v22.105a1.085 1.085 0 0 0 .448.877l3.41 2.467.935-8.674c-.952-1.305-1.53-2.206-1.745-2.76-.138-.348-.545-1.4.288-9.111Z\"/><path d=\"m4.77 36.952-3.415-2.465a1.077 1.077 0 0 1-.447-.877V11.503a1.086 1.086 0 0 1 .773-1.038c.358-.1.736-.201 1.127-.297a6.32 6.32 0 0 0-.203 1.438v.348l1.643 4.453c-.833 7.71-.426 8.763-.293 9.11.214.555.786 1.456 1.745 2.76l-.93 8.675Z\"/><path d=\"M24.116 25.005c.267-.688.114-3.942-.41-8.706v-.072l1.667-4.53v-.09c0-1.976-2.54-7.263-4.047-10.07l-.39-.72a.239.239 0 0 0-.252-.123.237.237 0 0 0-.194.202l-1.452 10.161-.931 1.542-.238-.08a10.647 10.647 0 0 0-3.193-.584 10.274 10.274 0 0 0-3.18.585l-.239.079-.917-1.542L8.893.877a.24.24 0 0 0-.195-.205.237.237 0 0 0-.253.126l-.388.719c-1.502 2.812-4.047 8.1-4.047 10.07v.091l1.666 4.53v.072c-.524 4.764-.676 8.017-.41 8.705.239.617 1.191 1.938 1.982 2.99L6.102 38.633l1.14.823.856.616 5.623 4.073a1.66 1.66 0 0 0 1.94 0l6.948-5.006.693-.501-1.145-10.667c.788-1.048 1.724-2.353 1.96-2.966ZM21.314 7.262l.18-1.271a.194.194 0 0 1 .161-.16.192.192 0 0 1 .202.102c.921 1.935 1.81 4.055 1.904 5.024a.198.198 0 0 1-.011.083l-.446 1.2a.192.192 0 0 1-.159.124.19.19 0 0 1-.181-.089c-1.107-1.755-1.54-4.253-1.645-4.965a.213.213 0 0 1-.005-.05v.002Zm-4.42 12.49c.51-.509 1.43-1.216 2.584-1.216 1.538 0 .652 1.184.353 1.539a.242.242 0 0 1-.181.084h-2.588a.236.236 0 0 1-.217-.149.24.24 0 0 1 .05-.259Zm1.325 2.2a.592.592 0 0 0 .476.37.595.595 0 0 0 .667-.465.363.363 0 0 1-.34-.482.36.36 0 0 1 .09-.142l-.017-.014h1.04v.052a1.366 1.366 0 0 1-.83 1.3 1.345 1.345 0 0 1-1.786-.786 1.367 1.367 0 0 1-.081-.538v-.028h1.026a.602.602 0 0 0-.25.733h.005Zm-8.302-3.416c1.159 0 2.073.707 2.583 1.215a.24.24 0 0 1-.172.408H9.752a.235.235 0 0 1-.18-.084c-.313-.355-1.198-1.54.34-1.54h.005Zm.476 3.006a.368.368 0 0 1-.355.305.592.592 0 0 0 .935.37.608.608 0 0 0-.042-.991h.997a.031.031 0 0 1 .029.029 1.37 1.37 0 0 1-.366 1 1.35 1.35 0 0 1-.97.427 1.341 1.341 0 0 1-.978-.41 1.361 1.361 0 0 1-.384-.993v-.053h1.04l-.016.014a.363.363 0 0 1 .11.302ZM6.459 12.28a.193.193 0 0 1-.342-.036l-.443-1.199a.169.169 0 0 1-.012-.084c.09-.959.978-3.088 1.905-5.023a.191.191 0 0 1 .2-.105.19.19 0 0 1 .16.163l.18 1.27a.216.216 0 0 1 0 .056c-.11.705-.543 3.203-1.648 4.958Zm3.365 21.483c-.757-2.088-.767-5.01-.767-5.135v-.2l-.124-.155a51.443 51.443 0 0 1-1.112-1.439.24.24 0 0 1 .122-.376l2.04-.6a.239.239 0 0 0 .112-.072l1.948-2.237a.236.236 0 0 1 .37.015.24.24 0 0 1 .046.131l.34 6.412a.24.24 0 0 1-.042.146c-.136.202-.524.81-.524 1.185 0 .48.702 1.107 1.395 1.609a.65.65 0 0 1 .027-.06c.238-.437.559-.516.714-.18.053.248.071.502.055.755h.011v.59a.242.242 0 0 1-.023.105c-.127.257-.738 1.355-2.04 1.355-.57.017-1.936-.166-2.548-1.849Zm5.804 2.434a.096.096 0 0 1 .062.17 1.633 1.633 0 0 1-1.995 0 .096.096 0 0 1-.03-.106.095.095 0 0 1 .09-.064h1.873Zm1.74.703a3.06 3.06 0 0 1-1.117 1.177 3.025 3.025 0 0 1-3.119 0 3.054 3.054 0 0 1-1.118-1.177.241.241 0 0 1 .1-.33.236.236 0 0 1 .124-.025h.143c.15 0 .3-.016.447-.05a.236.236 0 0 1 .25.093 1.982 1.982 0 0 0 1.617.844 1.966 1.966 0 0 0 1.617-.844.24.24 0 0 1 .25-.094c.155.038.315.057.476.056h.112a.238.238 0 0 1 .248.229.241.241 0 0 1-.027.12h-.002Zm4.227-10.056a94.8 94.8 0 0 1-1.112 1.438l-.124.156v.2c0 .124 0 3.047-.767 5.135-.609 1.678-1.978 1.865-2.537 1.865-1.303 0-1.905-1.098-2.039-1.354a.241.241 0 0 1-.026-.106v-.59h.012a2.76 2.76 0 0 1 .055-.755c.145-.336.462-.256.714.18 0 .02.017.04.026.06.693-.501 1.396-1.13 1.396-1.609 0-.374-.39-.983-.527-1.184a.24.24 0 0 1-.04-.147l.338-6.411a.242.242 0 0 1 .16-.215.235.235 0 0 1 .257.069l1.947 2.237c.03.034.07.06.114.072l2.039.6a.24.24 0 0 1 .114.359Z\"/></g><path d=\"M76.92 24.164h-.328v5.667h-4.07v-14.11l4.07-6.361v13.166c.81-.993 3.54-4.762 3.54-4.762h5.024l-4.764 5.041 4.928 7.036h-5.14l-3.26-5.677Zm-11.34-.925 1.668-5.436h4.03l-4.725 11.99c-1.407 3.605-3.423 6.043-6.432 6.043-1.157 0-2.13-.298-2.642-.588l1.62-2.506c.241.03.492.039.743.039 1.389 0 2.43-1.35 3.105-2.95L57.99 17.803h4.562l1.784 5.368c.347 1.022.597 2.969.597 2.969s.319-1.88.646-2.901Zm-12.296-.28c0-1.57-.694-2.313-2.015-2.313-.646 0-1.321.183-1.784.463v8.722h-4.07V17.92l3.983-.328-.096 1.947h.135a5.055 5.055 0 0 1 4.05-2.034c2.083 0 3.886 1.292 3.886 4.347v7.98h-4.089V22.96Zm-19.518 6.256.367-2.776a9.177 9.177 0 0 0 3.915.925c.877 0 1.456-.299 1.456-.829 0-1.523-5.487-1.156-5.487-5.137 0-2.545 2.333-3.884 5.255-3.884 1.457 0 2.96.395 3.935.742l-.395 2.727c-1.023-.395-2.411-.76-3.569-.76-.713 0-1.292.25-1.292.712 0 1.504 5.603 1.205 5.603 5.09 0 2.582-2.295 4.067-5.439 4.067-1.736 0-3.144-.299-4.349-.877Z\" fill=\"#262930\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.719 .673)\" d=\"M0 0h84.601v44H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.whereby.com/\",motionChild:true,nodeId:\"mebyLKPR6\",scopeId:\"penKSB_Id\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-18uwchy framer-85hs76\",\"data-framer-name\":\"Whereby\",layoutDependency:layoutDependency,layoutId:\"mebyLKPR6\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-e5sbg\",\"data-framer-name\":\"Whereby\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:121,layoutDependency:layoutDependency,layoutId:\"x0AsKyXwV\",svg:'<svg width=\"121\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M24.044 1.382c-2.109 0-4.353 1.622-6.165 5.435l-2.326-5.598h-.135c-.378.893-1.568 1.38-2.704 1.38H.41v.243c.974.405 1.84 1.838 2.65 3.758l7.626 18.388h.243l4.949-11.98 4.948 11.98h.244l4.218-10.52c1.623-4.137 2.704-6.408 2.704-8.463 0-2.704-1.514-4.624-3.948-4.624ZM12.606 18.634 7.657 6.628c-.811-1.947-.054-3.354 1.974-3.354 1.785 0 2.677 1.19 3.57 3.327l2.19 5.273-2.785 6.76Zm11.844-4.489-1.73 4.38-4.57-10.978c1.108-1.622 2.568-2.244 4.245-2.244 2 0 3.19 1.379 3.19 3.84 0 1.351-.351 3.028-1.135 5.002Zm64.006-.865c0-2.434-2.487-4.219-5.678-4.219-4.814 0-8.086 4.165-8.086 8.518 0 4.76 3.624 7.599 7.22 7.599 2.894 0 5.68-1.758 6.544-4.813l-.216-.19c-.973 1.46-2.677 2.245-4.38 2.245-2.245 0-4.057-1.271-4.895-3.57 4.624-.703 9.491-1.947 9.491-5.57Zm-9.68 4.894c-.19-.703-.27-1.487-.27-2.271 0-3.867 1.622-6.03 3.65-6.03 1.568 0 2.055 1.325 2.055 2.758 0 2.947-2.677 4.948-5.435 5.543Zm39.047-9.545c-2.055 0-4.029 1.92-5.219 4.543l-2.028-4.273h-.243c-.379 1.46-2.191 2.272-4.192 2.245v.243c1.244.297 1.785 1.487 2.569 3.056l5.273 10.843-.351.65c-1.136 2.216-1.893 3.028-2.704 3.028-1.461 0-1.569-2.11-3.326-2.11-1.028 0-1.893.704-1.893 1.948 0 1.406 1.541 2.27 3.164 2.27 2.352 0 3.812-1.838 5.381-4.812l4.083-7.599c1.622-3.056 2.542-4.38 2.542-6.68-.081-1.811-1.136-3.352-3.056-3.352Zm-.27 9.653-1.298 2.515-3.353-7.058c.649-1.135 1.784-2.055 3.461-2.055 1.568 0 2.407.974 2.407 2.596-.027 1.109-.406 2.461-1.217 4.002Zm-72.957 3.354v-9.167c0-2.056-1.271-3.408-3.191-3.408-2.299 0-5.165 2.082-6.733 3.597V.273h-.217c-.92 1.46-3.299 2.352-5.597 2.271v.244c1.298.351 1.703 1.27 1.703 3.055v15.793c0 1.325-.595 2.406-1.676 2.839v.243h7.49v-.216c-1.109-.622-1.73-1.514-1.73-2.785v-8.302c1.757-1.271 3.082-1.893 4.083-1.893 1.108 0 1.73.811 1.73 2.434v7.734c0 1.27-.567 2.136-1.73 2.785v.243h7.517v-.216c-1.054-.46-1.65-1.514-1.65-2.866Zm55.678-12.575c-2.137 0-4.192 1.569-5.328 2.786V.273h-.189c-1.082 1.46-3.542 2.352-5.733 2.271v.244c1.217.351 1.785 1.298 1.785 3.055v19.173h.27l1.975-2.19c.865 1.378 2.487 2.19 4.461 2.19 4.949 0 8.329-4.219 8.329-8.816 0-4.191-2.65-7.139-5.57-7.139Zm-2.894 15.17c-1.46 0-2.434-1.19-2.434-2.812v-8.734c.974-.866 2.083-1.65 3.3-1.623 2.082.027 3.271 2.38 3.299 5.976.054 4.057-1.623 7.194-4.165 7.194ZM72.367 9.061c-1.623 0-3.434 1.758-4.246 3.408V8.872h-.243c-1 1.46-3.38 2.326-5.625 2.271v.244c1.217.351 1.812 1.325 1.812 3.056v7.084c0 1.352-.595 2.434-1.784 2.975v.243h7.68v-.243c-1.218-.54-1.758-1.595-1.758-2.975v-8.301c.432-.568.946-1.163 1.54-1.163 1.11 0 1.542 1.325 2.921 1.325.947 0 1.947-.784 1.947-2.082a2.239 2.239 0 0 0-2.244-2.245ZM60.901 13.28c0-2.434-2.487-4.219-5.678-4.219-4.814 0-8.085 4.165-8.085 8.518 0 4.76 3.623 7.599 7.22 7.599 2.893 0 5.678-1.758 6.544-4.813l-.217-.19c-.973 1.46-2.677 2.245-4.38 2.245-2.245 0-4.057-1.271-4.895-3.57 4.597-.703 9.492-1.947 9.492-5.57Zm-9.707 4.894c-.19-.703-.27-1.487-.27-2.271 0-3.867 1.622-6.03 3.65-6.03 1.568 0 2.082 1.325 2.082 2.758 0 2.947-2.704 4.948-5.462 5.543Z\" fill=\"#262930\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.bucket.co/\",motionChild:true,nodeId:\"Np3sh0Q0k\",scopeId:\"penKSB_Id\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1giykfa framer-85hs76\",\"data-framer-name\":\"Bucket\",layoutDependency:layoutDependency,layoutId:\"Np3sh0Q0k\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-8yn6bd\",\"data-framer-name\":\"Bucket\",fill:\"black\",intrinsicHeight:29,intrinsicWidth:136,layoutDependency:layoutDependency,layoutId:\"VeeM9_SYi\",svg:'<svg width=\"136\" height=\"29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.223 4.517c-2.816 0-4.931.074-6.497.171-1.824.114-3.007 1.498-2.887 3.418.1 1.588.269 3.73.554 6.59.356 3.566.675 6.016.927 7.664.218 1.419 1.235 2.36 2.62 2.435 1.255.069 2.972.122 5.283.122 2.36 0 4.1-.056 5.36-.126 1.32-.074 2.29-.98 2.498-2.355.248-1.644.575-4.11.973-7.754.337-3.08.521-5.313.618-6.916.103-1.725-.946-2.943-2.622-3.056-1.594-.108-3.808-.193-6.827-.193Zm-6.657-2.49c1.628-.101 3.797-.176 6.657-.176 3.066 0 5.34.086 7.001.199 3.134.212 5.254 2.71 5.064 5.878-.1 1.658-.288 3.936-.629 7.05-.401 3.67-.733 6.173-.987 7.862-.388 2.575-2.342 4.467-4.945 4.613-1.317.074-3.106.13-5.504.13-2.35 0-4.114-.054-5.423-.126-2.646-.144-4.665-2.046-5.07-4.686-.26-1.706-.585-4.204-.944-7.807a184.352 184.352 0 0 1-.563-6.688c-.208-3.327 2.008-6.041 5.343-6.249Z\" fill=\"#262930\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.324 15.354a10.195 10.195 0 0 1-1.143-1.912c-.36-.787-.033-1.502.54-1.806.656-.348 1.525 0 1.836.68.259.565.584 1.09.966 1.568a7.323 7.323 0 0 0 5.716 2.767c.336 0 .666-.023.99-.067.13-.018.261-.02.39-.006.73.078 1.38.638 1.38 1.397 0 .561-.365 1.063-.907 1.167a9.687 9.687 0 0 1-1.853.175 9.96 9.96 0 0 1-.845-.036c-2.875-.245-5.405-1.73-7.07-3.927Z\" fill=\"#262930\"/><path d=\"M42.414 25.873V4.49h7.704c1.493 0 2.73.25 3.709.752.98.494 1.712 1.166 2.198 2.015.487.842.73 1.792.73 2.85 0 .89-.161 1.643-.483 2.255a4.02 4.02 0 0 1-1.294 1.462 5.658 5.658 0 0 1-1.767.793v.209c.698.035 1.38.264 2.044.69.671.417 1.226 1.012 1.664 1.784.438.773.658 1.713.658 2.82 0 1.092-.254 2.073-.76 2.944-.5.863-1.275 1.548-2.322 2.056-1.048.501-2.387.752-4.017.752h-8.064Zm3.174-2.767h4.582c1.52 0 2.61-.3 3.267-.898.657-.598.986-1.346.986-2.244 0-.675-.168-1.295-.504-1.859-.335-.564-.815-1.012-1.438-1.346-.616-.335-1.349-.502-2.198-.502h-4.695v6.85Zm0-9.365h4.253c.712 0 1.353-.139 1.921-.417a3.375 3.375 0 0 0 1.366-1.17c.343-.508.514-1.106.514-1.795 0-.884-.305-1.626-.914-2.224-.61-.599-1.545-.898-2.805-.898h-4.335v6.504Zm25.502 5.482V9.837h3.082v16.036h-3.02v-2.777h-.164c-.363.856-.945 1.57-1.747 2.14-.794.564-1.784.846-2.969.846-1.013 0-1.91-.227-2.691-.679-.774-.46-1.383-1.138-1.829-2.036-.438-.898-.657-2.008-.657-3.33v-10.2h3.072v9.824c0 1.093.297 1.963.893 2.61.596.647 1.37.971 2.322.971.575 0 1.147-.146 1.716-.439.575-.292 1.05-.734 1.427-1.325.384-.592.572-1.344.566-2.256Zm13.856 6.974c-1.527 0-2.842-.352-3.945-1.055-1.095-.71-1.938-1.688-2.527-2.934-.589-1.245-.883-2.672-.883-4.28 0-1.629.301-3.066.904-4.312.602-1.253 1.452-2.23 2.547-2.934 1.096-.703 2.387-1.054 3.873-1.054 1.199 0 2.267.226 3.206.678a5.768 5.768 0 0 1 2.27 1.88c.582.807.928 1.75 1.037 2.829H88.44a3.653 3.653 0 0 0-1.13-1.942c-.582-.543-1.363-.814-2.342-.814-.856 0-1.606.23-2.25.689-.637.452-1.133 1.1-1.49 1.942-.356.835-.534 1.823-.534 2.965 0 1.17.175 2.178.524 3.027.35.85.843 1.507 1.48 1.974.643.466 1.4.7 2.27.7a3.76 3.76 0 0 0 1.582-.325c.48-.222.88-.539 1.202-.95.328-.41.558-.904.688-1.482h2.99c-.11 1.037-.442 1.963-.997 2.777-.555.814-1.298 1.455-2.23 1.921-.924.466-2.01.7-3.256.7Zm12.592-5.764-.02-3.81h.534l6.287-6.786h3.678l-7.171 7.725h-.483l-2.825 2.871Zm-2.825 5.44V4.49h3.072v21.382h-3.072Zm9.965 0-5.65-7.622 2.116-2.182 7.304 9.804h-3.77Zm12.289.324c-1.555 0-2.894-.338-4.017-1.013-1.116-.682-1.979-1.64-2.589-2.871-.602-1.24-.904-2.69-.904-4.354 0-1.642.302-3.09.904-4.343.61-1.253 1.459-2.23 2.548-2.934 1.096-.703 2.377-1.054 3.842-1.054.891 0 1.753.15 2.589.449a6.246 6.246 0 0 1 2.25 1.41c.664.64 1.188 1.471 1.571 2.494.384 1.017.576 2.252.576 3.707v1.106h-12.544v-2.338h9.534c0-.822-.165-1.549-.493-2.182a3.767 3.767 0 0 0-1.387-1.514c-.589-.369-1.281-.553-2.075-.553-.863 0-1.617.215-2.26.647a4.328 4.328 0 0 0-1.48 1.67 4.891 4.891 0 0 0-.513 2.224v1.827c0 1.072.185 1.984.554 2.735.377.752.901 1.326 1.572 1.723.671.39 1.456.585 2.353.585.582 0 1.113-.084 1.592-.25a3.432 3.432 0 0 0 1.243-.773c.349-.341.616-.762.801-1.264l2.908.533a5.375 5.375 0 0 1-1.254 2.286c-.596.648-1.345 1.152-2.25 1.514-.897.355-1.921.533-3.071.533Zm17.543-16.36v2.505h-8.618V9.837h8.618Zm-6.307-3.842h3.072v15.17c0 .605.089 1.06.267 1.367.178.3.407.505.688.616.288.104.599.157.935.157.246 0 .462-.018.647-.053.185-.034.329-.062.431-.083l.555 2.579a4.98 4.98 0 0 1-.76.208c-.329.077-.74.119-1.233.126a5.337 5.337 0 0 1-2.26-.439 3.899 3.899 0 0 1-1.695-1.42c-.431-.64-.647-1.444-.647-2.411V5.995Z\" fill=\"#262930\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://developers.make.com/\",motionChild:true,nodeId:\"kQBGUaqB7\",scopeId:\"penKSB_Id\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1vsgsy3 framer-85hs76\",\"data-framer-name\":\"Make\",layoutDependency:layoutDependency,layoutId:\"kQBGUaqB7\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-oehq08\",\"data-framer-name\":\"Make\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:124,layoutDependency:layoutDependency,layoutId:\"L_LMa5KwG\",svg:'<svg width=\"124\" height=\"26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M42.17 13.21v10.913a.648.648 0 0 1-.652.642h-4.787a.647.647 0 0 1-.652-.642V6.89c0-.355.293-.643.652-.643h4.787c.36 0 .652.288.652.643v1.357c1.203-1.48 2.895-2.407 5.264-2.407 2.219 0 4.136.889 5.301 2.555 1.429-1.666 3.46-2.555 5.941-2.555 4.211 0 7.106 2.444 7.106 7.11v11.172a.648.648 0 0 1-.652.642h-4.787a.647.647 0 0 1-.652-.642V14.21c0-2.037-1.166-3.036-2.746-3.036-1.315 0-2.369.815-2.97 2.037v10.912a.648.648 0 0 1-.653.643h-4.787a.647.647 0 0 1-.652-.643v-9.912c0-2.037-1.165-3.036-2.746-3.036-1.353 0-2.369.815-2.97 2.037m31.621 11.924c-3.534 0-6.505-2.297-6.505-5.852 0-3.258 2.18-4.778 6.242-5.814l5.19-1.333c-.151-1.222-1.13-1.815-2.708-1.815-1.4 0-2.406.527-2.87 1.582a.665.665 0 0 1-.758.392l-4.112-.963a.645.645 0 0 1-.466-.847c1.18-3.147 4.461-4.795 8.43-4.795 5.339 0 8.423 2.482 8.423 6.85v11.58a.647.647 0 0 1-.653.643h-4.538a.648.648 0 0 1-.652-.627l-.023-.965-.037.037c-1.542 1.295-3.045 1.925-4.964 1.925m1.54-4.63c.791 0 1.392-.222 2.295-.74l1.052-.63.037-3.001-2.707.74c-1.843.52-2.67.964-2.67 2 0 1.148 1.014 1.63 1.992 1.63m19.054-4.477-1.843 1.666v6.43a.647.647 0 0 1-.652.643h-4.674a.647.647 0 0 1-.652-.642V.815c0-.354.292-.642.652-.642h4.674c.36 0 .652.288.652.642V11.36l5.453-4.942a.662.662 0 0 1 .442-.17h5.771c.596 0 .879.722.44 1.117l-5.6 5.03 6.386 11.419a.643.643 0 0 1-.571.952h-5.456a.653.653 0 0 1-.578-.346l-4.443-8.395-.002.002Z\" fill=\"#262930\"/><path d=\"M114.214 25.173c-5.226 0-10.001-3.222-10.001-9.74 0-6.148 4.587-9.704 9.625-9.704s9.025 3.593 9.174 9.259c.017.598.026 1.016.032 1.312a.645.645 0 0 1-.652.65h-12.163c.188 2.223 1.992 3.63 4.286 3.63 1.632 0 2.97-.668 3.908-1.876a.653.653 0 0 1 .875-.142l3.038 2.004c.304.2.379.607.174.905-1.627 2.36-4.311 3.702-8.294 3.702m-3.873-11.851h6.58c-.037-2.112-1.616-3.037-3.27-3.037-1.542 0-3.121.89-3.309 3.037\" fill=\"#262930\"/><mask id=\"b\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"21\" y=\"6\" width=\"7\" height=\"19\"><path d=\"M21.79 6.26h4.722c.36 0 .652.287.652.642v17.167a.648.648 0 0 1-.652.643h-4.721a.648.648 0 0 1-.652-.643V6.902c0-.355.292-.643.652-.643Z\" fill=\"#fff\"/></mask><g mask=\"url(#b)\"><path d=\"M26.445 4.332 15.059 8.467l6.802 18.17 11.386-4.134-6.802-18.171Z\" fill=\"#262930\"/></g><mask id=\"c\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"6\" width=\"14\" height=\"19\"><path d=\"M7.941 6.486.115 21.825a.637.637 0 0 0 .29.862l4.218 2.088c.322.16.714.031.875-.286L13.325 9.15a.637.637 0 0 0-.29-.862L8.817 6.2a.658.658 0 0 0-.876.286Z\" fill=\"#fff\"/></mask><g mask=\"url(#c)\"><path d=\"M11.356 1.277-7.002 9.094l9.085 20.699 18.358-7.817-9.085-20.699Z\" fill=\"#262930\"/></g><mask id=\"d\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"11\" y=\"6\" width=\"10\" height=\"19\"><path d=\"m14.525 6.54-3.35 16.72a.642.642 0 0 0 .512.754l4.628.92c.354.07.7-.156.77-.505l3.348-16.72a.642.642 0 0 0-.511-.754l-4.628-.92a.65.65 0 0 0-.77.505Z\" fill=\"#fff\"/></mask><g mask=\"url(#d)\"><path d=\"M19.381 3.023 4.858 8.289l7.37 19.719 14.523-5.266-7.37-19.72Z\" fill=\"#262930\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.045 .173)\" d=\"M0 0h123v25H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://documentation.gravitee.io/\",motionChild:true,nodeId:\"Xn6smDpxE\",scopeId:\"penKSB_Id\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-u1s116 framer-85hs76\",\"data-framer-name\":\"Gravitee.io\",layoutDependency:layoutDependency,layoutId:\"Xn6smDpxE\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-b082qy\",\"data-framer-name\":\"Gravitee.io\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:155,layoutDependency:layoutDependency,layoutId:\"fY8orVTWH\",svg:'<svg width=\"155\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#262930\"><path d=\"M.136 26.267c.225-1.077.604-2.071 1.456-2.84.083-.072.083-.344.024-.474-.616-1.42-.497-2.758.343-4.06.107-.166.083-.51-.024-.675-.532-.829-.722-1.74-.722-2.699 0-1.953-.011-3.906 0-5.86.024-2 1.208-3.586 3.054-4.107.332-.094.699-.118 1.054-.118 4.711-.012 9.422-.012 14.145 0 .829 0 1.006.19 1.018 1.006v.651c-.012.781-.13.935-.9 1.042-.556.07-.639.414-.639.876 0 2.213 0 4.415-.012 6.628-.011 1.87-.793 3.28-2.556 4.025-.51.213-1.101.308-1.657.32-3.019.035-6.037.011-9.056.011-.272 0-.556 0-.817.071-.544.154-.9.521-.911 1.101-.012.557.26 1.006.817 1.172.331.095.698.13 1.053.13 3.29.012 6.593.083 9.884-.023 2.427-.071 4.557 1.965 4.285 4.924-.166 1.728-1.669 3.563-3.516 3.776-.07.012-.142.06-.212.095H3.936c-.888-.249-1.74-.51-2.439-1.172C.681 29.309.35 28.35.137 27.332v-1.065Zm9.932-8.984h4.498c1.053 0 1.669-.592 1.669-1.634a480.84 480.84 0 0 0 0-5.86c0-1.029-.604-1.715-1.622-1.727a384.874 384.874 0 0 0-9.055 0c-1.03.012-1.634.698-1.634 1.716a483.281 483.281 0 0 0 0 5.86c.012 1.077.58 1.645 1.645 1.657 1.504 0 2.995-.012 4.499-.012Zm-.012 11.233c1.81 0 3.622.012 5.445 0 1.136 0 1.787-.604 1.799-1.669.024-1.065-.64-1.752-1.787-1.752-3.623-.012-7.257-.012-10.879.012-.39 0-.828.154-1.148.367-.604.402-.781 1.207-.52 1.965.224.663.757 1.053 1.538 1.065 1.847.024 3.705.012 5.552.012Zm144.08-10.535c-.166.545-.284 1.113-.521 1.622-.698 1.48-1.953 2.225-3.539 2.26-2.853.06-5.717.048-8.57.013-2.379-.036-4.048-1.788-4.048-4.179V9.482c0-2.284 1.692-4.013 3.977-4.036a670.72 670.72 0 0 1 8.511 0c2.178.012 3.728 1.361 4.083 3.515.024.13.071.26.119.391-.012 2.864-.012 5.753-.012 8.63Zm-1.409-4.32V9.636c-.012-1.657-1.219-2.888-2.864-2.9a952.757 952.757 0 0 0-8.227 0c-1.645.012-2.888 1.243-2.888 2.888a899.854 899.854 0 0 0 0 8.05c.012 1.503 1.006 2.734 2.497 2.793 2.877.107 5.753.166 8.63.047 2-.083 2.852-1.219 2.864-3.243-.012-1.207-.012-2.415-.012-3.61Zm-55.882 8.214h-5.327c-2.687 0-4.427-1.669-4.474-4.367a277.944 277.944 0 0 1 0-7.694c.023-2.167 1.136-3.717 3.006-4.25.415-.118.853-.13 1.29-.13 2.936-.012 5.884.083 8.819-.036 2.261-.082 4.427 1.444 4.475 4.356a16.88 16.88 0 0 1-.095 2.178c-.237 2.084-1.882 3.551-3.966 3.551-3.195.012-6.391 0-9.587 0-1.243 0-1.243 0-1.243 1.267 0 .26-.012.51 0 .77.047 1.053.639 1.633 1.692 1.633 3.67.012 7.34 0 11.009 0 1.041 0 1.136.107 1.148 1.16 0 1.539 0 1.539-1.539 1.539-1.74.023-3.468.023-5.208.023Zm-1.598-8.984c1.598 0 3.196.012 4.794 0 1.278-.012 1.894-.627 1.894-1.894 0-.39.012-.793 0-1.183-.024-1.03-.616-1.729-1.622-1.74a374.876 374.876 0 0 0-8.937 0c-1.018.011-1.622.71-1.633 1.728-.012.77-.012 1.539 0 2.308 0 .71.07.781.769.793 1.574-.012 3.16-.012 4.735-.012Zm21.91 8.984h-5.563c-2.403-.011-4.191-1.799-4.203-4.19V9.636c0-2.486 1.717-4.19 4.214-4.202 3.042-.012 6.073-.012 9.115 0 2.45 0 4.167 1.716 4.178 4.166 0 .687.012 1.385-.011 2.072-.072 2.095-1.823 3.811-3.919 3.823-3.338.012-6.664 0-10.002.012-.876 0-.876 0-.876.9 0 .39-.012.793 0 1.183.024 1.007.592 1.575 1.598 1.587 1.953.012 3.906 0 5.86 0h5.326c.841 0 1.042.213 1.054 1.053.023 1.634 0 1.645-1.634 1.645h-5.137Zm-1.539-8.984c1.598 0 3.196.012 4.794 0 1.219-.012 1.776-.568 1.776-1.775 0-.474.012-.947 0-1.42-.012-.948-.415-1.551-1.338-1.575-3.137-.06-6.262-.06-9.399-.012-.899.012-1.349.651-1.373 1.55-.011.853.024 1.693-.011 2.546-.024.52.177.698.686.686 1.634-.024 3.255 0 4.865 0ZM46.68 11.317c-.048-.781-.036-1.468-.142-2.13-.095-.557-.521-.924-1.09-1.042a5.208 5.208 0 0 0-1.053-.095c-3.172-.012-6.345 0-9.529 0-.994 0-1.089-.095-1.1-1.065-.012-1.54-.012-1.54 1.515-1.54 3.338 0 6.664-.011 10.002.013 1.835.011 3.35 1.172 3.859 2.935.094.32.118.663.118.995.012 2.864.012 5.717 0 8.581-.012 2.12-1.728 3.907-3.859 3.93a355.28 355.28 0 0 1-8.76 0c-2.082-.023-3.799-1.799-3.834-3.894-.024-.912-.012-1.811 0-2.723.023-2.284 1.728-4.072 4.024-4.107 2.806-.047 5.6-.012 8.405 0 .414-.036.84.071 1.444.142Zm-5.67 7.86c1.326 0 2.64.012 3.965 0 1.03-.012 1.622-.557 1.657-1.586.024-.734.036-1.456 0-2.19-.047-.983-.65-1.563-1.633-1.575a875.197 875.197 0 0 0-7.872 0c-1.006 0-1.61.521-1.693 1.527-.059.782-.059 1.575.012 2.368.083 1.006.64 1.456 1.657 1.468 1.314 0 2.616-.012 3.907-.012Zm11.884-13.85c1.243 0 1.42.119 1.752 1.29l3.231 11.435c.06.225.083.51.237.663.249.237.58.52.876.533.272.011.663-.273.805-.521.237-.438.331-.959.474-1.456 1.018-3.61 2.024-7.209 3.042-10.82.26-.934.52-1.112 1.527-1.124 1.574-.012 1.645.095 1.207 1.622-1.172 4.131-2.332 8.274-3.504 12.405-.461 1.634-1.941 2.746-3.586 2.746a3.698 3.698 0 0 1-3.599-2.722c-1.219-4.309-2.426-8.617-3.634-12.926-.248-.912-.035-1.125 1.172-1.125Zm24.089 7.919V9.103c0-.947 0-.947-.924-.958-.142 0-.272 0-.414-.012-.426-.06-.686-.284-.686-.734 0-.39-.012-.793 0-1.184.023-.639.224-.852.864-.864 1.243-.012 1.172.118 1.172-1.195 0-.983-.012-1.977 0-2.96.011-.734.224-.935.97-.947 1.716-.035 1.716-.035 1.716 1.693 0 .923.012 1.858 0 2.782-.011.461.178.627.628.615a86.753 86.753 0 0 1 3.018 0c.722.012.935.237.96.959.046 1.8.023 1.835-1.753 1.835-.746 0-1.503.012-2.249 0-.426-.012-.615.142-.615.58.011 2.983-.012 5.954.011 8.937 0 .911.628 1.503 1.551 1.527.71.023 1.42-.012 2.13.012.711.011.912.236.924.935.036 1.763.036 1.763-1.74 1.763-.71 0-1.432.06-2.119-.059-2.095-.355-3.42-2.012-3.444-4.25-.024-1.455 0-2.9 0-4.332Zm-54.001 1.776c0-1.87-.024-3.752 0-5.623.024-2.213 1.74-3.93 3.953-3.965 1.16-.024 2.332-.012 3.492 0 .687 0 .829.154.84.84.013 1.894.143 1.776-1.751 1.764H27.68c-1.503.012-2.083.58-2.083 2.083-.012 3.575 0 7.138 0 10.713 0 1.041-.107 1.148-1.148 1.148h-.474c-.781-.024-.982-.225-.994-.994-.012-1.989 0-3.977 0-5.966Zm46.164-1.397V6.416c0-.9.166-1.065 1.066-1.077 1.621-.012 1.645.012 1.645 1.646v13.778c0 1.065-.166 1.23-1.243 1.23h-.533c-.734-.023-.947-.236-.947-.97 0-2.474.012-4.936.012-7.398Zm64.749.272v7.15c0 .213.059.485-.048.64-.142.212-.402.484-.615.484-.201 0-.462-.284-.592-.508-.095-.166-.047-.427-.047-.64V6.771c0-.213-.059-.485.047-.639.142-.201.414-.426.639-.438.19-.012.438.249.568.45.095.142.036.379.036.58.012 2.403.012 4.782.012 7.173Zm-5.907 5.126c.391.19 1.066.32 1.125.58.142.65.024 1.373-.047 2.06-.012.106-.308.26-.486.272-.485.035-.982.012-1.468.012a.387.387 0 0 1-.224-.071c-.805-.545-.379-1.362-.403-2.06-.012-.51.426-.651.888-.64h.533a.629.629 0 0 0 .082-.153ZM69.158 1.61C69.146.239 69.146.239 70.531.239h.592c.474.011.781.284.722.745-.083.663.45 1.575-.533 1.906-.509.178-1.136.071-1.692.012-.166-.024-.367-.32-.438-.521-.083-.237-.024-.509-.024-.77Zm64.725.273c0 .26.083.556-.023.757-.119.237-.403.533-.616.533-.213 0-.556-.32-.604-.544a4.17 4.17 0 0 1 0-1.527c.048-.237.355-.533.592-.592.367-.083.616.213.651.592.012.272 0 .532 0 .78Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.136 .107)\" d=\"M0 0h154v31.131H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.ionos.com/cloud\",motionChild:true,nodeId:\"ZZBcGdUuW\",scopeId:\"penKSB_Id\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-2tjrrw framer-85hs76\",\"data-framer-name\":\"IONOS\",layoutDependency:layoutDependency,layoutId:\"ZZBcGdUuW\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ulf5p0\",\"data-framer-name\":\"IONOS\",fill:\"black\",intrinsicHeight:28,intrinsicWidth:94,layoutDependency:layoutDependency,layoutId:\"uLfkQMPG6\",svg:'<svg width=\"94\" height=\"28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M85.338 8.76c-.552-.589-.81-1.325-.736-2.098.073-.772.441-1.508 1.03-1.95a2.636 2.636 0 0 1 2.208-.478 2.623 2.623 0 0 1 1.803 1.288c.332.625 1.067 1.067 1.803 1.067.368 0 .7-.11.994-.258.479-.294.847-.736.994-1.288a1.985 1.985 0 0 0-.221-1.582C92.256 1.768 90.6.59 88.65.186c-1.546-.332-3.239-.074-4.637.699l-.331.257c-1.104.516-1.987 1.767-2.061 1.877l-.295.515a6.7 6.7 0 0 0-.883 2.87c-.147 1.473.221 2.908 1.03 4.16l.332.478c.147.184 6.918 7.176 6.918 7.176.552.552.883 1.398.81 2.245a2.858 2.858 0 0 1-1.178 2.097 2.86 2.86 0 0 1-2.318.515c-.515-.11-.994-.33-1.362-.662l-.294-.294-.22-.295c-.038-.037-.038-.073-.075-.11a2.074 2.074 0 0 0-1.803-1.067c-.368 0-.736.11-1.03.294-.957.589-1.288 1.766-.773 2.797l.037.037c1.03 1.73 2.723 2.98 4.71 3.348.442.11.92.148 1.362.148a7.18 7.18 0 0 0 4.269-1.436c1.582-1.177 2.613-3.054 2.797-5.078a7.085 7.085 0 0 0-1.988-5.447l-6.33-6.55ZM73.304 20.426V6.883c0-3.79-3.091-6.845-6.845-6.845-3.79 0-6.845 3.092-6.845 6.845v13.58c0 3.79 3.092 6.844 6.845 6.844 3.79-.036 6.845-3.09 6.845-6.881Zm-9.568 0V6.883a2.717 2.717 0 0 1 2.723-2.723c1.472 0 2.723 1.251 2.723 2.723v13.58a2.717 2.717 0 0 1-2.723 2.723c-1.509-.037-2.723-1.215-2.723-2.76ZM39.632 1.142a2.142 2.142 0 0 0-1.877-1.14c-.147 0-.295 0-.405.036-.957.184-1.62 1.03-1.62 2.024v.479L47.103 26.13c.368.699 1.104 1.14 1.84 1.14.184 0 .331-.036.478-.073.957-.184 1.62-1.03 1.62-2.024v-.442S39.963 1.768 39.668 1.142h-.036Zm11.37.957c0-1.177-.92-2.06-2.06-2.06-1.178 0-2.06.92-2.06 2.06v11.224l4.12 8.575V2.099ZM35.695 25.21c0 1.178.92 2.062 2.06 2.062 1.178 0 2.062-.92 2.062-2.061V13.986L35.694 5.41v19.8Zm-10.672.074a6.85 6.85 0 0 0 2.024-4.857V6.883c0-1.84-.7-3.533-2.024-4.857A6.85 6.85 0 0 0 20.164.002c-1.84 0-3.533.699-4.857 2.024a6.85 6.85 0 0 0-2.024 4.857v13.58c0 1.84.699 3.532 2.024 4.857a6.85 6.85 0 0 0 4.857 2.024c1.84-.073 3.57-.773 4.858-2.06Zm-7.544-4.857V6.883c0-.736.294-1.398.81-1.913a2.673 2.673 0 0 1 1.913-.81c.7 0 1.398.294 1.914.81.515.515.81 1.214.81 1.913v13.58c0 .736-.295 1.398-.81 1.913a2.673 2.673 0 0 1-1.914.81 2.729 2.729 0 0 1-1.914-.773 2.752 2.752 0 0 1-.81-1.987ZM4.634 1.842c0-.074-.036-.11-.036-.148C4.34.701 3.457.038 2.426.038c-1.25 0-2.244.994-2.244 2.208V24.99c0 1.288.993 2.282 2.244 2.282a2.247 2.247 0 0 0 2.282-2.282V2.283c0-.11 0-.22-.037-.368l-.037-.073Z\" fill=\"#262930\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://help.nightfall.ai/\",motionChild:true,nodeId:\"EpqXvUsvd\",scopeId:\"penKSB_Id\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-w00nsu framer-85hs76\",\"data-framer-name\":\"Nightfall.ai\",layoutDependency:layoutDependency,layoutId:\"EpqXvUsvd\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18go95c\",\"data-framer-name\":\"Nightfall\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:209,layoutDependency:layoutDependency,layoutId:\"tLTr9HZyq\",svg:'<svg width=\"209\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#262930\"><path d=\"m68.789 22.708-10.254-12.03h-2.08v18.756h3.425V17.505l10.076 11.929h2.259V10.678h-3.426v12.03Zm8.96-8.705c1.193 0 2.081-.863 2.081-2.081 0-1.193-.888-2.082-2.08-2.082-1.194 0-2.133.889-2.133 2.082 0 1.218.914 2.08 2.132 2.08Zm1.624 1.65H76.05v13.78h3.324v-13.78Zm13.926 1.65c-1.142-1.32-2.614-1.98-4.365-1.98-1.98 0-3.655.66-5 2.004-1.345 1.32-2.005 3.02-2.005 5.076 0 2.03.634 3.706 1.93 5.051 1.293 1.345 2.943 2.005 4.948 2.005 1.802 0 3.274-.635 4.39-1.878v.812c0 2.36-1.65 4.01-4.466 4.01-1.675 0-3.3-.533-4.847-1.624l-1.346 2.512c1.853 1.32 3.934 1.98 6.269 1.98 2.259 0 4.086-.66 5.482-1.954 1.396-1.295 2.106-3.046 2.106-5.254v-12.41H93.3v1.65Zm-4.01 9.263c-1.167 0-2.132-.381-2.893-1.168-.761-.787-1.142-1.776-1.142-2.97 0-1.192.38-2.157 1.142-2.918.761-.787 1.726-1.167 2.893-1.167 1.142 0 2.106.38 2.868 1.167.762.761 1.142 1.726 1.142 2.919s-.38 2.182-1.142 2.97c-.761.786-1.726 1.167-2.868 1.167Zm13.752 2.868v-7.462c0-2.157 1.371-3.655 3.325-3.655 1.827 0 3.02 1.295 3.02 3.604v7.513h3.3v-8.401c0-1.853-.534-3.249-1.574-4.239-1.041-.99-2.284-1.497-3.782-1.497-1.954 0-3.578.888-4.365 2.132v-7.284h-3.223v19.289h3.299Zm21.392-3.401c-.786.482-1.573.71-2.334.71-1.345 0-2.005-.837-2.005-2.487v-5.812h4.619v-2.792h-4.619V10.78h-3.275v4.873h-2.334v2.792h2.284v5.939c0 3.528 1.598 5.38 4.721 5.38 1.548 0 2.893-.38 3.984-1.142l-1.041-2.588Zm9.952-13.452c.609 0 1.346.178 2.209.559l1.04-2.589c-1.218-.634-2.462-.939-3.706-.939-3.273 0-5.481 1.929-5.481 5.406v.634h-2.183v2.792h2.183v10.99h3.299v-10.99h4.315v-2.792h-4.315v-.558c0-1.624.939-2.513 2.639-2.513Zm13.762 4.823c-1.244-1.396-2.741-2.082-4.492-2.082-1.954 0-3.604.686-4.899 2.03-1.294 1.346-1.928 3.072-1.928 5.128 0 2.055.634 3.806 1.928 5.202 1.295 1.396 2.919 2.082 4.899 2.082 1.802 0 3.299-.686 4.492-2.03v1.7h3.147V15.652h-3.147v1.752Zm.076 5.126c0 1.193-.381 2.183-1.142 2.995-.761.812-1.726 1.218-2.919 1.218-1.192 0-2.157-.406-2.918-1.218-.737-.812-1.117-1.802-1.117-2.995 0-1.167.38-2.157 1.117-2.97.761-.811 1.726-1.217 2.918-1.217 1.193 0 2.158.406 2.919 1.218.761.812 1.142 1.802 1.142 2.97Zm9.742-12.385h-3.3v19.289h3.3V10.145Zm6.667 0h-3.3v19.289h3.3V10.145Zm25.145 19.289-7.182-18.756h-2.666l-7.258 18.756h3.68l1.548-4.264h6.65l1.548 4.264h3.68Zm-6.218-7.386h-4.645l2.336-6.421 2.309 6.421Zm8.614 7.386h3.477V10.678h-3.477v18.756Zm8.44-13.748h.875v-3.852h1.352v-.837h-3.578v.837h1.351v3.852Zm3.711 0v-2.78l1.421 2.056h.285l1.421-2.055v2.779h.864v-4.69h-.553l-1.872 2.736-1.878-2.735h-.545v4.689h.857Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.48 8.326c-.252.233-.345.501-.252.598.097.092.367-.018.602-.25l2.803-2.786a16.818 16.818 0 0 1 2.174.95l-6.815 6.757c-.257.233-.35.502-.257.598.111.093.381-.017.616-.255l6.903-6.856a16.674 16.674 0 0 1 3.619 2.748l-5.04 5.005c-.257.233-.35.501-.257.598.098.097.359-.018.602-.25l5.036-5.002a16.512 16.512 0 0 1 4.498 11.303l1.57-.001-1.57.002a16.39 16.39 0 0 1-1.124 5.991l-9.137-9.075-.36-.386-.014.014-.026-.026.012.02.008.013-4.073 4.108-8.55-8.598-.163-.176-9.9 9.988A16.523 16.523 0 0 1 9.759 8.39a16.826 16.826 0 0 1 15.354-2.678L22.48 8.326Zm4.92-4.884A19.74 19.74 0 0 0 7.984 6.08c-5.92 4.55-8.72 12.046-7.22 19.33.092.451.2.895.325 1.33l.004-.005v.12l12.612-12.629c.708 1.38 1.763 3.95.955 5.791-.156.356-.404.846-.704 1.438-1.923 3.803-5.97 11.803-1.373 15.174 3.188 2.34 6.044 1.452 8.72.621 1.776-.552 3.473-1.079 5.136-.62 1.366.39 2.685.93 3.933 1.609l-.008.01c5.087-3.241 7.469-8.542 7.469-8.542l-.022-.022.102-.22a19.308 19.308 0 0 0 1.713-7.982v-.003a19.425 19.425 0 0 0-5.344-13.352l.62-.615c.252-.237.349-.506.252-.598-.093-.097-.364.017-.598.25l-.616.612a19.605 19.605 0 0 0-6.053-4.129L30.553 1c.252-.234.35-.502.252-.594-.093-.097-.363.017-.598.25L27.4 3.442Zm-4.79 19.335 3.905-3.911c.41.872.879 2.227.442 3.226-.279.633-1.651 3.518-1.651 3.518l-2.697-2.833Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.365 .37)\" d=\"M0 0h208v40.605H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.onum.com/\",motionChild:true,nodeId:\"YLFqfOFAa\",scopeId:\"penKSB_Id\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:36,intrinsicWidth:136,pixelHeight:36,pixelWidth:136,src:\"https://framerusercontent.com/images/jT8B9zf2YekZIDuHl6q9Afa6eM.svg\"},className:\"framer-1xrbvqn framer-85hs76\",\"data-framer-name\":\"Onum\",layoutDependency:layoutDependency,layoutId:\"YLFqfOFAa\",whileHover:animation})})],speed:40,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-a1LGB.framer-85hs76, .framer-a1LGB .framer-85hs76 { display: block; }\",\".framer-a1LGB.framer-1xfom67 { height: 37px; overflow: visible; position: relative; width: 1200px; }\",\".framer-a1LGB .framer-yk9m1y-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - min(100%, 1024px) / 2); max-width: 100%; position: absolute; top: 0px; width: 1024px; }\",\".framer-a1LGB .framer-iis64j { aspect-ratio: 5.28 / 1; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; text-decoration: none; width: 106px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-a1LGB .framer-xvtqzt { aspect-ratio: 5.28 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-a1LGB .framer-ybaauu { height: 37px; overflow: hidden; position: relative; text-decoration: none; width: 71px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-a1LGB .framer-1dbe2dp { aspect-ratio: 1.9111111111111112 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 37px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-a1LGB .framer-18uwchy { height: 24px; overflow: hidden; position: relative; text-decoration: none; width: 91px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-a1LGB .framer-e5sbg { aspect-ratio: 3.78125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-a1LGB .framer-1giykfa { height: 22px; overflow: hidden; position: relative; text-decoration: none; width: 103px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-a1LGB .framer-8yn6bd { aspect-ratio: 4.689655172413793 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-a1LGB .framer-1vsgsy3 { height: 19px; overflow: hidden; position: relative; text-decoration: none; width: 91px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-a1LGB .framer-oehq08 { aspect-ratio: 4.769230769230769 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-a1LGB .framer-u1s116 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-a1LGB .framer-b082qy { aspect-ratio: 4.84375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 111px; }\",\".framer-a1LGB .framer-2tjrrw { height: 20px; overflow: hidden; position: relative; text-decoration: none; width: 67px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-a1LGB .framer-1ulf5p0 { aspect-ratio: 3.357142857142857 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-a1LGB .framer-w00nsu { height: 29px; overflow: hidden; position: relative; text-decoration: none; width: 148px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-a1LGB .framer-18go95c { aspect-ratio: 5.097560975609756 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-a1LGB .framer-1xrbvqn { aspect-ratio: 3.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 25px); overflow: visible; position: relative; text-decoration: none; width: 94px; will-change: var(--framer-will-change-effect-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-a1LGB .framer-u1s116 { gap: 0px; } .framer-a1LGB .framer-u1s116 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-a1LGB .framer-u1s116 > :first-child { margin-left: 0px; } .framer-a1LGB .framer-u1s116 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 37\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerpenKSB_Id=withCSS(Component,css,\"framer-a1LGB\");export default FramerpenKSB_Id;FramerpenKSB_Id.displayName=\"2025/Homepage hero logos\";FramerpenKSB_Id.defaultProps={height:37,width:1200};addFonts(FramerpenKSB_Id,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpenKSB_Id\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"37\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./penKSB_Id.map", "// Generated by Framer (0afc761)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{trackInAmplitude}from\"https://framerusercontent.com/modules/1TUkPfGcKn7ybEsOcQJv/OFpOsPXGNDfrHDCRrIHH/Amplitude.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/E2vNbAWvsPq0faLWbZhW/jgl4Vva7LlzpgeuhyIaN/FtN88BZtk.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/kyEIiHylR2mqVdwBf1FQ/G5Lsgm5hNyOupl9G7fP4/ZsVICcKyu.js\";import HomepageHeroLogos from\"https://framerusercontent.com/modules/e7aAHoYgRaBbb2Y1TA2G/mxMa5MIedjtnl8dPrH3O/penKSB_Id.js\";import Button,*as ButtonInfo from\"https://framerusercontent.com/modules/8BZ5Qwbs209gMFFmGhre/OqakxryBEQlJLPAvCEEK/W2fcm1cU5.js\";const ButtonFonts=getFonts(Button);const ButtonTrackInAmplitude1loq6j8WithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"HJvCty1Wg\",override:trackInAmplitude,scopeId:\"idvMKSnbj\"}),ButtonInfo);const ButtonTrackInAmplitude1srnippWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"XdHvd2ZSy\",override:trackInAmplitude,scopeId:\"idvMKSnbj\"}),ButtonInfo);const MotionDivWithFX=withFX(motion.div);const HomepageHeroLogosFonts=getFonts(HomepageHeroLogos);const cycleOrder=[\"iUrZFwQnf\",\"sHF08CYF7\",\"Gv9WCh_c8\"];const serializationHash=\"framer-bJhQh\";const variantClassNames={Gv9WCh_c8:\"framer-v-1ixvfja\",iUrZFwQnf:\"framer-v-tehxgk\",sHF08CYF7:\"framer-v-1f2zels\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};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={Desktop:\"iUrZFwQnf\",Phone:\"Gv9WCh_c8\",Tablet:\"sHF08CYF7\"};const getProps=({description,height,id,title,width,...props})=>{return{...props,r_y0AWuG4:title??props.r_y0AWuG4??\"Get started for free\",variant:humanReadableVariantMap[props.variant]??props.variant??\"iUrZFwQnf\",zaJNvtSCO:description??props.zaJNvtSCO??\"Play around with GitBook and set up your docs for free. Add your team and pay when you\u2019re ready.\"};};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,r_y0AWuG4,zaJNvtSCO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iUrZFwQnf\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:751,pixelWidth:1440,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Nezr5S62QtereL8TV3WkOGbu0Ws.svg\",srcSet:\"https://framerusercontent.com/images/Nezr5S62QtereL8TV3WkOGbu0Ws.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Nezr5S62QtereL8TV3WkOGbu0Ws.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Nezr5S62QtereL8TV3WkOGbu0Ws.svg 1440w\"},className:cx(scopingClassNames,\"framer-tehxgk\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"iUrZFwQnf\",ref:refBinding,style:{...style},...addPropertyOverrides({Gv9WCh_c8:{\"data-framer-name\":\"Phone\"},sHF08CYF7:{\"data-framer-name\":\"Tablet\",background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:751,pixelWidth:1440,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Nezr5S62QtereL8TV3WkOGbu0Ws.svg\",srcSet:\"https://framerusercontent.com/images/Nezr5S62QtereL8TV3WkOGbu0Ws.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Nezr5S62QtereL8TV3WkOGbu0Ws.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Nezr5S62QtereL8TV3WkOGbu0Ws.svg 1440w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||690)-192-701.2)/2+0+0)),pixelHeight:4244,pixelWidth:1440,sizes:`min(1024px, ${componentViewport?.width||\"100vw\"})`,src:\"https://framerusercontent.com/images/IzXUGCZLLqlmQ5hcs5LDyaBPVBk.svg\",srcSet:\"https://framerusercontent.com/images/IzXUGCZLLqlmQ5hcs5LDyaBPVBk.svg?scale-down-to=2048 694w,https://framerusercontent.com/images/IzXUGCZLLqlmQ5hcs5LDyaBPVBk.svg?scale-down-to=4096 1389w,https://framerusercontent.com/images/IzXUGCZLLqlmQ5hcs5LDyaBPVBk.svg 1440w\"},className:\"framer-g9mrr6\",\"data-framer-name\":\"Footer/Footer CTA\",layoutDependency:layoutDependency,layoutId:\"Dp1JNpyRo\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({Gv9WCh_c8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+(((componentViewport?.height||714)-128-697.2)/2+0+0)),pixelHeight:4244,pixelWidth:1440,sizes:`min(1024px, ${componentViewport?.width||\"100vw\"})`,src:\"https://framerusercontent.com/images/IzXUGCZLLqlmQ5hcs5LDyaBPVBk.svg\",srcSet:\"https://framerusercontent.com/images/IzXUGCZLLqlmQ5hcs5LDyaBPVBk.svg?scale-down-to=2048 694w,https://framerusercontent.com/images/IzXUGCZLLqlmQ5hcs5LDyaBPVBk.svg?scale-down-to=4096 1389w,https://framerusercontent.com/images/IzXUGCZLLqlmQ5hcs5LDyaBPVBk.svg 1440w\"}},sHF08CYF7:{background:{alt:\"\",fit:\"fill\",pixelHeight:4244,pixelWidth:1440,sizes:`min(1024px, ${componentViewport?.width||\"100vw\"})`,src:\"https://framerusercontent.com/images/IzXUGCZLLqlmQ5hcs5LDyaBPVBk.svg\",srcSet:\"https://framerusercontent.com/images/IzXUGCZLLqlmQ5hcs5LDyaBPVBk.svg?scale-down-to=2048 694w,https://framerusercontent.com/images/IzXUGCZLLqlmQ5hcs5LDyaBPVBk.svg?scale-down-to=4096 1389w,https://framerusercontent.com/images/IzXUGCZLLqlmQ5hcs5LDyaBPVBk.svg 1440w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1yprfhm\",\"data-framer-name\":\"Text and CTA\",layoutDependency:layoutDependency,layoutId:\"chsNaeqxN\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-2dbx8b\",\"data-framer-name\":\"GitBook icon\",fill:\"black\",intrinsicHeight:65,intrinsicWidth:72,layoutDependency:layoutDependency,layoutId:\"R3EQ257jH\",svg:'<svg width=\"72\" height=\"65\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M30.441 34.231c3.448 1.99 5.172 2.985 7.066 2.987 1.893.002 3.619-.99 7.07-2.974l22-12.647a3.2 3.2 0 0 0 0-5.55L44.57 3.397C41.121 1.413 39.397.423 37.506.423c-1.891.001-3.614.993-7.06 2.978l-18.92 10.895c-.14.081-.211.121-.276.16A21.24 21.24 0 0 0 .74 32.636v.637a21.24 21.24 0 0 0 10.764 18.326l11.852 6.843c6.906 3.987 10.358 5.981 14.15 5.982 3.792.002 7.246-1.99 14.155-5.972l12.51-7.212c3.46-1.995 5.19-2.992 6.14-4.635.95-1.644.95-3.64.95-7.633v-7.714a3.053 3.053 0 0 0-4.576-2.647L41.032 43.358c-1.721.989-2.582 1.484-3.527 1.484-.944 0-1.805-.494-3.527-1.482l-17.363-9.967c-.87-.5-1.304-.749-1.653-.794a1.77 1.77 0 0 0-1.866 1.087c-.133.326-.13.827-.125 1.83.004.738.006 1.108.075 1.447a3.54 3.54 0 0 0 1.139 1.96c.26.228.58.412 1.22.781L33.969 50.42c1.726.996 2.589 1.494 3.537 1.495.947 0 1.81-.498 3.538-1.493l22.754-13.117c.59-.34.884-.51 1.105-.382.222.128.222.468.222 1.15v3.498c0 .998 0 1.497-.238 1.908-.237.411-.67.66-1.535 1.159L44.585 55.455c-3.455 1.992-5.183 2.988-7.079 2.987-1.896-.001-3.623-.998-7.076-2.993L12.871 45.306l-.11-.064a12.059 12.059 0 0 1-5.974-10.35v-3.34a6.6 6.6 0 0 1 3.29-5.71 5.813 5.813 0 0 1 5.821-.006l14.543 8.394Z\" fill=\"#181C1F\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gl6sux\",layoutDependency:layoutDependency,layoutId:\"zSO9NujqR\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-14kfprz\",\"data-framer-name\":\"Title + badges\",layoutDependency:layoutDependency,layoutId:\"ZrQH_jmXF\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-4vytbj\",\"data-styles-preset\":\"ZsVICcKyu\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-f6fee0a1-489c-4820-b95f-85bd511bc52e, rgb(24, 28, 31)))\"},children:\"Get started for free\"})}),className:\"framer-1ijq2b9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VeFHoPfc8\",style:{\"--extracted-1of0zx5\":\"var(--token-f6fee0a1-489c-4820-b95f-85bd511bc52e, rgb(24, 28, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:r_y0AWuG4,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m8vk73\",\"data-styles-preset\":\"FtN88BZtk\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f6fee0a1-489c-4820-b95f-85bd511bc52e, rgb(24, 28, 31)))\"},children:\"Play around with GitBook and set up your docs for free. Add your team and pay when you\u2019re ready.\"})}),className:\"framer-fynguc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sm7nuSEK8\",style:{\"--extracted-r6o4lv\":\"var(--token-f6fee0a1-489c-4820-b95f-85bd511bc52e, rgb(24, 28, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zaJNvtSCO,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Gv9WCh_c8:{text:undefined},sHF08CYF7:{text:undefined}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m5j468\",\"data-framer-name\":\"Frame 4337098\",layoutDependency:layoutDependency,layoutId:\"B4bzVWsDF\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+96+(((componentViewport?.height||690)-192-701.2)/2+0+0)+64+0+0+272.2+8,...addPropertyOverrides({Gv9WCh_c8:{width:`calc(min(1024px, ${componentViewport?.width||\"100vw\"}) - 60px)`,y:(componentViewport?.y||0)+64+(((componentViewport?.height||714)-128-697.2)/2+0+0)+40+0+0+278.2+8+0},sHF08CYF7:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1loq6j8-container\",layoutDependency:layoutDependency,layoutId:\"HJvCty1Wg-container\",nodeId:\"HJvCty1Wg\",rendersWithMotion:true,scopeId:\"idvMKSnbj\",children:/*#__PURE__*/_jsx(ButtonTrackInAmplitude1loq6j8WithMappedReactProps1v1ipky,{aJsENS3O1:addImageAlt({pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/M4XqnPKJ0gSjGBNdWZcyzZd8.svg\"},\"\"),CuFHpX5CK:false,DmQQ8L0g6:\"Footer CTA\",height:\"100%\",hz3C0GYaA:false,id:\"HJvCty1Wg\",KDn5AhHAZ:true,KOTSOgWCX:false,layoutId:\"HJvCty1Wg\",lmSVhb54m:\"Sign up GitHub\",u0Cad7hMp:\"Sign up with GitHub\",variant:\"cjoUpWZ9b\",vTo4P4jYt:\"https://app.gitbook.com/join?auth=github\",width:\"100%\",WxHSWaXxl:\"sign_up_github\",...addPropertyOverrides({Gv9WCh_c8:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+96+(((componentViewport?.height||690)-192-701.2)/2+0+0)+64+0+0+272.2+8,...addPropertyOverrides({Gv9WCh_c8:{width:`calc(min(1024px, ${componentViewport?.width||\"100vw\"}) - 60px)`,y:(componentViewport?.y||0)+64+(((componentViewport?.height||714)-128-697.2)/2+0+0)+40+0+0+278.2+8+48},sHF08CYF7:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1srnipp-container\",layoutDependency:layoutDependency,layoutId:\"XdHvd2ZSy-container\",nodeId:\"XdHvd2ZSy\",rendersWithMotion:true,scopeId:\"idvMKSnbj\",children:/*#__PURE__*/_jsx(ButtonTrackInAmplitude1srnippWithMappedReactProps1v1ipky,{aJsENS3O1:addImageAlt({pixelHeight:16,pixelWidth:16,src:\"https://framerusercontent.com/images/ZVFnpToJbhKMPLSJ2XXW0tu58k.svg\"},\"\"),CuFHpX5CK:false,DmQQ8L0g6:\"Footer CTA\",height:\"100%\",hz3C0GYaA:false,id:\"XdHvd2ZSy\",KDn5AhHAZ:false,KOTSOgWCX:true,layoutId:\"XdHvd2ZSy\",lmSVhb54m:\"Start for Free\",u0Cad7hMp:\"Start for free\",variant:\"Z_1fOfGqe\",vTo4P4jYt:\"https://app.gitbook.com/join\",width:\"100%\",WxHSWaXxl:\"sign_up\",...addPropertyOverrides({Gv9WCh_c8:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||690)-192-701.2)/2+0+0)+0),pixelHeight:378,pixelWidth:1024,positionX:\"center\",positionY:\"top\",sizes:`min(1024px, ${componentViewport?.width||\"100vw\"})`,src:\"https://framerusercontent.com/images/5e8S8epAfDPIIj8bbq4KzxWQSEA.svg\",srcSet:\"https://framerusercontent.com/images/5e8S8epAfDPIIj8bbq4KzxWQSEA.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5e8S8epAfDPIIj8bbq4KzxWQSEA.svg 1024w\"},className:\"framer-1r3qjfj\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"eBbnC5u8f\",...addPropertyOverrides({Gv9WCh_c8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+(((componentViewport?.height||714)-128-697.2)/2+0+0)+0),pixelHeight:378,pixelWidth:1024,positionX:\"right\",positionY:\"center\",sizes:`min(1024px, ${componentViewport?.width||\"100vw\"})`,src:\"https://framerusercontent.com/images/5e8S8epAfDPIIj8bbq4KzxWQSEA.svg\",srcSet:\"https://framerusercontent.com/images/5e8S8epAfDPIIj8bbq4KzxWQSEA.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5e8S8epAfDPIIj8bbq4KzxWQSEA.svg 1024w\"}},sHF08CYF7:{background:{alt:\"\",fit:\"fill\",pixelHeight:378,pixelWidth:1024,positionX:\"center\",positionY:\"top\",sizes:`min(1024px, ${componentViewport?.width||\"100vw\"})`,src:\"https://framerusercontent.com/images/5e8S8epAfDPIIj8bbq4KzxWQSEA.svg\",srcSet:\"https://framerusercontent.com/images/5e8S8epAfDPIIj8bbq4KzxWQSEA.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5e8S8epAfDPIIj8bbq4KzxWQSEA.svg 1024w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dw9f70\",layoutDependency:layoutDependency,layoutId:\"JCqoy0Tcv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m8vk73\",\"data-styles-preset\":\"FtN88BZtk\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e9ed8bf-e4e7-4c6f-8fd1-ee56b519c36b, rgb(101, 105, 115)))\"},children:\"Trusted by leading technical product teams\"})}),className:\"framer-16gavnz\",\"data-framer-name\":\"Companies like yours are building better docs with GitBook\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"p1BwcyFR1\",style:{\"--extracted-r6o4lv\":\"var(--token-5e9ed8bf-e4e7-4c6f-8fd1-ee56b519c36b, rgb(101, 105, 115))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+96+(((componentViewport?.height||690)-192-701.2)/2+444.2+64)+0+154,...addPropertyOverrides({Gv9WCh_c8:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+64+(((componentViewport?.height||714)-128-697.2)/2+440.2+64)+0+154},sHF08CYF7:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-91lxbt-container\",layoutDependency:layoutDependency,layoutId:\"H1mAgoZxl-container\",nodeId:\"H1mAgoZxl\",rendersWithMotion:true,scopeId:\"idvMKSnbj\",children:/*#__PURE__*/_jsx(HomepageHeroLogos,{height:\"100%\",id:\"H1mAgoZxl\",layoutId:\"H1mAgoZxl\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bJhQh.framer-1f3bdww, .framer-bJhQh .framer-1f3bdww { display: block; }\",\".framer-bJhQh.framer-tehxgk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 40px 96px 40px; position: relative; width: 1200px; }\",\".framer-bJhQh .framer-g9mrr6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 64px 40px 64px 40px; position: relative; width: 1024px; will-change: var(--framer-will-change-override, transform); z-index: 5; }\",\".framer-bJhQh .framer-1yprfhm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-bJhQh .framer-2dbx8b { aspect-ratio: 1.1076923076923078 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 65px); position: relative; width: 72px; }\",\".framer-bJhQh .framer-gl6sux { align-content: center; align-items: center; 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-bJhQh .framer-14kfprz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bJhQh .framer-1ijq2b9, .framer-bJhQh .framer-fynguc, .framer-bJhQh .framer-16gavnz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bJhQh .framer-m5j468 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-bJhQh .framer-1loq6j8-container, .framer-bJhQh .framer-1srnipp-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-bJhQh .framer-1r3qjfj { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-bJhQh .framer-1dw9f70 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bJhQh .framer-91lxbt-container { flex: none; height: 39px; max-width: 100%; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bJhQh.framer-tehxgk, .framer-bJhQh .framer-g9mrr6, .framer-bJhQh .framer-1yprfhm, .framer-bJhQh .framer-gl6sux, .framer-bJhQh .framer-14kfprz, .framer-bJhQh .framer-m5j468, .framer-bJhQh .framer-1dw9f70 { gap: 0px; } .framer-bJhQh.framer-tehxgk > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-bJhQh.framer-tehxgk > :first-child, .framer-bJhQh .framer-g9mrr6 > :first-child, .framer-bJhQh .framer-1yprfhm > :first-child, .framer-bJhQh .framer-gl6sux > :first-child, .framer-bJhQh .framer-14kfprz > :first-child, .framer-bJhQh .framer-1dw9f70 > :first-child { margin-top: 0px; } .framer-bJhQh.framer-tehxgk > :last-child, .framer-bJhQh .framer-g9mrr6 > :last-child, .framer-bJhQh .framer-1yprfhm > :last-child, .framer-bJhQh .framer-gl6sux > :last-child, .framer-bJhQh .framer-14kfprz > :last-child, .framer-bJhQh .framer-1dw9f70 > :last-child { margin-bottom: 0px; } .framer-bJhQh .framer-g9mrr6 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-bJhQh .framer-1yprfhm > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-bJhQh .framer-gl6sux > *, .framer-bJhQh .framer-14kfprz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-bJhQh .framer-m5j468 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-bJhQh .framer-m5j468 > :first-child { margin-left: 0px; } .framer-bJhQh .framer-m5j468 > :last-child { margin-right: 0px; } .framer-bJhQh .framer-1dw9f70 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-bJhQh.framer-v-1f2zels.framer-tehxgk { padding: 64px 40px 64px 40px; width: 810px; }\",\".framer-bJhQh.framer-v-1f2zels .framer-g9mrr6 { padding: 64px 60px 64px 60px; }\",\".framer-bJhQh.framer-v-1f2zels .framer-m5j468 { flex-wrap: wrap; justify-content: center; width: 100%; }\",\".framer-bJhQh.framer-v-1ixvfja.framer-tehxgk { padding: 64px 20px 64px 20px; width: 390px; }\",\".framer-bJhQh.framer-v-1ixvfja .framer-g9mrr6 { padding: 40px 30px 30px 30px; }\",\".framer-bJhQh.framer-v-1ixvfja .framer-1yprfhm { max-width: unset; }\",\".framer-bJhQh.framer-v-1ixvfja .framer-gl6sux { gap: 16px; }\",\".framer-bJhQh.framer-v-1ixvfja .framer-m5j468 { flex-direction: column; flex-wrap: wrap; justify-content: center; width: 100%; }\",\".framer-bJhQh.framer-v-1ixvfja .framer-1loq6j8-container, .framer-bJhQh.framer-v-1ixvfja .framer-1srnipp-container { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bJhQh.framer-v-1ixvfja .framer-gl6sux, .framer-bJhQh.framer-v-1ixvfja .framer-m5j468 { gap: 0px; } .framer-bJhQh.framer-v-1ixvfja .framer-gl6sux > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-bJhQh.framer-v-1ixvfja .framer-gl6sux > :first-child, .framer-bJhQh.framer-v-1ixvfja .framer-m5j468 > :first-child { margin-top: 0px; } .framer-bJhQh.framer-v-1ixvfja .framer-gl6sux > :last-child, .framer-bJhQh.framer-v-1ixvfja .framer-m5j468 > :last-child { margin-bottom: 0px; } .framer-bJhQh.framer-v-1ixvfja .framer-m5j468 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 690\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"sHF08CYF7\":{\"layout\":[\"fixed\",\"auto\"]},\"Gv9WCh_c8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"r_y0AWuG4\":\"title\",\"zaJNvtSCO\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameridvMKSnbj=withCSS(Component,css,\"framer-bJhQh\");export default FrameridvMKSnbj;FrameridvMKSnbj.displayName=\"2025/Get started for free\";FrameridvMKSnbj.defaultProps={height:690,width:1200};addPropertyControls(FrameridvMKSnbj,{variant:{options:[\"iUrZFwQnf\",\"sHF08CYF7\",\"Gv9WCh_c8\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},r_y0AWuG4:{defaultValue:\"Get started for free\",displayTextArea:false,title:\"Title\",type:ControlType.String},zaJNvtSCO:{defaultValue:\"Play around with GitBook and set up your docs for free. Add your team and pay when you\u2019re ready.\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FrameridvMKSnbj,[{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,...HomepageHeroLogosFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameridvMKSnbj\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sHF08CYF7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Gv9WCh_c8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"r_y0AWuG4\\\":\\\"title\\\",\\\"zaJNvtSCO\\\":\\\"description\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"690\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["fontStore", "fonts", "css", "className", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "Link", "SVG", "Image2", "css", "FramerpenKSB_Id", "withCSS", "penKSB_Id_default", "addFonts", "TickerFonts", "ButtonFonts", "getFonts", "W2fcm1cU5_default", "ButtonTrackInAmplitude1loq6j8WithMappedReactProps1v1ipky", "withMappedReactProps", "withCodeBoundaryForOverrides", "trackInAmplitude", "W2fcm1cU5_exports", "ButtonTrackInAmplitude1srnippWithMappedReactProps1v1ipky", "MotionDivWithFX", "withFX", "motion", "HomepageHeroLogosFonts", "penKSB_Id_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "r_y0AWuG4", "zaJNvtSCO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "SVG", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FrameridvMKSnbj", "withCSS", "idvMKSnbj_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
