{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/Utlis-SwIN.js@U9vmYX0zDZtz999aDBu4", "ssg:https://framerusercontent.com/modules/V9TTiBEDmAnnV9rhMhiJ/aXtqDEJxnBteEUSSHund/NextPrev.js", "ssg:https://framerusercontent.com/modules/yqQLtMqFQI6R3ohTACcZ/RcwF3ub9fLkGnzuMg2PC/BOG2Ytr2C.js", "ssg:https://framerusercontent.com/modules/zSSwEyHJ4Mu0mL6n9GEO/wzJRSuDbcVuiFfLhwKup/trWxNNirk.js", "ssg:https://framerusercontent.com/modules/lghd1gUOdJYrYVHCnAmP/E6XCdSHs69rlzhjoJxsb/ylMc1mH5G.js", "ssg:https://framerusercontent.com/modules/bIaMTqqGEwqbfdJw14re/N8xYw1V0zdAmhvqjn0FP/z5vnW8hV7.js"],
  "sourcesContent": ["// new utils\nexport const findQueryInProps=obj=>{if(obj==null)return null;// Check if `query` exists in the current level\nif(obj.hasOwnProperty(\"query\"))return obj.query;// Iterate over the properties\nfor(let key in obj){if(obj.hasOwnProperty(key)&&typeof obj[key]===\"object\"){let result=findQueryInProps(obj[key]);if(result!==null)return result;}}// If `query` is not found\nreturn null;};export const updateQueryInProps=(obj,newQuery)=>{if(obj==null)return obj;// Check if `query` exists in the current level\nif(obj.hasOwnProperty(\"query\"))return{...obj,query:newQuery};// Iterate over the properties\nfor(let key in obj){if(obj.hasOwnProperty(key)&&typeof obj[key]===\"object\"){const updatedChild=updateQueryInProps(obj[key],newQuery);if(updatedChild!==obj[key]){return{...obj,[key]:updatedChild};}}}return obj;};export const findPropsBeforeQuery=obj=>{if(obj==null)return null;// Check if `query` exists in the current level\nif(obj.hasOwnProperty(\"query\"))return obj;// Iterate over the properties\nfor(let key in obj){if(obj.hasOwnProperty(key)&&typeof obj[key]===\"object\"){let result=findPropsBeforeQuery(obj[key]);if(result!==null)return result;}}// If `query` is not found\nreturn null;};\nexport const __FramerMetadata__ = {\"exports\":{\"findQueryInProps\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"updateQueryInProps\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"findPropsBeforeQuery\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Utlis.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,// @ts-ignore\nuseQueryData}from\"framer\";import{useState,useEffect}from\"react\";import{findQueryInProps,updateQueryInProps}from\"https://framer.com/m/Utlis-SwIN.js@U9vmYX0zDZtz999aDBu4\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerIntrinsicWidth 600\n * @framerSupportedLayoutHeight auto\n */export default function Prev_Next(props){var _props_collectionList,_props_collectionList1,_props_collectionList2;const{type,currentSlug,repeat,style}=props;if(!((_props_collectionList=props.collectionList)===null||_props_collectionList===void 0?void 0:_props_collectionList[0])){return /*#__PURE__*/_jsx(SetupMessage,{title:\"Set Up the Component\",description:\"Add layer or component to the component property.\",containerStyle:style});}const collectionList={...(_props_collectionList1=props.collectionList)===null||_props_collectionList1===void 0?void 0:_props_collectionList1[0],props:{...(_props_collectionList2=props.collectionList)===null||_props_collectionList2===void 0?void 0:_props_collectionList2[0].props,style}};const isCanvas=RenderTarget.current()===RenderTarget.canvas;const[newCollectionList,setNewCollectionList]=useState();const query=!isCanvas?findQueryInProps(collectionList===null||collectionList===void 0?void 0:collectionList.props):undefined;const queryWithoutLimitAndOffset={...query,limit:null,offset:null};const queryData=query?useQueryData(queryWithoutLimitAndOffset):[];useEffect(()=>{const init=async()=>{const currentIndex=findIndex(queryData,currentSlug);const newOffset=getNewOffset(queryData,type,currentIndex,repeat);setNewCollectionList({...collectionList,props:updateQueryInProps(collectionList.props,{...query,limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:newOffset}})});};!isCanvas&&init();},[]);return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\"},children:isCanvas?collectionList:newCollectionList});}const findIndex=(data,currentSlug)=>{return data.findIndex(item=>Object.values(item).includes(currentSlug));};const getNewOffset=(items,type,currentIndex,repeat)=>{const lastIndex=items.length-1;const isLastIndex=currentIndex===lastIndex;const isFirstIndex=currentIndex===0;if(type===\"next\"){if(repeat){return isLastIndex?0:currentIndex+1;}return isLastIndex?items.length:currentIndex+1;}if(type===\"previous\"){if(repeat){return isFirstIndex?lastIndex:currentIndex-1;}return isFirstIndex?items.length:currentIndex-1;}return currentIndex;};const SetupMessage=({title,description,containerStyle})=>{return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",textAlign:\"center\",justifyContent:\"center\",backgroundColor:\"rgba(136, 85, 255, 0.1)\",padding:\"40px 80px 40px 80px\",...containerStyle},children:[/*#__PURE__*/_jsx(\"span\",{role:\"img\",\"aria-label\":\"icon\",style:{fontSize:\"32px\"},children:\"\u2728\"}),/*#__PURE__*/_jsxs(\"div\",{style:{maxWidth:\"240px\"},children:[/*#__PURE__*/_jsx(\"h1\",{style:{fontSize:11,color:\"#96F\",fontWeight:600},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:11,color:\"rgba(153, 102, 255, 0.7)\",lineHeight:1.5},children:description})]})]});};addPropertyControls(Prev_Next,{collectionList:{title:\"Collection list\",type:ControlType.ComponentInstance},currentSlug:{title:\"Current slug\",type:ControlType.String},type:{title:\"Next/Previous\",type:ControlType.Enum,defaultValue:\"next\",displaySegmentedControl:true,segmentedControlDirection:\"vertical\",options:[\"next\",\"previous\"],optionTitles:[\"Next\",\"Previous\"]},repeat:{type:ControlType.Boolean,title:\"Repeat\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"v2.0 \\n [via SegmentUI](https://www.segmentUI.com)\"}});Prev_Next.displayName=\"New Prev and Next item\";\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Prev_Next\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NextPrev.map", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Q2lph5eyA4PIzZ9M9YWK/8dHSNT1YJntKKSn3Oxrt/p_THf0xIU.js\";const HeroFonts=getFonts(Hero);const enabledGestures={aUncEwmVK:{hover:true},is5Soy2xj:{hover:true}};const cycleOrder=[\"is5Soy2xj\",\"aUncEwmVK\"];const serializationHash=\"framer-97iUf\";const variantClassNames={aUncEwmVK:\"framer-v-1x17cvl\",is5Soy2xj:\"framer-v-1gpnqln\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Next:\"aUncEwmVK\",Previous:\"is5Soy2xj\"};const getProps=({height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,A2A5N0SPs:link!==null&&link!==void 0?link:props.A2A5N0SPs,IGK5WYujK:(_ref=title!==null&&title!==void 0?title:props.IGK5WYujK)!==null&&_ref!==void 0?_ref:\"Title\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"is5Soy2xj\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,A2A5N0SPs,IGK5WYujK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"is5Soy2xj\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:A2A5N0SPs,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1gpnqln\",className,classNames)} framer-1dtgjzj`,\"data-border\":true,\"data-framer-name\":\"Previous\",layoutDependency:layoutDependency,layoutId:\"is5Soy2xj\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-1691cb44-c002-4542-9545-8a0801f91af2, rgb(231, 231, 231))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",...style},...addPropertyOverrides({\"aUncEwmVK-hover\":{\"data-framer-name\":undefined},\"is5Soy2xj-hover\":{\"data-framer-name\":undefined},aUncEwmVK:{\"data-framer-name\":\"Next\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hirhe0\",\"data-framer-name\":\"Arrows\",layoutDependency:layoutDependency,layoutId:\"H57mFVMKT\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ngcdpx-container\",\"data-framer-name\":\"arrows\",layoutDependency:layoutDependency,layoutId:\"pxVhdLtzL-container\",name:\"arrows\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-fe65a76b-2bec-47ef-8ad1-5fc7a52718d1, rgb(255, 79, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChevronDoubleLeft\",id:\"pxVhdLtzL\",layoutId:\"pxVhdLtzL\",mirrored:false,name:\"arrows\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({aUncEwmVK:{iconSelection:\"ChevronDoubleRight\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-u0rr9g-container\",\"data-framer-name\":\"arrows\",layoutDependency:layoutDependency,layoutId:\"q4PBVJg4r-container\",name:\"arrows\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-fe65a76b-2bec-47ef-8ad1-5fc7a52718d1, rgb(255, 79, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChevronDoubleLeft\",id:\"q4PBVJg4r\",layoutId:\"q4PBVJg4r\",mirrored:false,name:\"arrows\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({aUncEwmVK:{iconSelection:\"ChevronDoubleRight\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v0ll68\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"cdGqq2axz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fbpo4z\",\"data-styles-preset\":\"p_THf0xIU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-72e8df52-57a2-46b1-82a3-f1511a4cdd86, rgb(16, 16, 16)))\"},children:\"Title\"})}),className:\"framer-10hay8e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SUqyb19bk\",style:{\"--extracted-r6o4lv\":\"var(--token-72e8df52-57a2-46b1-82a3-f1511a4cdd86, rgb(16, 16, 16))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:IGK5WYujK,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aUncEwmVK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fbpo4z\",\"data-styles-preset\":\"p_THf0xIU\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-72e8df52-57a2-46b1-82a3-f1511a4cdd86, rgb(16, 16, 16)))\"},children:\"Title\"})})}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-97iUf.framer-1dtgjzj, .framer-97iUf .framer-1dtgjzj { display: block; }\",\".framer-97iUf.framer-1gpnqln { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 0px 12px 0px; position: relative; text-decoration: none; width: 264px; }\",\".framer-97iUf .framer-hirhe0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 20px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 16px; }\",\".framer-97iUf .framer-ngcdpx-container { flex: none; height: 14px; position: relative; width: 16px; }\",\".framer-97iUf .framer-u0rr9g-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-97iUf .framer-1v0ll68 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-97iUf .framer-10hay8e { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-97iUf.framer-1gpnqln, .framer-97iUf .framer-hirhe0, .framer-97iUf .framer-1v0ll68 { gap: 0px; } .framer-97iUf.framer-1gpnqln > *, .framer-97iUf .framer-hirhe0 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-97iUf.framer-1gpnqln > :first-child, .framer-97iUf .framer-hirhe0 > :first-child { margin-left: 0px; } .framer-97iUf.framer-1gpnqln > :last-child, .framer-97iUf .framer-hirhe0 > :last-child { margin-right: 0px; } .framer-97iUf .framer-1v0ll68 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-97iUf .framer-1v0ll68 > :first-child { margin-top: 0px; } .framer-97iUf .framer-1v0ll68 > :last-child { margin-bottom: 0px; } }\",\".framer-97iUf.framer-v-1x17cvl .framer-hirhe0 { justify-content: flex-end; order: 1; }\",\".framer-97iUf.framer-v-1x17cvl .framer-1v0ll68 { order: 0; }\",\".framer-97iUf.framer-v-1gpnqln.hover .framer-hirhe0 { justify-content: flex-end; }\",\".framer-97iUf.framer-v-1x17cvl.hover .framer-hirhe0 { justify-content: flex-start; }\",...sharedStyle.css,'.framer-97iUf[data-border=\"true\"]::after, .framer-97iUf [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 56\n * @framerIntrinsicWidth 264\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"aUncEwmVK\":{\"layout\":[\"fixed\",\"auto\"]},\"y1PFFKwfj\":{\"layout\":[\"fixed\",\"auto\"]},\"SM36KQuWH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"A2A5N0SPs\":\"link\",\"IGK5WYujK\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBOG2Ytr2C=withCSS(Component,css,\"framer-97iUf\");export default FramerBOG2Ytr2C;FramerBOG2Ytr2C.displayName=\"Docs/Previous & Next buttons\";FramerBOG2Ytr2C.defaultProps={height:56,width:264};addPropertyControls(FramerBOG2Ytr2C,{variant:{options:[\"is5Soy2xj\",\"aUncEwmVK\"],optionTitles:[\"Previous\",\"Next\"],title:\"Variant\",type:ControlType.Enum},A2A5N0SPs:{title:\"Link\",type:ControlType.Link},IGK5WYujK:{defaultValue:\"Title\",title:\"Title\",type:ControlType.String}});addFonts(FramerBOG2Ytr2C,[{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\"}]},...HeroFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBOG2Ytr2C\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"A2A5N0SPs\\\":\\\"link\\\",\\\"IGK5WYujK\\\":\\\"title\\\"}\",\"framerIntrinsicWidth\":\"264\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"56\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aUncEwmVK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y1PFFKwfj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SM36KQuWH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8c7926c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Mono-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmmono/v14/aFTU7PB1QTsUX8KYhhiaBYyMcKw.woff2\",weight:\"400\"}]}];export const css=['.framer-lsoOZ .framer-styles-preset-7j53j9 { --framer-code-font-family: \"DM Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: var(--token-fe65a76b-2bec-47ef-8ad1-5fc7a52718d1, #ff4f00); --framer-font-size-scale: 0.97; background-color: var(--token-89bf0e39-a19b-470a-957f-5f3349fac76b, #fff7ec); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.2em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.2em; }'];export const className=\"framer-lsoOZ\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8c7926c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-ZAu0C .framer-styles-preset-1p17rnj:not(.rich-text-wrapper), .framer-ZAu0C .framer-styles-preset-1p17rnj.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-f5909a4b-54e7-4c08-b63f-44713b4eba16, #ed2409); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-98bc5b6f-7a2c-4386-9864-434ca3560bb1, #fe6639); --framer-link-text-decoration: none; }\"];export const className=\"framer-ZAu0C\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8c7926c)\nvar _componentPresets_fonts,_componentPresets_fonts1;import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import NewPrevAndNextItem from\"https://framerusercontent.com/modules/V9TTiBEDmAnnV9rhMhiJ/aXtqDEJxnBteEUSSHund/NextPrev.js\";import DocsPreviousNextButtons from\"#framer/local/canvasComponent/BOG2Ytr2C/BOG2Ytr2C.js\";import DocsSearchBar from\"#framer/local/canvasComponent/RKxL3keKC/RKxL3keKC.js\";import DocsNavbar from\"#framer/local/canvasComponent/UIhoTjZLE/UIhoTjZLE.js\";import Docs,{enumToDisplayNameFunctions}from\"#framer/local/collection/YjSYmMwoo/YjSYmMwoo.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle1 from\"#framer/local/css/aR6jbEIVm/aR6jbEIVm.js\";import*as sharedStyle from\"#framer/local/css/c2hROzLaY/c2hROzLaY.js\";import*as sharedStyle9 from\"#framer/local/css/CNk7UVHD7/CNk7UVHD7.js\";import*as sharedStyle6 from\"#framer/local/css/GgYXobXuD/GgYXobXuD.js\";import*as sharedStyle5 from\"#framer/local/css/HNXRxYFmQ/HNXRxYFmQ.js\";import*as sharedStyle2 from\"#framer/local/css/k3Ea6rV_p/k3Ea6rV_p.js\";import*as sharedStyle4 from\"#framer/local/css/KSopA5p0b/KSopA5p0b.js\";import*as sharedStyle3 from\"#framer/local/css/qGK4Mtj0S/qGK4Mtj0S.js\";import*as sharedStyle8 from\"#framer/local/css/trWxNNirk/trWxNNirk.js\";import*as sharedStyle7 from\"#framer/local/css/ylMc1mH5G/ylMc1mH5G.js\";import metadataProvider from\"#framer/local/webPageMetadata/z5vnW8hV7/z5vnW8hV7.js\";const DocsNavbarFonts=getFonts(DocsNavbar);const DocsSearchBarFonts=getFonts(DocsSearchBar);const HeroFonts=getFonts(Hero);const DocsPreviousNextButtonsFonts=getFonts(DocsPreviousNextButtons);const NewPrevAndNextItemFonts=getFonts(NewPrevAndNextItem);const breakpoints={gCmflE1p5:\"(max-width: 899px)\",pV2XkuasI:\"(min-width: 1200px)\",TAuF2Ned8:\"(min-width: 900px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-QDjd5\";const variantClassNames={gCmflE1p5:\"framer-v-11fc0xa\",pV2XkuasI:\"framer-v-wwrz2d\",TAuF2Ned8:\"framer-v-tu7lkh\"};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"pV2XkuasI\",Phone:\"gCmflE1p5\",Tablet:\"TAuF2Ned8\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"pV2XkuasI\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){var _enumToDisplayNameFunctions_ewkIozG5C;const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"z5vnW8hV7\",data:Docs,type:\"Collection\"},select:[{collection:\"z5vnW8hV7\",name:\"mtLfIqK6f\",type:\"Identifier\"},{collection:\"z5vnW8hV7\",name:\"ewkIozG5C\",type:\"Identifier\"},{collection:\"z5vnW8hV7\",name:\"UD0SYS70_\",type:\"Identifier\"},{collection:\"z5vnW8hV7\",name:\"TU8f1WfzS\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"z5vnW8hV7\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2;const{style,className,layoutId,variant,ewkIozG5C=getFromCurrentRouteData(\"ewkIozG5C\"),mtLfIqK6f=(_getFromCurrentRouteData=getFromCurrentRouteData(\"mtLfIqK6f\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",UD0SYS70_=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"UD0SYS70_\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",TU8f1WfzS=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"TU8f1WfzS\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",TU8f1WfzSwkmyL6LE6,mtLfIqK6fwkmyL6LE6,idwkmyL6LE6,TU8f1WfzSvDexKEAWZ,mtLfIqK6fvDexKEAWZ,idvDexKEAWZ,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-QDjd5`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-QDjd5`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const textContent=(_enumToDisplayNameFunctions_ewkIozG5C=enumToDisplayNameFunctions[\"ewkIozG5C\"])===null||_enumToDisplayNameFunctions_ewkIozG5C===void 0?void 0:_enumToDisplayNameFunctions_ewkIozG5C.call(enumToDisplayNameFunctions,ewkIozG5C,activeLocale);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"pV2XkuasI\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-wwrz2d\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gCmflE1p5:{height:761,width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dpd2z8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gCmflE1p5:{style:{width:\"100%\"},variant:\"uYwYR60JJ\"}},children:/*#__PURE__*/_jsx(DocsNavbar,{height:\"100%\",id:\"YORIRUkyq\",layoutId:\"YORIRUkyq\",style:{height:\"100%\"},variant:\"gnK44T_aZ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f5ttqg\",\"data-framer-name\":\"Section container\",name:\"Section container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gCmflE1p5:{width:\"100vw\",y:761}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mag92z-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gCmflE1p5:{style:{height:\"100%\",width:\"100%\"},variant:\"j3_UjMHow\"}},children:/*#__PURE__*/_jsx(DocsSearchBar,{height:\"100%\",id:\"crgO4FTMj\",layoutId:\"crgO4FTMj\",style:{width:\"100%\"},variant:\"rQnwDC19W\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wu9vxy\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13tmnt\",\"data-framer-name\":\"Main content\",name:\"Main content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oxww3f\",\"data-framer-name\":\"Breadcrumbs\",name:\"Breadcrumbs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lmyodd\",\"data-styles-preset\":\"c2hROzLaY\",children:\"Tutorials\"})}),className:\"framer-pjc1e0\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pemrk6-container\",\"data-framer-name\":\"Chevron-right\",name:\"Chevron-right\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-72e8df52-57a2-46b1-82a3-f1511a4cdd86, rgb(16, 16, 16))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChevronRight\",id:\"D_3cUYey2\",layoutId:\"D_3cUYey2\",mirrored:false,name:\"Chevron-right\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lmyodd\",\"data-styles-preset\":\"c2hROzLaY\",children:\"Send 1000 phone calls\"})}),className:\"framer-1c6lnct\",fonts:[\"Inter\"],text:mtLfIqK6f,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"F5shyIpov\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:UD0SYS70_,className:\"framer-1yv15xn\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],name:\"Content\",stylesPresetsClassNames:{a:\"framer-styles-preset-1p17rnj\",code:\"framer-styles-preset-7j53j9\",h1:\"framer-styles-preset-11ocsv1\",h2:\"framer-styles-preset-gx26df\",h3:\"framer-styles-preset-lfly9j\",h4:\"framer-styles-preset-1io9dmz\",h5:\"framer-styles-preset-gzzn43\",h6:\"framer-styles-preset-w98w3a\",img:\"framer-styles-preset-3q2afp\",p:\"framer-styles-preset-rd82sx\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bksjm0\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t0mndx-container\",children:/*#__PURE__*/_jsx(NewPrevAndNextItem,{collectionList:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r0gk4s\",\"data-framer-name\":\"Previous\",name:\"Previous\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"wkmyL6LE6\",data:Docs,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"wkmyL6LE6\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"wkmyL6LE6\",name:\"TU8f1WfzS\",type:\"Identifier\"},{collection:\"wkmyL6LE6\",name:\"mtLfIqK6f\",type:\"Identifier\"},{collection:\"wkmyL6LE6\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"TU8f1WfzS\":TU8f1WfzSwkmyL6LE6,\"mtLfIqK6f\":mtLfIqK6fwkmyL6LE6,\"id\":idwkmyL6LE6},i)=>{TU8f1WfzSwkmyL6LE6!==null&&TU8f1WfzSwkmyL6LE6!==void 0?TU8f1WfzSwkmyL6LE6:TU8f1WfzSwkmyL6LE6=\"\";mtLfIqK6fwkmyL6LE6!==null&&mtLfIqK6fwkmyL6LE6!==void 0?mtLfIqK6fwkmyL6LE6:mtLfIqK6fwkmyL6LE6=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`wkmyL6LE6-${idwkmyL6LE6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TU8f1WfzS:TU8f1WfzSwkmyL6LE6},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{TU8f1WfzS:TU8f1WfzSwkmyL6LE6},webPageId:\"z5vnW8hV7\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"37.6px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-a5pwxa-container\",children:/*#__PURE__*/_jsx(DocsPreviousNextButtons,{A2A5N0SPs:resolvedLinks[0],height:\"100%\",id:\"nu8k7gCOi\",IGK5WYujK:mtLfIqK6fwkmyL6LE6,layoutId:\"nu8k7gCOi\",style:{width:\"100%\"},variant:\"is5Soy2xj\",width:\"100%\"})})})})})},idwkmyL6LE6);})})})})})],currentSlug:TU8f1WfzS,height:\"100%\",id:\"Yr8TAxSWQ\",layoutId:\"Yr8TAxSWQ\",repeat:true,style:{width:\"100%\"},type:\"previous\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-x8wh4b-container\",children:/*#__PURE__*/_jsx(NewPrevAndNextItem,{collectionList:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jgp9du\",\"data-framer-name\":\"Next\",name:\"Next\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vDexKEAWZ\",data:Docs,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"vDexKEAWZ\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"vDexKEAWZ\",name:\"TU8f1WfzS\",type:\"Identifier\"},{collection:\"vDexKEAWZ\",name:\"mtLfIqK6f\",type:\"Identifier\"},{collection:\"vDexKEAWZ\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"TU8f1WfzS\":TU8f1WfzSvDexKEAWZ,\"mtLfIqK6f\":mtLfIqK6fvDexKEAWZ,\"id\":idvDexKEAWZ},i)=>{TU8f1WfzSvDexKEAWZ!==null&&TU8f1WfzSvDexKEAWZ!==void 0?TU8f1WfzSvDexKEAWZ:TU8f1WfzSvDexKEAWZ=\"\";mtLfIqK6fvDexKEAWZ!==null&&mtLfIqK6fvDexKEAWZ!==void 0?mtLfIqK6fvDexKEAWZ:mtLfIqK6fvDexKEAWZ=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vDexKEAWZ-${idvDexKEAWZ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TU8f1WfzS:TU8f1WfzSvDexKEAWZ},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{TU8f1WfzS:TU8f1WfzSvDexKEAWZ},webPageId:\"z5vnW8hV7\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"37.6px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2gxix2-container\",children:/*#__PURE__*/_jsx(DocsPreviousNextButtons,{A2A5N0SPs:resolvedLinks1[0],height:\"100%\",id:\"RH90gkgf8\",IGK5WYujK:mtLfIqK6fvDexKEAWZ,layoutId:\"RH90gkgf8\",style:{width:\"100%\"},variant:\"aUncEwmVK\",width:\"100%\"})})})})})},idvDexKEAWZ);})})})})})],currentSlug:TU8f1WfzS,height:\"100%\",id:\"vZCio_V8v\",layoutId:\"vZCio_V8v\",repeat:true,style:{width:\"100%\"},type:\"next\",width:\"100%\"})})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-QDjd5 { background: var(--token-29ae30f0-796c-4dca-b80f-404f436e4da7, rgb(253, 253, 252)); }`,\".framer-QDjd5.framer-3b9ev6, .framer-QDjd5 .framer-3b9ev6 { display: block; }\",\".framer-QDjd5.framer-wwrz2d { align-content: flex-start; align-items: flex-start; background-color: var(--token-29ae30f0-796c-4dca-b80f-404f436e4da7, #fdfdfc); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-QDjd5 .framer-dpd2z8-container { flex: none; height: 100vh; position: sticky; top: 0px; width: auto; will-change: transform; z-index: 1; }\",\".framer-QDjd5 .framer-1f5ttqg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QDjd5 .framer-1mag92z-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-QDjd5 .framer-1wu9vxy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 800px; padding: 24px; position: relative; width: 100%; }\",\".framer-QDjd5 .framer-13tmnt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QDjd5 .framer-oxww3f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-QDjd5 .framer-pjc1e0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre; width: auto; }\",\".framer-QDjd5 .framer-pemrk6-container { flex: none; height: 11px; position: relative; width: 12px; }\",\".framer-QDjd5 .framer-1c6lnct { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-QDjd5 .framer-1yv15xn { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-QDjd5 .framer-bksjm0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-QDjd5 .framer-t0mndx-container, .framer-QDjd5 .framer-a5pwxa-container, .framer-QDjd5 .framer-x8wh4b-container, .framer-QDjd5 .framer-2gxix2-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-QDjd5 .framer-1r0gk4s { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 376px; }\",\".framer-QDjd5 .framer-jgp9du { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; padding: 0px; position: relative; width: 376px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QDjd5.framer-wwrz2d, .framer-QDjd5 .framer-1f5ttqg, .framer-QDjd5 .framer-1wu9vxy, .framer-QDjd5 .framer-13tmnt, .framer-QDjd5 .framer-oxww3f, .framer-QDjd5 .framer-bksjm0, .framer-QDjd5 .framer-1r0gk4s, .framer-QDjd5 .framer-jgp9du { gap: 0px; } .framer-QDjd5.framer-wwrz2d > *, .framer-QDjd5 .framer-bksjm0 > *, .framer-QDjd5 .framer-1r0gk4s > *, .framer-QDjd5 .framer-jgp9du > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-QDjd5.framer-wwrz2d > :first-child, .framer-QDjd5 .framer-oxww3f > :first-child, .framer-QDjd5 .framer-bksjm0 > :first-child, .framer-QDjd5 .framer-1r0gk4s > :first-child, .framer-QDjd5 .framer-jgp9du > :first-child { margin-left: 0px; } .framer-QDjd5.framer-wwrz2d > :last-child, .framer-QDjd5 .framer-oxww3f > :last-child, .framer-QDjd5 .framer-bksjm0 > :last-child, .framer-QDjd5 .framer-1r0gk4s > :last-child, .framer-QDjd5 .framer-jgp9du > :last-child { margin-right: 0px; } .framer-QDjd5 .framer-1f5ttqg > *, .framer-QDjd5 .framer-13tmnt > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-QDjd5 .framer-1f5ttqg > :first-child, .framer-QDjd5 .framer-1wu9vxy > :first-child, .framer-QDjd5 .framer-13tmnt > :first-child { margin-top: 0px; } .framer-QDjd5 .framer-1f5ttqg > :last-child, .framer-QDjd5 .framer-1wu9vxy > :last-child, .framer-QDjd5 .framer-13tmnt > :last-child { margin-bottom: 0px; } .framer-QDjd5 .framer-1wu9vxy > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-QDjd5 .framer-oxww3f > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\",`@media (min-width: 900px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-QDjd5 { background: var(--token-29ae30f0-796c-4dca-b80f-404f436e4da7, rgb(253, 253, 252)); } .framer-QDjd5.framer-wwrz2d { width: 900px; }}`,`@media (max-width: 899px) { .${metadata.bodyClassName}-framer-QDjd5 { background: var(--token-29ae30f0-796c-4dca-b80f-404f436e4da7, rgb(253, 253, 252)); } .framer-QDjd5.framer-wwrz2d { align-content: center; align-items: center; flex-direction: column; width: 390px; } .framer-QDjd5 .framer-dpd2z8-container { height: auto; width: 100%; z-index: 10; } .framer-QDjd5 .framer-1f5ttqg { flex: none; width: 100%; } .framer-QDjd5 .framer-1mag92z-container { height: 64px; position: relative; top: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QDjd5.framer-wwrz2d { gap: 0px; } .framer-QDjd5.framer-wwrz2d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-QDjd5.framer-wwrz2d > :first-child { margin-top: 0px; } .framer-QDjd5.framer-wwrz2d > :last-child { margin-bottom: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3359\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TAuF2Ned8\":{\"layout\":[\"fixed\",\"auto\"]},\"gCmflE1p5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const Framerz5vnW8hV7=withCSS(Component,css,\"framer-QDjd5\");export default Framerz5vnW8hV7;Framerz5vnW8hV7.displayName=\"Docs\";Framerz5vnW8hV7.defaultProps={height:3359,width:1200};addFonts(Framerz5vnW8hV7,[{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\"}]},...DocsNavbarFonts,...DocsSearchBarFonts,...HeroFonts,...DocsPreviousNextButtonsFonts,...NewPrevAndNextItemFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"F5shyIpov\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"F5shyIpov\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerz5vnW8hV7\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"3359\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TAuF2Ned8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gCmflE1p5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["findQueryInProps", "obj", "key", "result", "updateQueryInProps", "newQuery", "updatedChild", "Prev_Next", "props", "_props_collectionList", "_props_collectionList1", "_props_collectionList2", "type", "currentSlug", "repeat", "style", "p", "SetupMessage", "collectionList", "isCanvas", "RenderTarget", "newCollectionList", "setNewCollectionList", "ye", "query", "findQueryInProps", "queryWithoutLimitAndOffset", "queryData", "useQueryData", "ue", "currentIndex", "findIndex", "newOffset", "getNewOffset", "updateQueryInProps", "data", "item", "items", "lastIndex", "isLastIndex", "isFirstIndex", "title", "description", "containerStyle", "u", "addPropertyControls", "ControlType", "HeroFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "A2A5N0SPs", "IGK5WYujK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerBOG2Ytr2C", "withCSS", "BOG2Ytr2C_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "_componentPresets_fonts", "_componentPresets_fonts1", "DocsNavbarFonts", "getFonts", "UIhoTjZLE_default", "DocsSearchBarFonts", "RKxL3keKC_default", "HeroFonts", "Icon", "DocsPreviousNextButtonsFonts", "BOG2Ytr2C_default", "NewPrevAndNextItemFonts", "Prev_Next", "breakpoints", "serializationHash", "variantClassNames", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "_enumToDisplayNameFunctions_ewkIozG5C", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "YjSYmMwoo_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "style", "className", "layoutId", "variant", "ewkIozG5C", "mtLfIqK6f", "UD0SYS70_", "TU8f1WfzS", "TU8f1WfzSwkmyL6LE6", "mtLfIqK6fwkmyL6LE6", "idwkmyL6LE6", "TU8f1WfzSvDexKEAWZ", "mtLfIqK6fvDexKEAWZ", "idvDexKEAWZ", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "textContent", "enumToDisplayNameFunctions", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "UIhoTjZLE_default", "RKxL3keKC_default", "RichText2", "x", "Icon", "ComponentPresetsProvider", "Prev_Next", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "BOG2Ytr2C_default", "collection1", "paginationInfo1", "loadMore1", "resolvedLinks1", "css", "Framerz5vnW8hV7", "withCSS", "z5vnW8hV7_default", "addFonts", "DocsNavbarFonts", "DocsSearchBarFonts", "HeroFonts", "DocsPreviousNextButtonsFonts", "NewPrevAndNextItemFonts", "getFontsFromSharedStyle", "fonts", "_componentPresets_fonts", "getFontsFromComponentPreset", "_componentPresets_fonts1", "__FramerMetadata__"]
}
