{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framerusercontent.com/modules/2ki4zEIghwE7SmhimSd1/bPnjI8ifG9JAu9KokSjc/apKkCm0EM.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedURL,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHTML,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (a417fcb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import Footer from\"#framer/local/canvasComponent/LyvP0D5ka/LyvP0D5ka.js\";import GradientText from\"#framer/local/canvasComponent/pFW7Ey1kh/pFW7Ey1kh.js\";import Navbar from\"#framer/local/canvasComponent/rZ_8k67nK/rZ_8k67nK.js\";import*as sharedStyle from\"#framer/local/css/ZoJnomjga/ZoJnomjga.js\";import metadataProvider from\"#framer/local/webPageMetadata/apKkCm0EM/apKkCm0EM.js\";const NavbarFonts=getFonts(Navbar);const NavbarWithVariantAppearEffect=withVariantAppearEffect(Navbar);const GradientTextFonts=getFonts(GradientText);const ContainerWithFX=withFX(Container);const RichTextWithFX=withFX(RichText);const EmbedFonts=getFonts(Embed);const FooterFonts=getFonts(Footer);const cycleOrder=[\"DA9FDSRRU\",\"rpl72oRKP\",\"CCO8moTSU\",\"C21drUkdi\"];const breakpoints={C21drUkdi:\"(max-width: 767px)\",CCO8moTSU:\"(min-width: 768px) and (max-width: 991px)\",DA9FDSRRU:\"(min-width: 1440px)\",rpl72oRKP:\"(min-width: 992px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-WFsLM\";const variantClassNames={C21drUkdi:\"framer-v-190olsb\",CCO8moTSU:\"framer-v-1hbu44x\",DA9FDSRRU:\"framer-v-idbjef\",rpl72oRKP:\"framer-v-a5ampe\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition1={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={damping:60,delay:.2,mass:1,stiffness:400,type:\"spring\"};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"DA9FDSRRU\",Laptop:\"rpl72oRKP\",Phone:\"C21drUkdi\",Tablet:\"CCO8moTSU\"};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:\"DA9FDSRRU\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,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);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,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-WFsLM`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-WFsLM`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"DA9FDSRRU\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-idbjef\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d3mb9y\",\"data-framer-name\":\"Header\",name:\"Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C21drUkdi:{width:\"min(max(100vw - 40px, 1px), 960px)\"},CCO8moTSU:{width:\"min(max(100vw - 40px, 1px), 960px)\"},rpl72oRKP:{width:\"min(max(100vw, 1px), 960px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"960px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-jg265o-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C21drUkdi:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"hydXmf8_i\"},CCO8moTSU:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"rdhsohQjd\"},rpl72oRKP:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"HWiadLqD2\"}},children:/*#__PURE__*/_jsx(NavbarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"QU4cgXjEs\",layoutId:\"QU4cgXjEs\",style:{maxWidth:\"100%\"},variant:\"eRIhIs3r8\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v8avzl\",\"data-framer-name\":\"Blog\",name:\"Blog\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nkv034\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dx73mp\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C21drUkdi:{width:\"min(100vw - 40px, 390px)\"},CCO8moTSU:{width:\"calc(min(100vw - 60px, 768px) * 0.8)\"},rpl72oRKP:{width:\"calc(min(100vw - 60px, 1000px) * 0.72)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(min(100vw - 60px, 1296px) * 0.5139)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1suudp7-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(GradientText,{height:\"100%\",id:\"SR9Q02Zpb\",layoutId:\"SR9Q02Zpb\",style:{width:\"100%\"},variant:\"R7zKR2Nvv\",vXPfXakbU:\"Terms of use\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1outzsn\",\"data-styles-preset\":\"ZoJnomjga\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b7ab6e86-eb76-4eee-8f13-ca63c836596f, rgb(205, 205, 205))\"},children:\"Last updated: 30 April, 2023\"})}),className:\"framer-3t71jk\",\"data-framer-name\":\"Gain invaluable predictive analytics and actionable insights, empowering your team to make data-driven decisions and close deal.\",fonts:[\"Inter\"],name:\"Gain invaluable predictive analytics and actionable insights, empowering your team to make data-driven decisions and close deal.\",style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-efmvxd\",\"data-framer-name\":\"Article List\",name:\"Article List\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lq3v9a-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div style=\"color: white\"><h1>Codomain Data Corporation Terms of Service</h1>\\n<p><strong>Last Updated: June 25, 2024 </strong> </p>\\n<p>If you signed a separate Cover Page to access the Product with the same account, and that agreement has not ended, the\\nterms below do not apply to you. Instead, your separate Cover Page applies to your use of the Product. </p>\\n<p> This Agreement is between Codomain Data Corporation and the company or person accessing or using the Product. This\\nAgreement consists of: (1) the Order Form below and (2) the Framework Terms defined below. </p>\\n<p> If you are\\naccessing or using the Product on behalf of your company, you represent that you are authorized to accept this Agreement on\\nbehalf of your company. By signing up, accessing, or using the Product, Customer indicates its acceptance of this Agreement and\\nagrees to be bound by the terms and conditions of this Agreement. </p>\\n<h2>Cover Page</h2>\\n<p><em>Order Form</em></p>\\n<p><strong>Framework Terms: </strong> This Order Form incorporates and is governed by the Framework Terms that are made\\nup of the Key Terms below and the Common Paper Cloud Service Agreement Standard Terms Version\\n2.0, which are incorporated by reference. Any modifications to the Standard Terms made in the Cover Page will control over\\nconflicts with the Standard Terms. Capitalized words have the meanings given in the Cover Page or the Standard Terms. </p>\\n<p><strong>Cloud Service: </strong> Middleware that helps software companies offer SAML single sign-on to their customers</p>\\n<p><strong>Order Date: </strong> The Effective Date </p>\\n<p><strong>Subscription Period:</strong> 1 month(s) </p>\\n<p><strong>Cloud Service Fees:</strong>\\nWe do not currently charge any fees for the cloud service. We may, on a case-by-case basis, charge a negotiated rate for certain\\nself-hosted implementations. </p>\\n<p><strong>Payment Process:</strong>\\nAutomatic payment:\\nCustomer authorizes Provider to bill and charge Customer\\'s payment method on file Monthly for immediate payment or deduction\\nwithout further approval. </p>\\n<p><strong>Non-Renewal Notice Period:</strong> At least 30 days before the end of the current Subscription Period. </p>\\n<p><em>Key Terms</em></p>\\n<p><strong>Customer:</strong> The company or person who accesses or uses the Product. If the person accepting this\\nAgreement is doing so on behalf of a company, all use of the word \"Customer\" in the Agreement will mean that company. </p>\\n<p><strong>Provider:</strong> Codomain Data Corporation </p>\\n<p><strong>Effective Date:</strong> The date Customer first accepts this Agreement. </p>\\n<p><strong>Governing Law:</strong> The laws of the State of Delaware </p>\\n<p><strong>Chosen Courts:</strong> The state or federal courts located in Delaware </p>\\n<p> <strong>Covered Claims:</strong> </p><ul>\\n<li><p> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>Provider Covered Claims:</strong> Any action, proceeding, or claim that the Cloud\\nService, when used by Customer according to the terms of the Agreement, violates, misappropriates, or otherwise infringes upon\\nanyone else\u2019s intellectual property or other proprietary rights. </p></li><li>\\n<p> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>Customer Covered Claims:</strong> Any action, proceeding, or claim that (1) the\\nCustomer Content, when used according to the terms of the Agreement, violates, misappropriates, or otherwise infringes upon\\nanyone else\u2019s intellectual property or other proprietary rights; or (2) results from Customer\u2019s breach or alleged breach of Section 2.1\\n(Restrictions on Customer). </p></li></ul>\\n<p> <strong>General Cap Amount:</strong>\\nThe fees paid or payable by Customer to provider in the 12 month period immediately before the claim </p>\\n<p><strong>Notice Address:</strong> </p>\\n<p>For Provider: ned.oleary@ssoready.com </p>\\n<p>For Customer: The main email address on Customer\\'s account </p>\\n<p><em>Changes to the Standard Terms</em></p>\\n<p>If the Cloud Service contains Open Source Software, Provider will use reasonable efforts to deliver to Customer any notices,\\nsource code, or other materials required by the license of the Open Source Software. To the extent required by the license\\napplicable to a particular Open Source Software, the terms of such license will apply to that Open Source Software instead of this\\nAgreement. To the extent prohibited by the license applicable to a particular Open Source Software, certain restrictions in this\\nAgreement do not apply to that Open Source Software. To the extent required by the license applicable to a particular Open Source\\nSoftware, Provider makes an offer to provide the source code or related information of that Open Source Software. \"Open Source\\nSoftware\" means any software that is distributed as \u201Cfree software\u201D or \u201Copen source software\u201D or under a \u201Ccopyleft\u201D agreement or is\\notherwise subject to the terms of any license that requires, as a condition on the use, copying, modification, or distribution of such\\nsoftware that the software (a) be disclosed or distributed in source code form, (b) be licensed for the purpose of making derivative\\nworks, or (c) be redistributed at no or minimal charge.</p></div>',id:\"y4vxz0SNY\",layoutId:\"y4vxz0SNY\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tkzbg2\",\"data-framer-name\":\"Gradient Shape\",name:\"Gradient Shape\",style:{rotate:-75}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-180c81b\",\"data-framer-name\":\"Glow\",name:\"Glow\",style:{rotate:-19}})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7jj4us-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C21drUkdi:{variant:\"oJwl8teqd\"},CCO8moTSU:{variant:\"fSa12rnoR\"},rpl72oRKP:{variant:\"QOyttd7mF\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"dX2ZdUS0O\",layoutId:\"dX2ZdUS0O\",style:{width:\"100%\"},variant:\"vDpiZqYTG\",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-WFsLM { background: var(--token-9008da8c-f27a-4979-b591-ff70d79d6591, rgb(0, 0, 0)); }`,\".framer-WFsLM.framer-b8214u, .framer-WFsLM .framer-b8214u { display: block; }\",\".framer-WFsLM.framer-idbjef { align-content: center; align-items: center; background-color: var(--token-9008da8c-f27a-4979-b591-ff70d79d6591, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-WFsLM .framer-1d3mb9y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 16px 0px 0px 0px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 9; }\",\".framer-WFsLM .framer-jg265o-container { flex: none; height: auto; max-width: 960px; position: relative; width: auto; }\",\".framer-WFsLM .framer-1v8avzl { 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: 160px 30px 130px 30px; position: relative; width: 100%; }\",\".framer-WFsLM .framer-1nkv034 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 89px; height: min-content; justify-content: center; max-width: 1296px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-WFsLM .framer-dx73mp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 51%; }\",\".framer-WFsLM .framer-1suudp7-container, .framer-WFsLM .framer-7jj4us-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-WFsLM .framer-3t71jk { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WFsLM .framer-efmvxd { 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: 68%; }\",\".framer-WFsLM .framer-lq3v9a-container { flex: none; height: auto; position: relative; width: 600px; }\",\".framer-WFsLM .framer-tkzbg2 { -webkit-filter: blur(100px); align-content: center; align-items: center; background: linear-gradient(60deg, rgba(206, 54, 91, 0.6) 44.3580421241554%, rgb(45, 88, 239) 61.8468138548705%, rgba(64, 16, 80, 0.95) 100%); border-bottom-left-radius: 600px; border-bottom-right-radius: 600px; border-top-left-radius: 600px; border-top-right-radius: 600px; display: flex; filter: blur(100px); flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 358px; justify-content: center; left: 531px; opacity: 0.3; overflow: visible; padding: 5px; position: absolute; top: 433px; width: 516px; z-index: -1; }\",'.framer-WFsLM .framer-180c81b { -webkit-filter: blur(100px); background: linear-gradient(267.1470574054579deg, var(--token-93174b78-3d86-40ab-94b6-c860d6c6d868, #070707) /* {\"name\":\"Neutral 04\"} */ 0%, rgba(44, 51, 219, 1) 49.78378640638815%, var(--token-25f00ade-88c4-49bb-b384-e0a17a1ac32a, rgb(11, 11, 12)) /* {\"name\":\"Neutral 03\"} */ 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(100px); flex: none; height: 424px; left: 414px; opacity: 0.6; position: absolute; right: 414px; top: -82px; z-index: 0; }',\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WFsLM.framer-idbjef, .framer-WFsLM .framer-1d3mb9y, .framer-WFsLM .framer-1v8avzl, .framer-WFsLM .framer-1nkv034, .framer-WFsLM .framer-dx73mp, .framer-WFsLM .framer-efmvxd, .framer-WFsLM .framer-tkzbg2 { gap: 0px; } .framer-WFsLM.framer-idbjef > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WFsLM.framer-idbjef > :first-child, .framer-WFsLM .framer-1v8avzl > :first-child, .framer-WFsLM .framer-1nkv034 > :first-child, .framer-WFsLM .framer-dx73mp > :first-child, .framer-WFsLM .framer-efmvxd > :first-child, .framer-WFsLM .framer-tkzbg2 > :first-child { margin-top: 0px; } .framer-WFsLM.framer-idbjef > :last-child, .framer-WFsLM .framer-1v8avzl > :last-child, .framer-WFsLM .framer-1nkv034 > :last-child, .framer-WFsLM .framer-dx73mp > :last-child, .framer-WFsLM .framer-efmvxd > :last-child, .framer-WFsLM .framer-tkzbg2 > :last-child { margin-bottom: 0px; } .framer-WFsLM .framer-1d3mb9y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-WFsLM .framer-1d3mb9y > :first-child { margin-left: 0px; } .framer-WFsLM .framer-1d3mb9y > :last-child { margin-right: 0px; } .framer-WFsLM .framer-1v8avzl > *, .framer-WFsLM .framer-efmvxd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-WFsLM .framer-1nkv034 > * { margin: 0px; margin-bottom: calc(89px / 2); margin-top: calc(89px / 2); } .framer-WFsLM .framer-dx73mp > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-WFsLM .framer-tkzbg2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\"@media (min-width: 1440px) { .framer-WFsLM .hidden-idbjef { display: none !important; } }\",`@media (min-width: 992px) and (max-width: 1439px) { .framer-WFsLM .hidden-a5ampe { display: none !important; } .${metadata.bodyClassName}-framer-WFsLM { background: var(--token-9008da8c-f27a-4979-b591-ff70d79d6591, rgb(0, 0, 0)); } .framer-WFsLM.framer-idbjef { width: 992px; } .framer-WFsLM .framer-jg265o-container { flex: 1 0 0px; width: 1px; } .framer-WFsLM .framer-1v8avzl { padding: 150px 30px 100px 30px; } .framer-WFsLM .framer-1nkv034 { gap: 80px; max-width: 1000px; } .framer-WFsLM .framer-dx73mp { width: 72%; } .framer-WFsLM .framer-efmvxd { width: 85%; } .framer-WFsLM .framer-180c81b { height: 395px; left: 212px; opacity: unset; right: 212px; top: -223px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WFsLM .framer-1nkv034 { gap: 0px; } .framer-WFsLM .framer-1nkv034 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-WFsLM .framer-1nkv034 > :first-child { margin-top: 0px; } .framer-WFsLM .framer-1nkv034 > :last-child { margin-bottom: 0px; } }}`,`@media (min-width: 768px) and (max-width: 991px) { .framer-WFsLM .hidden-1hbu44x { display: none !important; } .${metadata.bodyClassName}-framer-WFsLM { background: var(--token-9008da8c-f27a-4979-b591-ff70d79d6591, rgb(0, 0, 0)); } .framer-WFsLM.framer-idbjef { width: 768px; } .framer-WFsLM .framer-1d3mb9y { padding: 20px 20px 0px 20px; } .framer-WFsLM .framer-jg265o-container { flex: 1 0 0px; width: 1px; } .framer-WFsLM .framer-1v8avzl { padding: 150px 30px 80px 30px; } .framer-WFsLM .framer-1nkv034 { gap: 60px; max-width: 768px; } .framer-WFsLM .framer-dx73mp { width: 80%; } .framer-WFsLM .framer-efmvxd { width: 85%; } .framer-WFsLM .framer-180c81b { height: 218px; left: 251px; opacity: unset; right: 203px; top: -64px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WFsLM .framer-1nkv034 { gap: 0px; } .framer-WFsLM .framer-1nkv034 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-WFsLM .framer-1nkv034 > :first-child { margin-top: 0px; } .framer-WFsLM .framer-1nkv034 > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 767px) { .framer-WFsLM .hidden-190olsb { display: none !important; } .${metadata.bodyClassName}-framer-WFsLM { background: var(--token-9008da8c-f27a-4979-b591-ff70d79d6591, rgb(0, 0, 0)); } .framer-WFsLM.framer-idbjef { width: 390px; } .framer-WFsLM .framer-1d3mb9y { padding: 20px 20px 0px 20px; } .framer-WFsLM .framer-jg265o-container { flex: 1 0 0px; width: 1px; } .framer-WFsLM .framer-1v8avzl { padding: 120px 20px 60px 20px; } .framer-WFsLM .framer-1nkv034 { gap: 40px; max-width: 390px; } .framer-WFsLM .framer-dx73mp, .framer-WFsLM .framer-efmvxd { width: 100%; } .framer-WFsLM .framer-lq3v9a-container { width: 300px; } .framer-WFsLM .framer-180c81b { height: 239px; left: 23px; right: 23px; top: -64px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WFsLM .framer-1nkv034 { gap: 0px; } .framer-WFsLM .framer-1nkv034 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-WFsLM .framer-1nkv034 > :first-child { margin-top: 0px; } .framer-WFsLM .framer-1nkv034 > :last-child { margin-bottom: 0px; } }}`,...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1962\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rpl72oRKP\":{\"layout\":[\"fixed\",\"auto\"]},\"CCO8moTSU\":{\"layout\":[\"fixed\",\"auto\"]},\"C21drUkdi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerapKkCm0EM=withCSS(Component,css,\"framer-WFsLM\");export default FramerapKkCm0EM;FramerapKkCm0EM.displayName=\"Blog\";FramerapKkCm0EM.defaultProps={height:1962,width:1440};addFonts(FramerapKkCm0EM,[{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\"}]},...NavbarFonts,...GradientTextFonts,...EmbedFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerapKkCm0EM\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"1962\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rpl72oRKP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CCO8moTSU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C21drUkdi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "NavbarFonts", "getFonts", "rZ_8k67nK_default", "NavbarWithVariantAppearEffect", "withVariantAppearEffect", "GradientTextFonts", "pFW7Ey1kh_default", "ContainerWithFX", "withFX", "Container", "RichTextWithFX", "RichText2", "EmbedFonts", "Embed", "FooterFonts", "LyvP0D5ka_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "NavbarWithVariantAppearEffect", "ContainerWithFX", "pFW7Ey1kh_default", "RichTextWithFX", "x", "Embed", "LyvP0D5ka_default", "css", "FramerapKkCm0EM", "withCSS", "apKkCm0EM_default", "addFonts", "NavbarFonts", "GradientTextFonts", "EmbedFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
