{"version":3,"file":"2CGgkH2UjwQpwkvFqrg3kGOnDP4OJwyYCEyq3HJjfoc.Cj0QrxEs.mjs","names":["props","fonts","css","className","fonts","css","className","serializationHash","variantClassNames","transition1","Transition","Variants","getProps","props","createLayoutDependency","Component","Image","className","css","addPropertyOverrides","Df_LogoFullDarkMode","cycleOrder","serializationHash","variantClassNames","transition1","animation","Transition","Variants","humanReadableVariantMap","getProps","props","createLayoutDependency","Component","className","css","addPropertyOverrides","Df_TitleFonts","Df_Title","Df_Footer2","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","props","createLayoutDependency","Component","Image","className","css","Phosphor","serializationHash","variantClassNames","transition1","toResponsiveImage","humanReadableVariantMap","getProps","props","Component","className","Image","css","Component","props","Df_Title","Df_imgBig2","Df_footer","Topbar2","props","Blog","metadata","className","PropertyOverrides","css"],"sources":["https:/framerusercontent.com/modules/5UPpLsIptml8Pf2ste2Q/CGv6Dz5yIXHe6rOvd3YV/Table_test.js","https:/framerusercontent.com/modules/j1XeH8UcTuhJcFXi8o56/ypBKLDO0pGVbN4NPlcHG/LBZDvLlK6.js","https:/framerusercontent.com/modules/jCUAl8TXlODKD19io1iP/QZNUE6xssuONraXN5suk/PzG_EcWxM.js","https:/framerusercontent.com/modules/EPpZXFCebnGfrJusXW79/ooDq9zcFpCbj0R2ExlMU/tIOMF0YTc.js","https:/framerusercontent.com/modules/H3PvzT8gHmOpmiQBYAgC/XRribnlnBuoGiYGu1MVT/AH0GRmaSS.js","https:/framerusercontent.com/modules/1vCDYUnU6pDHGv8oD9n6/mwIY74MllXwlpwbVVoGI/c3Ubhgljy.js","https:/framerusercontent.com/modules/1iDE1kBvAiHtuuBjUZJz/CLkDZLTZI3eDn9YdUHx0/FDcTDCkAE.js","https:/framerusercontent.com/modules/qy82YL4lTZQxe9JQPT9G/CT9OPCfnmHV7njyz0Pam/Markdown_table_cms.js","https:/framerusercontent.com/modules/aNzXfDekEKms4vv57kZZ/DzoAh0CXit4xPPGzarKI/zhr1doyXz.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerSupportedLayoutWidth any\n * @framerDisableUnlink\n * @framerSupportedLayoutHeight any\n */export function MarkdownTable(props){const[ReactMarkdown,setReactMarkdown]=React.useState(null);const[remarkGfm,setRemarkGfm]=React.useState(null);React.useEffect(()=>{import(\"react-markdown\").then(module=>setReactMarkdown(()=>module.default));import(\"remark-gfm\").then(module=>setRemarkGfm(()=>module.default));},[]);const{markdown,width,height,headerText,cellText,firstColumnText,headerBackgroundColor,firstColumnBackgroundColor,cellBackgroundColor,innerBorder,outerBorder,cornerRadius}=props;const containerStyle={width:width,height:height,overflow:\"auto\"};const tableWrapperStyle={border:`${outerBorder.width}px ${outerBorder.style} ${outerBorder.color}`,borderRadius:`${cornerRadius}px`,overflow:\"hidden\"};const tableStyle={width:\"100%\",borderCollapse:\"separate\",borderSpacing:0,borderRadius:`${cornerRadius}px`};const cellBaseStyle={padding:\"8px\",position:\"relative\"};const createCellStyle=(isHeader,isFirstColumn,isLastColumn,rowIndex,colIndex)=>{var _textStyle_font_style,_textStyle_font;const textStyle=isHeader?headerText:isFirstColumn?firstColumnText:cellText;return{...cellBaseStyle,backgroundColor:isHeader?headerBackgroundColor:isFirstColumn?firstColumnBackgroundColor:cellBackgroundColor,fontFamily:textStyle.framerFont.fontFamily||\"Inter\",fontWeight:textStyle.framerFont.fontWeight||400,fontStyle:((_textStyle_font=textStyle.font)===null||_textStyle_font===void 0?void 0:(_textStyle_font_style=_textStyle_font.style)===null||_textStyle_font_style===void 0?void 0:_textStyle_font_style.includes(\"Italic\"))?\"italic\":\"normal\",fontSize:`${textStyle.size}px`,color:textStyle.color,letterSpacing:`${textStyle.letterSpacing}px`,lineHeight:textStyle.lineHeight,textAlign:textStyle.align,borderRight:!isLastColumn?`${innerBorder.width}px ${innerBorder.style} ${innerBorder.color}`:\"none\",borderBottom:`${innerBorder.width}px ${innerBorder.style} ${innerBorder.color}`,...rowIndex===0&&{borderTop:\"none\"},...colIndex===0&&{borderLeft:\"none\"}};};const MarkdownComponents={table:({children})=>/*#__PURE__*/_jsx(\"div\",{style:tableWrapperStyle,children:/*#__PURE__*/_jsx(\"table\",{style:tableStyle,children:children})}),thead:({children})=>/*#__PURE__*/_jsx(\"thead\",{children:children}),tbody:({children})=>/*#__PURE__*/_jsx(\"tbody\",{children:children}),tr:({children,index})=>/*#__PURE__*/_jsx(\"tr\",{\"data-row-index\":index,children:React.Children.map(children,(child,cellIndex)=>/*#__PURE__*/React.cloneElement(child,{isFirstColumn:cellIndex===0,isLastColumn:cellIndex===children.length-1,rowIndex:index,colIndex:cellIndex}))}),th:({children,isFirstColumn,isLastColumn,rowIndex,colIndex})=>/*#__PURE__*/_jsx(\"th\",{style:createCellStyle(true,isFirstColumn,isLastColumn,rowIndex,colIndex),children:React.Children.map(children,child=>typeof child===\"string\"?child.split(\"<br>\").map((text,i,array)=>i===array.length-1?text:/*#__PURE__*/_jsxs(React.Fragment,{children:[text,/*#__PURE__*/_jsx(\"br\",{})]},i)):child)}),td:({children,isFirstColumn,isLastColumn,rowIndex,colIndex})=>/*#__PURE__*/_jsx(\"td\",{style:createCellStyle(false,isFirstColumn,isLastColumn,rowIndex,colIndex),children:React.Children.map(children,child=>typeof child===\"string\"?child.split(\"<br>\").map((text,i,array)=>i===array.length-1?text:/*#__PURE__*/_jsxs(React.Fragment,{children:[text,/*#__PURE__*/_jsx(\"br\",{})]},i)):child)})};if(!ReactMarkdown||!remarkGfm){// Return a loading state or placeholder\nreturn /*#__PURE__*/_jsx(\"div\",{children:\"Loading...\"});}return /*#__PURE__*/_jsxs(\"div\",{style:containerStyle,children:[/*#__PURE__*/_jsx(ReactMarkdown,{components:MarkdownComponents,remarkPlugins:[remarkGfm],children:markdown}),/*#__PURE__*/_jsx(\"style\",{children:`\n                table tr:last-child td {\n                    border-bottom: none !important;\n                }\n                table tr td:first-child, table tr th:first-child {\n                    border-left: none !important;\n                }\n                table tr:first-child th {\n                    border-top: none !important;\n                }\n                table tr td:last-child, table tr th:last-child {\n                    border-right: none !important;\n                }\n            `})]});}MarkdownTable.defaultProps={markdown:\"| Header 1 | Header 2 | Header 3 |\\n|----------|----------|----------|\\n| Row 1 Col 1 | Row 1 Col 2 | Row 1 Col 3 |\\n| Row 2 Col 1 | Row 2 Col 2 | Row 2 Col 3 |\",width:\"100%\",height:\"auto\",headerBackgroundColor:\"#f0f0f0\",firstColumnBackgroundColor:\"#f9f9f9\",cellBackgroundColor:\"#ffffff\",cornerRadius:4,innerBorder:{color:\"#dddddd\",width:1,style:\"solid\"},outerBorder:{color:\"#bbbbbb\",width:2,style:\"solid\"}};addPropertyControls(MarkdownTable,{markdown:{type:ControlType.String,title:\"Markdown\",displayTextArea:true},width:{type:ControlType.FusedNumber,title:\"Width\",defaultValue:300,toggleKey:\"widthType\",toggleTitles:[\"Fixed\",\"Flexible\"],valueKeys:[\"width\"],valueLabels:[\"W\"],min:0},height:{type:ControlType.FusedNumber,title:\"Height\",defaultValue:200,toggleKey:\"heightType\",toggleTitles:[\"Fixed\",\"Flexible\"],valueKeys:[\"height\"],valueLabels:[\"H\"],min:0},headerText:{type:ControlType.Object,title:\"Header Text\",controls:{framerFont:{type:ControlType.Font,title:\"Font\",defaultValue:{family:\"Inter\",weight:400}},color:{type:ControlType.Color,defaultValue:\"#000000\"},size:{type:ControlType.Number,defaultValue:16,min:0,max:200,unit:\"px\"},letterSpacing:{type:ControlType.Number,defaultValue:0,min:-20,max:100,unit:\"px\",step:.1,displayStepper:true},lineHeight:{type:ControlType.Number,defaultValue:1.2,min:0,max:3,step:.1,displayStepper:true},align:{type:ControlType.SegmentedEnum,options:[\"left\",\"center\",\"right\"],defaultValue:\"left\"}}},cellText:{type:ControlType.Object,title:\"Cell Text\",controls:{framerFont:{type:ControlType.Font,title:\"Font\",defaultValue:{family:\"Inter\",weight:400}},color:{type:ControlType.Color,defaultValue:\"#000000\"},size:{type:ControlType.Number,defaultValue:14,min:0,max:200,unit:\"px\"},letterSpacing:{type:ControlType.Number,defaultValue:0,min:-20,max:100,unit:\"px\",step:.1,displayStepper:true},lineHeight:{type:ControlType.Number,defaultValue:1.2,min:0,max:3,step:.1,displayStepper:true},align:{type:ControlType.SegmentedEnum,options:[\"left\",\"center\",\"right\"],defaultValue:\"left\"}}},firstColumnText:{type:ControlType.Object,title:\"First Column Text\",controls:{framerFont:{type:ControlType.Font,title:\"Font\",defaultValue:{family:\"Inter\",weight:400}},color:{type:ControlType.Color,defaultValue:\"#000000\"},size:{type:ControlType.Number,defaultValue:14,min:0,max:200,unit:\"px\"},letterSpacing:{type:ControlType.Number,defaultValue:0,min:-20,max:100,unit:\"px\",step:.1,displayStepper:true},lineHeight:{type:ControlType.Number,defaultValue:1.2,min:0,max:3,step:.1,displayStepper:true},align:{type:ControlType.SegmentedEnum,options:[\"left\",\"center\",\"right\"],defaultValue:\"left\"}}},headerBackgroundColor:{type:ControlType.Color,title:\"Header Color\",defaultValue:\"#f0f0f0\"},firstColumnBackgroundColor:{type:ControlType.Color,title:\"First Column Color\",defaultValue:\"#f9f9f9\"},cellBackgroundColor:{type:ControlType.Color,title:\"Cell Color\",defaultValue:\"#ffffff\"},innerBorder:{type:ControlType.Object,title:\"Inner Border\",controls:{color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#dddddd\"},width:{type:ControlType.Number,title:\"Width\",defaultValue:1,min:0,max:10,step:1,unit:\"px\"},style:{type:ControlType.Enum,title:\"Style\",defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},outerBorder:{type:ControlType.Object,title:\"Outer Border\",controls:{color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#bbbbbb\"},width:{type:ControlType.Number,title:\"Width\",defaultValue:2,min:0,max:10,step:1,unit:\"px\"},style:{type:ControlType.Enum,title:\"Style\",defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},cornerRadius:{type:ControlType.Number,title:\"Corner Radius\",defaultValue:4,min:0,max:20,step:1}});\nexport const __FramerMetadata__ = {\"exports\":{\"MarkdownTable\":{\"type\":\"reactComponent\",\"name\":\"MarkdownTable\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"* @framerSupportedLayoutHeight any\",\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Table_test.map","// Generated by Framer (ddd30d5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Poppins-medium\",\"FS;Poppins-bold\",\"FS;Poppins-bold italic\",\"FS;Poppins-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K4RHKGAGLQZBXEZQT2O2AGSLKJF2E4YC/JRUTXNFPWLFGIEVSSEYOW7EP7TYM3V6A/UCDYLFFGLZRGCFY5GYDYM5LDB52BAR5M.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/JQL34MORONR7D7BXOVTX3KBGJGEJQ5BJ/CKUZVY5SFANCFAT7FS3MP6ZL4BMEWCJE/NOLRWF3JBJ434MILPG5RB6R2B4HGRSZB.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/4HH4RITHYMRL7VREMN2WV2L6LQZKPRWE/ZWMGJ4LKTJ4NT5NKCHS5WLI6CRRRO2SE/OFRM3ATAEVJKZWGG6S4JN4P6SBPN2BLD.woff2\",weight:\"500\"}]}];export const css=['.framer-06lNQ .framer-styles-preset-10q64me:not(.rich-text-wrapper), .framer-06lNQ .framer-styles-preset-10q64me.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-f3e250d9-8323-4b94-afce-90daeac5969d, #1c1c1c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-06lNQ .framer-styles-preset-10q64me:not(.rich-text-wrapper), .framer-06lNQ .framer-styles-preset-10q64me.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 17px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-f3e250d9-8323-4b94-afce-90daeac5969d, #1c1c1c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-06lNQ .framer-styles-preset-10q64me:not(.rich-text-wrapper), .framer-06lNQ .framer-styles-preset-10q64me.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 17px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-f3e250d9-8323-4b94-afce-90daeac5969d, #1c1c1c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-06lNQ\";\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\"}}}","// Generated by Framer (ddd30d5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-omzQk .framer-styles-preset-1cx5qbz:not(.rich-text-wrapper), .framer-omzQk .framer-styles-preset-1cx5qbz.rich-text-wrapper a { --framer-link-current-text-color: #ffffff; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #bfbfbf; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-86940d48-67de-43e2-b492-06b7170ae465, #ffffff); --framer-link-text-decoration: none; }\"];export const className=\"framer-omzQk\";\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 (92d6359)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-mu2aR\";const variantClassNames={\"I40000451:17754;8136:51424\":\"framer-v-1audbyf\"};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={bounce:.2,delay:0,duration:.4,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 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{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"I40000451:17754;8136:51424\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:217,pixelWidth:1100,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/bEYYnzls7vhKNYQgyP8FNbrhLHs.svg\",srcSet:\"https://framerusercontent.com/images/bEYYnzls7vhKNYQgyP8FNbrhLHs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/bEYYnzls7vhKNYQgyP8FNbrhLHs.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bEYYnzls7vhKNYQgyP8FNbrhLHs.svg 1100w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1audbyf\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"I40000451:17754;8136:51424\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mu2aR.framer-3xoryn, .framer-mu2aR .framer-3xoryn { display: block; }\",\".framer-mu2aR.framer-1audbyf { height: 48px; position: relative; width: 193px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 193\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertIOMF0YTc=withCSS(Component,css,\"framer-mu2aR\");export default FramertIOMF0YTc;FramertIOMF0YTc.displayName=\"df_Logo full - Dark Mode\";FramertIOMF0YTc.defaultProps={height:48,width:193};addFonts(FramertIOMF0YTc,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertIOMF0YTc\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"48\",\"framerIntrinsicWidth\":\"193\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tIOMF0YTc.map","// Generated by Framer (aba0f78)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/crGo8vAamExwQkWuHol5/TTucJbDmDS7ee8Wc61m0/h8CzwBybC.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/j1XeH8UcTuhJcFXi8o56/ypBKLDO0pGVbN4NPlcHG/LBZDvLlK6.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/jCUAl8TXlODKD19io1iP/QZNUE6xssuONraXN5suk/PzG_EcWxM.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/cLvVLiUzfKciCEHLaqNs/BQbLxnwQPWoH2qDjr1FS/QoV3AyURB.js\";import Df_LogoFullDarkMode from\"https://framerusercontent.com/modules/EPpZXFCebnGfrJusXW79/ooDq9zcFpCbj0R2ExlMU/tIOMF0YTc.js\";const Df_LogoFullDarkModeFonts=getFonts(Df_LogoFullDarkMode);const cycleOrder=[\"NaGWDsmEV\",\"Qm1zGciFM\",\"Yre7L7beG\"];const serializationHash=\"framer-pvJWx\";const variantClassNames={NaGWDsmEV:\"framer-v-3eiw2\",Qm1zGciFM:\"framer-v-e48dtz\",Yre7L7beG:\"framer-v-nrlebo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,y:-2};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:\"NaGWDsmEV\",Mobile:\"Yre7L7beG\",Tablet:\"Qm1zGciFM\"};const getProps=({height,id,text,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"NaGWDsmEV\",YGCE1YzxL:text??props.YGCE1YzxL??\"DearFlow is an AI personal agent that automates tasks by syncing with your inbox, calendar, and to-do lists. It proactively organizes and acts on your behalf, simplifying your life.\"};};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,YGCE1YzxL,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NaGWDsmEV\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-3eiw2\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"NaGWDsmEV\",ref:ref??ref1,style:{backgroundColor:\"var(--token-1fdc9c8a-01d5-413e-91cf-009f7c0e02f6, rgb(34, 35, 39))\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48,...style},...addPropertyOverrides({Qm1zGciFM:{\"data-framer-name\":\"Tablet\"},Yre7L7beG:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wkgcje\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"yLD5GnaNT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w7bgaa\",layoutDependency:layoutDependency,layoutId:\"mPBIZ5Ecb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6vetcy\",layoutDependency:layoutDependency,layoutId:\"P0D4ypK3d\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11oaqld\",\"data-framer-name\":\"Company logo\",layoutDependency:layoutDependency,layoutId:\"DU8O4Adbm\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"192.64px\",y:(componentViewport?.y||0)+(48+((componentViewport?.height||348)-96-387)/2)+0+0+0+0+0+0+0,...addPropertyOverrides({Qm1zGciFM:{y:(componentViewport?.y||0)+(30+((componentViewport?.height||382.5)-30-487.8)/2)+0+-2842170943040401e-29+0+0+0+0+0},Yre7L7beG:{y:(componentViewport?.y||0)+(30+((componentViewport?.height||646.5)-30-686.8000000000001)/2)+0+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tu2koq-container\",layoutDependency:layoutDependency,layoutId:\"oIiw_8T2k-container\",children:/*#__PURE__*/_jsx(Df_LogoFullDarkMode,{height:\"100%\",id:\"oIiw_8T2k\",layoutId:\"oIiw_8T2k\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wykwih\",\"data-styles-preset\":\"QoV3AyURB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-86940d48-67de-43e2-b492-06b7170ae465, rgb(255, 255, 255)))\"},children:\"DearFlow is an AI personal agent that automates tasks by syncing with your inbox, calendar, and to-do lists. It proactively organizes and acts on your behalf, simplifying your life.\"})}),className:\"framer-1lz72at\",\"data-framer-name\":\"Enter your prompt, and let our AI bring your creative visions to life — effortlessly generate images, videos, and designs.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mcY_C4406\",style:{\"--extracted-r6o4lv\":\"var(--token-86940d48-67de-43e2-b492-06b7170ae465, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"20px\"},text:YGCE1YzxL,variants:{Yre7L7beG:{\"--extracted-r6o4lv\":\"var(--token-93457982-d755-4a9a-989d-2979756456e5, rgb(247, 247, 247))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Qm1zGciFM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wykwih\",\"data-styles-preset\":\"QoV3AyURB\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-86940d48-67de-43e2-b492-06b7170ae465, rgb(255, 255, 255)))\"},children:\"DearFlow is an AI personal agent that automates tasks by syncing with your inbox, calendar, and to-do lists. It proactively organizes and acts on your behalf, simplifying your life.\"})})},Yre7L7beG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wykwih\",\"data-styles-preset\":\"QoV3AyURB\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-93457982-d755-4a9a-989d-2979756456e5, rgb(247, 247, 247)))\"},children:\"DearFlow is an AI personal agent that automates tasks by syncing with your inbox, calendar, and to-do lists. It proactively organizes and acts on your behalf, simplifying your life.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6y1qka\",layoutDependency:layoutDependency,layoutId:\"UIvpZXl3S\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g9mjpk\",\"data-framer-name\":\"Button Container\",layoutDependency:layoutDependency,layoutId:\"AiMukRxZw\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://x.com/dearflow_ai\",motionChild:true,nodeId:\"A2ecyYY0O\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1e0wp1y framer-1e9b4xy\",\"data-framer-name\":\"Buttons/ Social Button\",layoutDependency:layoutDependency,layoutId:\"A2ecyYY0O\",style:{backgroundColor:\"var(--token-a4a47d71-3fee-4027-9af4-e581c21ef1a0, rgb(38, 38, 38))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-d3b8i0\",\"data-framer-name\":\"layer1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:111,intrinsicWidth:119,layoutDependency:layoutDependency,layoutId:\"d8y1JHxPg\",svg:'<svg width=\"119\" height=\"111\" viewBox=\"0 0 119 111\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.04402 0.545105L46.5896 61.4566L0.760284 110.982H11.0776L51.2051 67.6239L83.624 110.982H118.728L70.6218 46.644L113.282 0.545105H102.965L66.0132 40.4767L36.1547 0.545105H1.05086H1.04402ZM16.212 8.14519H32.335L103.546 103.382H87.4229L16.212 8.14519Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://discord.gg/KK3gp6FaKJ\",motionChild:true,nodeId:\"Gaele0COU\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1a1psvw framer-1e9b4xy\",\"data-framer-name\":\"Buttons/ Social Button\",layoutDependency:layoutDependency,layoutId:\"Gaele0COU\",style:{backgroundColor:\"var(--token-a4a47d71-3fee-4027-9af4-e581c21ef1a0, rgb(38, 38, 38))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-n71rkn\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"tioEN5DWz\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 16\"><path d=\"M 17.768 1.33 C 16.438 0.71 14.998 0.26 13.498 0 C 13.472 0 13.447 0.011 13.428 0.03 C 13.248 0.36 13.038 0.79 12.898 1.12 C 11.307 0.88 9.689 0.88 8.098 1.12 C 7.958 0.78 7.748 0.36 7.558 0.03 C 7.548 0.01 7.518 0 7.488 0 C 5.988 0.26 4.558 0.71 3.218 1.33 C 3.208 1.33 3.198 1.34 3.188 1.35 C 0.468 5.42 -0.282 9.38 0.088 13.3 C 0.088 13.32 0.098 13.34 0.118 13.35 C 1.918 14.67 3.648 15.47 5.358 16 C 5.388 16.01 5.418 16 5.428 15.98 C 5.828 15.43 6.188 14.85 6.498 14.24 C 6.518 14.2 6.498 14.16 6.458 14.15 C 5.888 13.93 5.348 13.67 4.818 13.37 C 4.778 13.35 4.778 13.29 4.808 13.26 C 4.918 13.18 5.028 13.09 5.138 13.01 C 5.158 12.99 5.188 12.99 5.208 13 C 8.648 14.57 12.358 14.57 15.758 13 C 15.778 12.99 15.808 12.99 15.828 13.01 C 15.938 13.1 16.048 13.18 16.158 13.27 C 16.198 13.3 16.198 13.36 16.148 13.38 C 15.628 13.69 15.078 13.94 14.508 14.16 C 14.468 14.17 14.458 14.22 14.468 14.25 C 14.788 14.86 15.148 15.44 15.538 15.99 C 15.568 16 15.598 16.01 15.628 16 C 17.348 15.47 19.078 14.67 20.878 13.35 C 20.898 13.34 20.908 13.32 20.908 13.3 C 21.348 8.77 20.178 4.84 17.808 1.35 C 17.798 1.34 17.788 1.33 17.768 1.33 Z M 7.018 10.91 C 5.988 10.91 5.128 9.96 5.128 8.79 C 5.128 7.62 5.968 6.67 7.018 6.67 C 8.078 6.67 8.918 7.63 8.908 8.79 C 8.908 9.96 8.068 10.91 7.018 10.91 Z M 13.988 10.91 C 12.958 10.91 12.098 9.96 12.098 8.79 C 12.098 7.62 12.938 6.67 13.988 6.67 C 15.048 6.67 15.888 7.63 15.878 8.79 C 15.878 9.96 15.048 10.91 13.988 10.91 Z\" fill=\"var(--token-86940d48-67de-43e2-b492-06b7170ae465, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:12811287126,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/dearflow/\",motionChild:true,nodeId:\"PtwXcWqAD\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-dboew9 framer-1e9b4xy\",\"data-framer-name\":\"Buttons/ Social Button\",layoutDependency:layoutDependency,layoutId:\"PtwXcWqAD\",style:{backgroundColor:\"var(--token-a4a47d71-3fee-4027-9af4-e581c21ef1a0, rgb(38, 38, 38))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nbvay9\",\"data-framer-name\":\"linkedin\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"vMXBq98Q0\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"-1 -1 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.280374 15H3.36449V5.01562H0.280374V15Z\" fill=\"white\"/>\\n<path d=\"M0 1.82813C0 2.8125 0.794393 3.60938 1.82243 3.60938C2.80374 3.60938 3.59813 2.8125 3.59813 1.82813C3.59813 0.84375 2.80374 0 1.82243 0C0.794393 0 0 0.84375 0 1.82813Z\" fill=\"white\"/>\\n<path d=\"M11.8692 15H15V9.51562C15 6.84375 14.3925 4.73438 11.2617 4.73438C9.76635 4.73438 8.73832 5.57812 8.31776 6.375H8.27103V5.01562H5.3271V15H8.41121V10.0781C8.41121 8.76562 8.64486 7.5 10.2804 7.5C11.8692 7.5 11.8692 9 11.8692 10.125V15Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gf1wgn\",layoutDependency:layoutDependency,layoutId:\"BIcr9yCFv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10q64me\",\"data-styles-preset\":\"LBZDvLlK6\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nlDuK0Q4T\"},motionChild:true,nodeId:\"gT4c1vW89\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1cx5qbz\",\"data-styles-preset\":\"PzG_EcWxM\",children:\"Pricing\"})})})}),className:\"framer-1bu8q60\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gT4c1vW89\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10q64me\",\"data-styles-preset\":\"LBZDvLlK6\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tZsH44btz\"},motionChild:true,nodeId:\"PSULlD38H\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1cx5qbz\",\"data-styles-preset\":\"PzG_EcWxM\",children:\"About us\"})})})}),className:\"framer-tkx4df\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PSULlD38H\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10q64me\",\"data-styles-preset\":\"LBZDvLlK6\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"h0XCjGqdl\"},motionChild:true,nodeId:\"GofWfNaEz\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1cx5qbz\",\"data-styles-preset\":\"PzG_EcWxM\",children:\"Blog\"})})})}),className:\"framer-1772bvv\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GofWfNaEz\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10q64me\",\"data-styles-preset\":\"LBZDvLlK6\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qob6D5XLd\"},motionChild:true,nodeId:\"usEMK1aY7\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1cx5qbz\",\"data-styles-preset\":\"PzG_EcWxM\",children:\"Contact us\"})})})}),className:\"framer-oi306p\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"usEMK1aY7\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6sncgs\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"W2zFO43I5\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uw567r\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"L_GNlxEne\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-109a8w6\",\"data-border\":true,\"data-framer-name\":\"Sub Container\",layoutDependency:layoutDependency,layoutId:\"IjbivxehG\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-65cf6e29-66fa-4301-ba74-9b3cb0ba65fb, rgb(221, 229, 237))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wh6ug7\",\"data-styles-preset\":\"h8CzwBybC\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc688661-4164-47f6-bb0d-da4bb8f3ce93, rgb(0, 158, 194)))\"},children:\"\\xa9 2025 Dearflow. All Rights Reserved.\"})}),className:\"framer-1u455r0\",\"data-framer-name\":\"Enter your prompt, and let our AI bring your creative visions to life — effortlessly generate images, videos, and designs.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rhYWTgOd2\",style:{\"--extracted-r6o4lv\":\"var(--token-bc688661-4164-47f6-bb0d-da4bb8f3ce93, rgb(0, 158, 194))\",\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Qm1zGciFM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wh6ug7\",\"data-styles-preset\":\"h8CzwBybC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc688661-4164-47f6-bb0d-da4bb8f3ce93, rgb(0, 158, 194)))\"},children:\"\\xa9 2025 Dearflow. All Rights Reserved.\"})})},Yre7L7beG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wh6ug7\",\"data-styles-preset\":\"h8CzwBybC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc688661-4164-47f6-bb0d-da4bb8f3ce93, rgb(0, 158, 194)))\"},children:\"\\xa9 2025 Dearflow. All Rights Reserved.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c9sa9g\",layoutDependency:layoutDependency,layoutId:\"cIZCFhyHZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10q64me\",\"data-styles-preset\":\"LBZDvLlK6\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BfzWqlsFS\"},motionChild:true,nodeId:\"he_HeMiCr\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1cx5qbz\",\"data-styles-preset\":\"PzG_EcWxM\",children:\"Term & Service\"})})})}),className:\"framer-1fgpp67\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"he_HeMiCr\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10q64me\",\"data-styles-preset\":\"LBZDvLlK6\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iy_dMD5t3\"},motionChild:true,nodeId:\"N7W0pX3su\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1cx5qbz\",\"data-styles-preset\":\"PzG_EcWxM\",children:\"Cookie Policy\"})})})}),className:\"framer-1erjlvf\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"N7W0pX3su\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10q64me\",\"data-styles-preset\":\"LBZDvLlK6\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"T7hxJsCMD\"},motionChild:true,nodeId:\"gnE3JNjtA\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1cx5qbz\",\"data-styles-preset\":\"PzG_EcWxM\",children:\"Privacy Policy\"})})})}),className:\"framer-1b93xl4\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gnE3JNjtA\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pvJWx.framer-1e9b4xy, .framer-pvJWx .framer-1e9b4xy { display: block; }\",\".framer-pvJWx.framer-3eiw2 { 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: 48px; position: relative; width: 1177px; will-change: var(--framer-will-change-override, transform); }\",\".framer-pvJWx .framer-1wkgcje { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-pvJWx .framer-w7bgaa { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pvJWx .framer-6vetcy { align-content: flex-start; align-items: flex-start; 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: min-content; }\",\".framer-pvJWx .framer-11oaqld { flex: none; height: 48px; overflow: visible; position: relative; width: 193px; }\",\".framer-pvJWx .framer-1tu2koq-container { flex: none; height: 48px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-pvJWx .framer-1lz72at, .framer-pvJWx .framer-1u455r0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 646px; word-break: break-word; word-wrap: break-word; }\",\".framer-pvJWx .framer-6y1qka { align-content: flex-end; align-items: flex-end; 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: min-content; }\",\".framer-pvJWx .framer-g9mjpk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-pvJWx .framer-1e0wp1y, .framer-pvJWx .framer-1a1psvw, .framer-pvJWx .framer-dboew9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: visible; padding: 10px; position: relative; text-decoration: none; width: 44px; }\",\".framer-pvJWx .framer-d3b8i0 { aspect-ratio: 1.072072072072072 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 24px; }\",\".framer-pvJWx .framer-n71rkn { flex: none; height: 16px; position: relative; width: 21px; }\",\".framer-pvJWx .framer-1nbvay9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-pvJWx .framer-1gf1wgn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-pvJWx .framer-1bu8q60, .framer-pvJWx .framer-tkx4df, .framer-pvJWx .framer-1772bvv, .framer-pvJWx .framer-oi306p, .framer-pvJWx .framer-1fgpp67, .framer-pvJWx .framer-1erjlvf, .framer-pvJWx .framer-1b93xl4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-pvJWx .framer-6sncgs { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pvJWx .framer-1uw567r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pvJWx .framer-109a8w6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 30px 30px 30px 0px; position: relative; width: 100%; }\",\".framer-pvJWx .framer-c9sa9g { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pvJWx.framer-3eiw2, .framer-pvJWx .framer-1wkgcje, .framer-pvJWx .framer-6vetcy, .framer-pvJWx .framer-6y1qka, .framer-pvJWx .framer-g9mjpk, .framer-pvJWx .framer-1e0wp1y, .framer-pvJWx .framer-1a1psvw, .framer-pvJWx .framer-dboew9, .framer-pvJWx .framer-1gf1wgn, .framer-pvJWx .framer-6sncgs, .framer-pvJWx .framer-1uw567r, .framer-pvJWx .framer-c9sa9g { gap: 0px; } .framer-pvJWx.framer-3eiw2 > *, .framer-pvJWx .framer-g9mjpk > *, .framer-pvJWx .framer-1e0wp1y > *, .framer-pvJWx .framer-1a1psvw > *, .framer-pvJWx .framer-dboew9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-pvJWx.framer-3eiw2 > :first-child, .framer-pvJWx .framer-g9mjpk > :first-child, .framer-pvJWx .framer-1e0wp1y > :first-child, .framer-pvJWx .framer-1a1psvw > :first-child, .framer-pvJWx .framer-dboew9 > :first-child, .framer-pvJWx .framer-1gf1wgn > :first-child, .framer-pvJWx .framer-c9sa9g > :first-child { margin-left: 0px; } .framer-pvJWx.framer-3eiw2 > :last-child, .framer-pvJWx .framer-g9mjpk > :last-child, .framer-pvJWx .framer-1e0wp1y > :last-child, .framer-pvJWx .framer-1a1psvw > :last-child, .framer-pvJWx .framer-dboew9 > :last-child, .framer-pvJWx .framer-1gf1wgn > :last-child, .framer-pvJWx .framer-c9sa9g > :last-child { margin-right: 0px; } .framer-pvJWx .framer-1wkgcje > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-pvJWx .framer-1wkgcje > :first-child, .framer-pvJWx .framer-6vetcy > :first-child, .framer-pvJWx .framer-6y1qka > :first-child, .framer-pvJWx .framer-6sncgs > :first-child, .framer-pvJWx .framer-1uw567r > :first-child { margin-top: 0px; } .framer-pvJWx .framer-1wkgcje > :last-child, .framer-pvJWx .framer-6vetcy > :last-child, .framer-pvJWx .framer-6y1qka > :last-child, .framer-pvJWx .framer-6sncgs > :last-child, .framer-pvJWx .framer-1uw567r > :last-child { margin-bottom: 0px; } .framer-pvJWx .framer-6vetcy > *, .framer-pvJWx .framer-6y1qka > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-pvJWx .framer-1gf1wgn > *, .framer-pvJWx .framer-c9sa9g > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-pvJWx .framer-6sncgs > *, .framer-pvJWx .framer-1uw567r > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }\",\".framer-pvJWx.framer-v-e48dtz.framer-3eiw2 { padding: 30px 30px 0px 30px; width: 730px; }\",\".framer-pvJWx.framer-v-e48dtz .framer-1wkgcje { max-width: 800px; }\",\".framer-pvJWx.framer-v-e48dtz .framer-w7bgaa { align-content: center; align-items: center; flex-direction: column; }\",\".framer-pvJWx.framer-v-e48dtz .framer-6vetcy, .framer-pvJWx.framer-v-e48dtz .framer-6y1qka, .framer-pvJWx.framer-v-nrlebo .framer-6y1qka { align-content: center; align-items: center; }\",\".framer-pvJWx.framer-v-e48dtz .framer-d3b8i0 { height: var(--framer-aspect-ratio-supported, 23px); }\",\".framer-pvJWx.framer-v-e48dtz .framer-1gf1wgn { justify-content: center; }\",\".framer-pvJWx.framer-v-e48dtz .framer-1uw567r { gap: 11px; }\",\".framer-pvJWx.framer-v-e48dtz .framer-109a8w6 { flex-direction: column; gap: 12px; justify-content: flex-start; order: 0; padding: 24px; }\",\".framer-pvJWx.framer-v-e48dtz .framer-1u455r0 { order: 1; }\",\".framer-pvJWx.framer-v-e48dtz .framer-c9sa9g { justify-content: center; order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pvJWx.framer-v-e48dtz .framer-w7bgaa, .framer-pvJWx.framer-v-e48dtz .framer-1uw567r, .framer-pvJWx.framer-v-e48dtz .framer-109a8w6 { gap: 0px; } .framer-pvJWx.framer-v-e48dtz .framer-w7bgaa > *, .framer-pvJWx.framer-v-e48dtz .framer-w7bgaa > :first-child, .framer-pvJWx.framer-v-e48dtz .framer-w7bgaa > :last-child { margin: 0px; } .framer-pvJWx.framer-v-e48dtz .framer-1uw567r > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-pvJWx.framer-v-e48dtz .framer-1uw567r > :first-child, .framer-pvJWx.framer-v-e48dtz .framer-109a8w6 > :first-child { margin-top: 0px; } .framer-pvJWx.framer-v-e48dtz .framer-1uw567r > :last-child, .framer-pvJWx.framer-v-e48dtz .framer-109a8w6 > :last-child { margin-bottom: 0px; } .framer-pvJWx.framer-v-e48dtz .framer-109a8w6 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-pvJWx.framer-v-nrlebo.framer-3eiw2 { padding: 30px 16px 0px 16px; width: 390px; }\",\".framer-pvJWx.framer-v-nrlebo .framer-1wkgcje { gap: 24px; max-width: 450px; }\",\".framer-pvJWx.framer-v-nrlebo .framer-w7bgaa { align-content: center; align-items: center; flex-direction: column; gap: 24px; justify-content: flex-start; }\",\".framer-pvJWx.framer-v-nrlebo .framer-6vetcy { align-content: center; align-items: center; width: 100%; }\",\".framer-pvJWx.framer-v-nrlebo .framer-1lz72at { width: 100%; }\",\".framer-pvJWx.framer-v-nrlebo .framer-1gf1wgn { flex-direction: column; gap: 10px; }\",\".framer-pvJWx.framer-v-nrlebo .framer-6sncgs { gap: 30px; }\",\".framer-pvJWx.framer-v-nrlebo .framer-1uw567r { gap: 0px; padding: 0px 0px 24px 0px; }\",\".framer-pvJWx.framer-v-nrlebo .framer-109a8w6 { flex-direction: column; gap: 20px; justify-content: flex-start; order: 0; padding: 24px; }\",\".framer-pvJWx.framer-v-nrlebo .framer-1u455r0 { order: 1; width: 100%; }\",\".framer-pvJWx.framer-v-nrlebo .framer-c9sa9g { flex-direction: column; gap: 10px; justify-content: center; order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pvJWx.framer-v-nrlebo .framer-1wkgcje, .framer-pvJWx.framer-v-nrlebo .framer-w7bgaa, .framer-pvJWx.framer-v-nrlebo .framer-1gf1wgn, .framer-pvJWx.framer-v-nrlebo .framer-6sncgs, .framer-pvJWx.framer-v-nrlebo .framer-1uw567r, .framer-pvJWx.framer-v-nrlebo .framer-109a8w6, .framer-pvJWx.framer-v-nrlebo .framer-c9sa9g { gap: 0px; } .framer-pvJWx.framer-v-nrlebo .framer-1wkgcje > *, .framer-pvJWx.framer-v-nrlebo .framer-w7bgaa > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-pvJWx.framer-v-nrlebo .framer-1wkgcje > :first-child, .framer-pvJWx.framer-v-nrlebo .framer-w7bgaa > :first-child, .framer-pvJWx.framer-v-nrlebo .framer-1gf1wgn > :first-child, .framer-pvJWx.framer-v-nrlebo .framer-6sncgs > :first-child, .framer-pvJWx.framer-v-nrlebo .framer-1uw567r > :first-child, .framer-pvJWx.framer-v-nrlebo .framer-109a8w6 > :first-child, .framer-pvJWx.framer-v-nrlebo .framer-c9sa9g > :first-child { margin-top: 0px; } .framer-pvJWx.framer-v-nrlebo .framer-1wkgcje > :last-child, .framer-pvJWx.framer-v-nrlebo .framer-w7bgaa > :last-child, .framer-pvJWx.framer-v-nrlebo .framer-1gf1wgn > :last-child, .framer-pvJWx.framer-v-nrlebo .framer-6sncgs > :last-child, .framer-pvJWx.framer-v-nrlebo .framer-1uw567r > :last-child, .framer-pvJWx.framer-v-nrlebo .framer-109a8w6 > :last-child, .framer-pvJWx.framer-v-nrlebo .framer-c9sa9g > :last-child { margin-bottom: 0px; } .framer-pvJWx.framer-v-nrlebo .framer-1gf1wgn > *, .framer-pvJWx.framer-v-nrlebo .framer-c9sa9g > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-pvJWx.framer-v-nrlebo .framer-6sncgs > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-pvJWx.framer-v-nrlebo .framer-1uw567r > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-pvJWx.framer-v-nrlebo .framer-109a8w6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-pvJWx[data-border=\"true\"]::after, .framer-pvJWx [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 348\n * @framerIntrinsicWidth 1177\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Qm1zGciFM\":{\"layout\":[\"fixed\",\"auto\"]},\"Yre7L7beG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"YGCE1YzxL\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAH0GRmaSS=withCSS(Component,css,\"framer-pvJWx\");export default FramerAH0GRmaSS;FramerAH0GRmaSS.displayName=\"df_Footer 2\";FramerAH0GRmaSS.defaultProps={height:348,width:1177};addPropertyControls(FramerAH0GRmaSS,{variant:{options:[\"NaGWDsmEV\",\"Qm1zGciFM\",\"Yre7L7beG\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},YGCE1YzxL:{defaultValue:\"DearFlow is an AI personal agent that automates tasks by syncing with your inbox, calendar, and to-do lists. It proactively organizes and acts on your behalf, simplifying your life.\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerAH0GRmaSS,[{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\"}]},...Df_LogoFullDarkModeFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAH0GRmaSS\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"YGCE1YzxL\\\":\\\"text\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Qm1zGciFM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Yre7L7beG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"348\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1177\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AH0GRmaSS.map","// Generated by Framer (aba0f78)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Df_Footer2 from\"https://framerusercontent.com/modules/H3PvzT8gHmOpmiQBYAgC/XRribnlnBuoGiYGu1MVT/AH0GRmaSS.js\";import Df_Title from\"https://framerusercontent.com/modules/VvLdP6dgg9VtLAGaWwXU/Uao5WIWjTbekg9c7f8o6/x4N2D86rI.js\";const Df_TitleFonts=getFonts(Df_Title);const Df_Footer2Fonts=getFonts(Df_Footer2);const cycleOrder=[\"J6whcEkFb\",\"YT6Akvxib\",\"lzKjfQIXj\"];const serializationHash=\"framer-D6SAX\";const variantClassNames={J6whcEkFb:\"framer-v-ghuxl7\",lzKjfQIXj:\"framer-v-1hf4rvg\",YT6Akvxib:\"framer-v-11x3ywt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"J6whcEkFb\",\"Variant 2\":\"YT6Akvxib\",\"Variant 3\":\"lzKjfQIXj\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"J6whcEkFb\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"J6whcEkFb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/nUXmwdqIVF6iFLCMe4GjajcS8gc.png\",srcSet:\"https://framerusercontent.com/images/nUXmwdqIVF6iFLCMe4GjajcS8gc.png?scale-down-to=512 512w,https://framerusercontent.com/images/nUXmwdqIVF6iFLCMe4GjajcS8gc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nUXmwdqIVF6iFLCMe4GjajcS8gc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nUXmwdqIVF6iFLCMe4GjajcS8gc.png 2800w\"},className:cx(scopingClassNames,\"framer-ghuxl7\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"J6whcEkFb\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(228, 231, 236)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48,...style},...addPropertyOverrides({lzKjfQIXj:{\"data-framer-name\":\"Variant 3\"},YT6Akvxib:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:`min(1225.8px, ${componentViewport?.width||\"100vw\"} * 0.9)`,y:(componentViewport?.y||0)+80+0,...addPropertyOverrides({lzKjfQIXj:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, (${componentViewport?.width||\"100vw\"} - 32px) * 0.9)`},YT6Akvxib:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, (${componentViewport?.width||\"100vw\"} - 32px) * 0.9)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n3t8h1-container\",layoutDependency:layoutDependency,layoutId:\"OWN3fXlxt-container\",children:/*#__PURE__*/_jsx(Df_Title,{eGVXsde5n:\"Meet Flora – The Personal Assistant That Works for You\",height:\"100%\",id:\"OWN3fXlxt\",IxVUUf3Tu:\"Always stay on top of your schedule, emails, meetings, and more. \\u2028Try Flora now and see how easy life can be when you have the right help.\",layoutId:\"OWN3fXlxt\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"jE2A01xXQ\",VDBXn8dJY:\"\",width:\"100%\",...addPropertyOverrides({lzKjfQIXj:{variant:\"SxXOQuxpW\"},YT6Akvxib:{variant:\"mLRg7acUt\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,width:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,y:(componentViewport?.y||0)+80+235,...addPropertyOverrides({lzKjfQIXj:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+80+215},YT6Akvxib:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+80+215}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-chqxp0-container\",layoutDependency:layoutDependency,layoutId:\"hOCeGt5Sv-container\",children:/*#__PURE__*/_jsx(Df_Footer2,{height:\"100%\",id:\"hOCeGt5Sv\",layoutId:\"hOCeGt5Sv\",style:{width:\"100%\"},variant:\"NaGWDsmEV\",width:\"100%\",YGCE1YzxL:\"DearFlow is an AI personal agent that automates tasks by syncing with your inbox, calendar, and to-do lists. It proactively organizes and acts on your behalf, simplifying your life.\",...addPropertyOverrides({lzKjfQIXj:{variant:\"Yre7L7beG\"},YT6Akvxib:{variant:\"Qm1zGciFM\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-D6SAX.framer-skr7h2, .framer-D6SAX .framer-skr7h2 { display: block; }\",\".framer-D6SAX.framer-ghuxl7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 36px 36px 36px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-D6SAX .framer-1n3t8h1-container { flex: none; height: auto; max-width: 90%; position: relative; width: 1226px; }\",\".framer-D6SAX .framer-chqxp0-container { align-self: stretch; flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-D6SAX.framer-ghuxl7 { gap: 0px; } .framer-D6SAX.framer-ghuxl7 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-D6SAX.framer-ghuxl7 > :first-child { margin-top: 0px; } .framer-D6SAX.framer-ghuxl7 > :last-child { margin-bottom: 0px; } }\",\".framer-D6SAX.framer-v-11x3ywt.framer-ghuxl7 { gap: 40px; padding: 80px 16px 16px 16px; width: 762px; }\",\".framer-D6SAX.framer-v-11x3ywt .framer-1n3t8h1-container, .framer-D6SAX.framer-v-1hf4rvg .framer-1n3t8h1-container { width: 100%; }\",\".framer-D6SAX.framer-v-11x3ywt .framer-chqxp0-container, .framer-D6SAX.framer-v-1hf4rvg .framer-chqxp0-container { align-self: unset; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-D6SAX.framer-v-11x3ywt.framer-ghuxl7 { gap: 0px; } .framer-D6SAX.framer-v-11x3ywt.framer-ghuxl7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-D6SAX.framer-v-11x3ywt.framer-ghuxl7 > :first-child { margin-top: 0px; } .framer-D6SAX.framer-v-11x3ywt.framer-ghuxl7 > :last-child { margin-bottom: 0px; } }\",\".framer-D6SAX.framer-v-1hf4rvg.framer-ghuxl7 { gap: 40px; padding: 80px 16px 16px 16px; width: 366px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-D6SAX.framer-v-1hf4rvg.framer-ghuxl7 { gap: 0px; } .framer-D6SAX.framer-v-1hf4rvg.framer-ghuxl7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-D6SAX.framer-v-1hf4rvg.framer-ghuxl7 > :first-child { margin-top: 0px; } .framer-D6SAX.framer-v-1hf4rvg.framer-ghuxl7 > :last-child { margin-bottom: 0px; } }\",'.framer-D6SAX[data-border=\"true\"]::after, .framer-D6SAX [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 811\n * @framerIntrinsicWidth 1298\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"YT6Akvxib\":{\"layout\":[\"fixed\",\"auto\"]},\"lzKjfQIXj\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerc3Ubhgljy=withCSS(Component,css,\"framer-D6SAX\");export default Framerc3Ubhgljy;Framerc3Ubhgljy.displayName=\"df_footer\";Framerc3Ubhgljy.defaultProps={height:811,width:1298};addPropertyControls(Framerc3Ubhgljy,{variant:{options:[\"J6whcEkFb\",\"YT6Akvxib\",\"lzKjfQIXj\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerc3Ubhgljy,[{explicitInter:true,fonts:[]},...Df_TitleFonts,...Df_Footer2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerc3Ubhgljy\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1298\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YT6Akvxib\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lzKjfQIXj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"811\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (ddd30d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={dfDA7Zb6Z:{hover:true}};const cycleOrder=[\"dfDA7Zb6Z\",\"MUCTUARpt\",\"qYKR0Vjew\"];const serializationHash=\"framer-81aBL\";const variantClassNames={dfDA7Zb6Z:\"framer-v-1f99277\",MUCTUARpt:\"framer-v-197ym8g\",qYKR0Vjew:\"framer-v-qxq76m\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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={Desktop:\"dfDA7Zb6Z\",Phone:\"qYKR0Vjew\",Tablet:\"MUCTUARpt\"};const getProps=({height,id,image,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,d4WvVqw2s:image!==null&&image!==void 0?image:props.d4WvVqw2s,NMldZcRig:link!==null&&link!==void 0?link:props.NMldZcRig,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"dfDA7Zb6Z\"};};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,NMldZcRig,d4WvVqw2s,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dfDA7Zb6Z\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"dfDA7Zb6Z-hover\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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:NMldZcRig,nodeId:\"dfDA7Zb6Z\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1f99277\",className,classNames)} framer-1lgyzub`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"dfDA7Zb6Z\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-93457982-d755-4a9a-989d-2979756456e5, rgb(247, 247, 247))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({\"dfDA7Zb6Z-hover\":{\"data-framer-name\":undefined},MUCTUARpt:{\"data-framer-name\":\"Tablet\"},qYKR0Vjew:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a5jrxz\",\"data-framer-name\":\"Controls\",layoutDependency:layoutDependency,layoutId:\"y_xuac7oy\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2z3i5n\",\"data-framer-name\":\"Control\",layoutDependency:layoutDependency,layoutId:\"geNHyEmqW\",style:{backgroundColor:\"var(--token-c23b1577-ebd1-4101-885b-a9d60fd5fc05, rgb(122, 224, 255))\",borderBottomLeftRadius:9.54,borderBottomRightRadius:9.54,borderTopLeftRadius:9.54,borderTopRightRadius:9.54}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1801q8s\",\"data-framer-name\":\"Control\",layoutDependency:layoutDependency,layoutId:\"OYCqqlo16\",style:{backgroundColor:\"var(--token-b5a8147c-a10a-4d4b-9672-1c30d39ec691, rgb(140, 178, 255))\",borderBottomLeftRadius:9.54,borderBottomRightRadius:9.54,borderTopLeftRadius:9.54,borderTopRightRadius:9.54}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c9sz6z\",\"data-framer-name\":\"Control\",layoutDependency:layoutDependency,layoutId:\"MveGJjV2y\",style:{backgroundColor:\"var(--token-f57a6b0b-752e-46e1-830c-93854056fc7e, rgb(231, 158, 255))\",borderBottomLeftRadius:9.54,borderBottomRightRadius:9.54,borderTopLeftRadius:9.54,borderTopRightRadius:9.54}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u6asyz\",\"data-border\":true,\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"tqdTJjeUG\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-68c05b50-ca7b-4173-82aa-ed42aea1a9b4, rgba(218, 197, 167, 0.15))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:15,borderBottomRightRadius:15},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1krijc4\",\"data-framer-name\":\"Content Wrapper\",layoutDependency:layoutDependency,layoutId:\"T_LYAIlvv\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lz199i\",layoutDependency:layoutDependency,layoutId:\"h9luFBjSo\",children:isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1foysdo\",\"data-border\":true,\"data-framer-name\":\"Badge Icon\",layoutDependency:layoutDependency,layoutId:\"g0eS3AG3r\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-68c05b50-ca7b-4173-82aa-ed42aea1a9b4, rgba(218, 197, 167, 0.15))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-789dc033-d47a-446c-b8b6-91ab3c3fb06b, rgba(218, 197, 167, 0.1))\",borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500,opacity:0,rotate:45},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w5r5eg-container\",layoutDependency:layoutDependency,layoutId:\"GR6_drJwW-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\",height:\"100%\",iconSearch:\"twitter\",iconSelection:\"ArrowUpRight\",id:\"GR6_drJwW\",layoutId:\"GR6_drJwW\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+4+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||516)-8-(11.954111099243164+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||516)-8-19.954111099243164)/1)*1+8))/2+11.954111099243164+8)+(0+(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||516)-8-19.954111099243164)/1)*1-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||516)-8-19.954111099243164)/1)*1-0)*1)/2)),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 8px, 1px)`,...toResponsiveImage(d4WvVqw2s)},className:\"framer-mrt27q\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ZjWs79QZD\",...addPropertyOverrides({\"dfDA7Zb6Z-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+4+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||516)-8-(11.954111099243164+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||516)-8-19.954111099243164)/1)*1+8))/2+11.954111099243164+8)+(0+(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||516)-8-19.954111099243164)/1)*1-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||516)-8-19.954111099243164)/1)*1-0)*1)/2)),sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 8px)`,...toResponsiveImage(d4WvVqw2s)}},qYKR0Vjew:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+4+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)-8-(11.954111099243164+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)-8-19.954111099243164)/1)*1+8))/2+11.954111099243164+8)+(0+(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)-8-19.954111099243164)/1)*1-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)-8-19.954111099243164)/1)*1-0)*1)/2)),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 8px, 1px)`,...toResponsiveImage(d4WvVqw2s)}}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-81aBL.framer-1lgyzub, .framer-81aBL .framer-1lgyzub { display: block; }\",\".framer-81aBL.framer-1f99277 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 516px; justify-content: center; overflow: visible; padding: 4px; position: relative; text-decoration: none; width: 960px; }\",\".framer-81aBL .framer-a5jrxz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px 0px 0px 8px; position: relative; width: min-content; }\",\".framer-81aBL .framer-2z3i5n, .framer-81aBL .framer-1801q8s, .framer-81aBL .framer-c9sz6z { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 8px); position: relative; width: 8px; }\",\".framer-81aBL .framer-1u6asyz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-81aBL .framer-1krijc4 { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 392px; justify-content: space-between; left: 0px; overflow: visible; padding: 24px; position: absolute; width: min-content; z-index: 2; }\",\".framer-81aBL .framer-1lz199i { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: 1px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 904px; }\",\".framer-81aBL .framer-1foysdo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 40px; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: 40px; }\",\".framer-81aBL .framer-1w5r5eg-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-81aBL .framer-mrt27q { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-81aBL.framer-1f99277, .framer-81aBL .framer-a5jrxz, .framer-81aBL .framer-1u6asyz, .framer-81aBL .framer-1lz199i, .framer-81aBL .framer-1foysdo { gap: 0px; } .framer-81aBL.framer-1f99277 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-81aBL.framer-1f99277 > :first-child, .framer-81aBL .framer-1lz199i > :first-child, .framer-81aBL .framer-1foysdo > :first-child { margin-top: 0px; } .framer-81aBL.framer-1f99277 > :last-child, .framer-81aBL .framer-1lz199i > :last-child, .framer-81aBL .framer-1foysdo > :last-child { margin-bottom: 0px; } .framer-81aBL .framer-a5jrxz > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-81aBL .framer-a5jrxz > :first-child, .framer-81aBL .framer-1u6asyz > :first-child { margin-left: 0px; } .framer-81aBL .framer-a5jrxz > :last-child, .framer-81aBL .framer-1u6asyz > :last-child { margin-right: 0px; } .framer-81aBL .framer-1u6asyz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-81aBL .framer-1lz199i > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-81aBL .framer-1foysdo > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\".framer-81aBL.framer-v-197ym8g.framer-1f99277 { cursor: unset; width: 730px; }\",\".framer-81aBL.framer-v-197ym8g .framer-1krijc4 { width: 722px; }\",\".framer-81aBL.framer-v-197ym8g .framer-1lz199i, .framer-81aBL.framer-v-qxq76m .framer-1lz199i { width: 100%; }\",\".framer-81aBL.framer-v-qxq76m.framer-1f99277 { cursor: unset; width: 342px; }\",\".framer-81aBL.framer-v-qxq76m .framer-1krijc4 { padding: 16px; width: 334px; }\",\".framer-81aBL.framer-v-1f99277.hover .framer-1lz199i { gap: 13px; }\",\".framer-81aBL.framer-v-1f99277.hover .framer-mrt27q { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-81aBL.framer-v-1f99277.hover .framer-1lz199i { gap: 0px; } .framer-81aBL.framer-v-1f99277.hover .framer-1lz199i > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-81aBL.framer-v-1f99277.hover .framer-1lz199i > :first-child { margin-top: 0px; } .framer-81aBL.framer-v-1f99277.hover .framer-1lz199i > :last-child { margin-bottom: 0px; } }\",'.framer-81aBL[data-border=\"true\"]::after, .framer-81aBL [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 516\n * @framerIntrinsicWidth 960\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"MUCTUARpt\":{\"layout\":[\"fixed\",\"fixed\"]},\"qYKR0Vjew\":{\"layout\":[\"fixed\",\"fixed\"]},\"KO5UP5TPu\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"NMldZcRig\":\"link\",\"d4WvVqw2s\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFDcTDCkAE=withCSS(Component,css,\"framer-81aBL\");export default FramerFDcTDCkAE;FramerFDcTDCkAE.displayName=\"df_img big 2\";FramerFDcTDCkAE.defaultProps={height:516,width:960};addPropertyControls(FramerFDcTDCkAE,{variant:{options:[\"dfDA7Zb6Z\",\"MUCTUARpt\",\"qYKR0Vjew\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},NMldZcRig:{title:\"Link\",type:ControlType.Link},d4WvVqw2s:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerFDcTDCkAE,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFDcTDCkAE\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"516\",\"framerIntrinsicWidth\":\"960\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MUCTUARpt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qYKR0Vjew\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KO5UP5TPu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"NMldZcRig\\\":\\\"link\\\",\\\"d4WvVqw2s\\\":\\\"image\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FDcTDCkAE.map","import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const useStore=createStore({background:\"#f0f0f0\"});export function TableOverride(Component){return props=>{const[store]=useStore();const extractAndFormatTable=React.useCallback(()=>{const contentDivs=document.querySelectorAll('[data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"]');contentDivs.forEach(contentDiv=>{const codeBlocks=contentDiv.querySelectorAll(\".framer-text.framer-text-module\");codeBlocks.forEach(codeBlock=>{if(codeBlock instanceof HTMLElement){// Get the framer-cb div to access CSS variables\nconst framerCbDiv=codeBlock.querySelector(\".framer-cb\");if(!framerCbDiv)return;// Extract CSS variables from the style attribute\nconst styleAttr=framerCbDiv.getAttribute(\"style\")||\"\";const cssVars={};styleAttr.split(\";\").forEach(pair=>{const[key,value]=pair.split(\":\").map(s=>s.trim());if(key.startsWith(\"--\")){cssVars[key]=value;}});// Determine if we're in light or dark mode\nconst colorScheme=cssVars[\"--cb-color-scheme-dark\"]===\"light\"?\"light\":\"dark\";// Find the div with the border (sp-layout)\nconst borderDiv=codeBlock.querySelector(\".sp-layout\");if(!borderDiv)return;// Extract the border properties and padding from the style attribute\nconst borderStyle=window.getComputedStyle(borderDiv);const borderWidth=borderStyle.borderWidth;const borderColor=borderStyle.borderColor;const borderRadius=borderStyle.borderRadius;const padding=borderStyle.getPropertyValue(\"--cb-padding\")||\"27px\"// Default to 27px if not set\n;// Create an outer container for the border\nconst outerContainer=document.createElement(\"div\");outerContainer.style.cssText=`\n                            border: ${borderWidth} solid ${borderColor};\n                            border-radius: ${borderRadius};\n                            overflow: hidden;\n                            width: 100%;\n                            height: 100%;\n                        `;// Create an inner container for the scrollable content\nconst innerContainer=document.createElement(\"div\");innerContainer.style.cssText=`\n                            overflow: auto;\n                            width: 100%;\n                            height: 100%;\n                        `;// Create the table\nconst table=document.createElement(\"table\");table.style.cssText=`\n                            border-collapse: separate;\n                            border-spacing: 0;\n                            width: 100%;\n                        `;// Convert extracted content to HTML table\nconst codeContent=codeBlock.textContent||\"\";const tableLines=codeContent.split(/\\r?\\n/).filter(line=>line.trim()!==\"\");const tableHtml=tableLines.map((row,index)=>{const cells=row.split(\"|\").map(cell=>cell.trim()).filter(cell=>cell!==\"\");if(index===0){return`<tr>${cells.map((cell,cellIndex)=>`<th${cellIndex===0?' class=\"first-column\"':\"\"}>${cell}</th>`).join(\"\")}</tr>`;}else if(index===1){return\"\"// Skip the separator row\n;}else{while(cells.length<4){cells.push(\"\");}return`<tr>${cells.map((cell,cellIndex)=>`<td${cellIndex===0?' class=\"first-column\"':\"\"}>${cell.replace(/\\<br\\>/g,\"<br>\")}</td>`).join(\"\")}</tr>`;}}).filter(row=>row!==\"\").join(\"\");table.innerHTML=`\n                            <table style=\"width: 100%; border-collapse: separate; border-spacing: 0;\">\n                                ${tableHtml}\n                            </table>\n                        `;// Add styles\nconst style=document.createElement(\"style\");style.textContent=`\n                            table th, table td {\n                                padding: ${padding};\n                                text-align: left;\n                                background-color: ${cssVars[`--cb-colors-surface1-${colorScheme}`]};\n                                border-right: 1px solid ${borderColor};\n                                border-bottom: 1px solid ${borderColor};\n                            }\n                            table th {\n                                font-weight: bold;\n                                color: ${cssVars[`--cb-syntax-color-plain-${colorScheme}`]};\n                                position: sticky;\n                                top: 0;\n                                z-index: 1;\n                            }\n                            .first-column {\n                                white-space: nowrap;\n                                overflow: hidden;\n                                text-overflow: ellipsis;\n                            }\n                            table tr:last-child td {\n                                border-bottom: none;\n                            }\n                            table th:last-child,\n                            table td:last-child {\n                                border-right: none;\n                            }\n                        `;outerContainer.appendChild(style);// Assemble the structure\ninnerContainer.appendChild(table);outerContainer.appendChild(innerContainer);// Replace the content of the code block with the new structure\ncodeBlock.innerHTML=\"\";codeBlock.appendChild(outerContainer);}});});},[store.background]);React.useEffect(()=>{extractAndFormatTable();// Add a MutationObserver to handle dynamic content changes\nconst observer=new MutationObserver(extractAndFormatTable);const contentDivs=document.querySelectorAll('[data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"]');contentDivs.forEach(contentDiv=>{observer.observe(contentDiv,{childList:true,subtree:true});});// Remove white-space: pre-wrap from the Content div and set opacity to 1\nconst style=document.createElement(\"style\");style.textContent=`\n                [data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"] {\n                    white-space: normal !important;\n                    opacity: 1 !important;\n                }\n                [data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"] > div {\n                    white-space: normal !important;\n                    opacity: 1 !important;\n                }\n            `;document.head.appendChild(style);return()=>{observer.disconnect();document.head.removeChild(style);};},[extractAndFormatTable]);return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"TableOverride\":{\"type\":\"reactHoc\",\"name\":\"TableOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Markdown_table_cms.map","// Generated by Framer (eea9f0c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,NotFoundError,PropertyOverrides,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,withCodeBoundaryForOverrides,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{MarkdownTable}from\"https://framerusercontent.com/modules/5UPpLsIptml8Pf2ste2Q/CGv6Dz5yIXHe6rOvd3YV/Table_test.js\";import Topbar2 from\"#framer/local/canvasComponent/avJdPDChr/avJdPDChr.js\";import Df_footer from\"#framer/local/canvasComponent/c3Ubhgljy/c3Ubhgljy.js\";import Df_imgBig2 from\"#framer/local/canvasComponent/FDcTDCkAE/FDcTDCkAE.js\";import Df_Title from\"#framer/local/canvasComponent/x4N2D86rI/x4N2D86rI.js\";import{TableOverride}from\"#framer/local/codeFile/fcqWIML/Markdown_table_cms.js\";import Blog from\"#framer/local/collection/v_Ak1omlQ/v_Ak1omlQ.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle9 from\"#framer/local/css/ALZ91Vqii/ALZ91Vqii.js\";import*as sharedStyle7 from\"#framer/local/css/CqCXFp8X3/CqCXFp8X3.js\";import*as sharedStyle4 from\"#framer/local/css/Ep4NqanIE/Ep4NqanIE.js\";import*as sharedStyle8 from\"#framer/local/css/fSDKiRwKF/fSDKiRwKF.js\";import*as sharedStyle5 from\"#framer/local/css/h8CzwBybC/h8CzwBybC.js\";import*as sharedStyle1 from\"#framer/local/css/Qxst9ljrj/Qxst9ljrj.js\";import*as sharedStyle6 from\"#framer/local/css/sB7znAIra/sB7znAIra.js\";import*as sharedStyle from\"#framer/local/css/ScpPhoa4B/ScpPhoa4B.js\";import*as sharedStyle10 from\"#framer/local/css/sLtJ4mbgk/sLtJ4mbgk.js\";import*as sharedStyle3 from\"#framer/local/css/Sod0wzyyg/Sod0wzyyg.js\";import*as sharedStyle2 from\"#framer/local/css/Tt3xAGcHx/Tt3xAGcHx.js\";import metadataProvider from\"#framer/local/webPageMetadata/zhr1doyXz/zhr1doyXz.js\";const Df_TitleFonts=getFonts(Df_Title);const Df_imgBig2Fonts=getFonts(Df_imgBig2);const RichTextTableOverrideweeyn9=withCodeBoundaryForOverrides(RichText,{nodeId:\"aUkZCvgEh\",override:TableOverride,scopeId:\"zhr1doyXz\"});const MarkdownTableFonts=getFonts(MarkdownTable);const RichTextTableOverride148cngh=withCodeBoundaryForOverrides(RichText,{nodeId:\"fWQBBvQ6A\",override:TableOverride,scopeId:\"zhr1doyXz\"});const RichTextTableOverride1x6d0tr=withCodeBoundaryForOverrides(RichText,{nodeId:\"CQOoyP2Sz\",override:TableOverride,scopeId:\"zhr1doyXz\"});const RichTextTableOverride1s55vuz=withCodeBoundaryForOverrides(RichText,{nodeId:\"bm3H1eRS5\",override:TableOverride,scopeId:\"zhr1doyXz\"});const RichTextTableOverride1ury4dg=withCodeBoundaryForOverrides(RichText,{nodeId:\"mbzuO_ntS\",override:TableOverride,scopeId:\"zhr1doyXz\"});const RichTextTableOverride1c3e05b=withCodeBoundaryForOverrides(RichText,{nodeId:\"uM3n5EsGe\",override:TableOverride,scopeId:\"zhr1doyXz\"});const RichTextTableOverridetoi07k=withCodeBoundaryForOverrides(RichText,{nodeId:\"X9N5YSuaq\",override:TableOverride,scopeId:\"zhr1doyXz\"});const Df_footerFonts=getFonts(Df_footer);const Topbar2Fonts=getFonts(Topbar2);const ContainerWithFX=withFX(Container);const breakpoints={aE2X4ohj9:\"(min-width: 1200px)\",Mu8F2yQ5t:\"(max-width: 809px)\",w4ampBa1n:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-8crAH\";const variantClassNames={aE2X4ohj9:\"framer-v-160tx2r\",Mu8F2yQ5t:\"framer-v-1ro1tdl\",w4ampBa1n:\"framer-v-omo4wt\"};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"medium\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:35,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-64};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"aE2X4ohj9\",Phone:\"Mu8F2yQ5t\",Tablet:\"w4ampBa1n\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"aE2X4ohj9\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"zhr1doyXz\",data:Blog,type:\"Collection\"},select:[{collection:\"zhr1doyXz\",name:\"Lx_TFXkL0\",type:\"Identifier\"},{collection:\"zhr1doyXz\",name:\"zgMbIQQN4\",type:\"Identifier\"},{collection:\"zhr1doyXz\",name:\"ZVhKDtWyE\",type:\"Identifier\"},{collection:\"zhr1doyXz\",name:\"X3LNSX4KS\",type:\"Identifier\"},{collection:\"zhr1doyXz\",name:\"eUzNnyo0r\",type:\"Identifier\"},{collection:\"zhr1doyXz\",name:\"Y6NB_9vuN\",type:\"Identifier\"},{collection:\"zhr1doyXz\",name:\"Ue_U_W51C\",type:\"Identifier\"},{collection:\"zhr1doyXz\",name:\"wI9UlrgeM\",type:\"Identifier\"},{collection:\"zhr1doyXz\",name:\"AkvvPQLrz\",type:\"Identifier\"},{collection:\"zhr1doyXz\",name:\"knb2NriyX\",type:\"Identifier\"},{collection:\"zhr1doyXz\",name:\"GcBAB1SoG\",type:\"Identifier\"},{collection:\"zhr1doyXz\",name:\"KAiAnoWPd\",type:\"Identifier\"},{collection:\"zhr1doyXz\",name:\"QRVWollrF\",type:\"Identifier\"},{collection:\"zhr1doyXz\",name:\"nK60qvf5Q\",type:\"Identifier\"},{collection:\"zhr1doyXz\",name:\"cf5vmWU5U\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"zhr1doyXz\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,X3LNSX4KS=getFromCurrentRouteData(\"X3LNSX4KS\")??\"\",Lx_TFXkL0=getFromCurrentRouteData(\"Lx_TFXkL0\")??\"\",zgMbIQQN4=getFromCurrentRouteData(\"zgMbIQQN4\"),ZVhKDtWyE=getFromCurrentRouteData(\"ZVhKDtWyE\"),eUzNnyo0r=getFromCurrentRouteData(\"eUzNnyo0r\")??\"\",Y6NB_9vuN=getFromCurrentRouteData(\"Y6NB_9vuN\")??\"\",Ue_U_W51C=getFromCurrentRouteData(\"Ue_U_W51C\")??\"\",wI9UlrgeM=getFromCurrentRouteData(\"wI9UlrgeM\")??\"\",AkvvPQLrz=getFromCurrentRouteData(\"AkvvPQLrz\")??\"\",knb2NriyX=getFromCurrentRouteData(\"knb2NriyX\")??\"\",GcBAB1SoG=getFromCurrentRouteData(\"GcBAB1SoG\")??\"\",QRVWollrF=getFromCurrentRouteData(\"QRVWollrF\")??\"\",KAiAnoWPd=getFromCurrentRouteData(\"KAiAnoWPd\")??\"\",nK60qvf5Q=getFromCurrentRouteData(\"nK60qvf5Q\")??\"\",cf5vmWU5U=getFromCurrentRouteData(\"cf5vmWU5U\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const activeLocaleCode=useLocaleCode();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"aE2X4ohj9\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-86940d48-67de-43e2-b492-06b7170ae465, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-160tx2r\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hxy700\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:`max(min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9), 1px)`,y:(componentViewport?.y||0)+0+0+100,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fio77f-container\",nodeId:\"jf_EjVlNt\",scopeId:\"zhr1doyXz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mu8F2yQ5t:{variant:\"nZCyA84ft\"}},children:/*#__PURE__*/_jsx(Df_Title,{eGVXsde5n:Lx_TFXkL0,height:\"100%\",id:\"jf_EjVlNt\",IxVUUf3Tu:toDateString(zgMbIQQN4,activeLocaleCode),layoutId:\"jf_EjVlNt\",style:{width:\"100%\"},variant:\"I40000420:16828;40000420:16151\",VDBXn8dJY:X3LNSX4KS,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ao7ko6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mu8F2yQ5t:{height:257,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"})`},w4ampBa1n:{height:316}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:`max(min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.6), 1px)`,y:(componentViewport?.y||0)+0+345+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vvegnc-container\",nodeId:\"NmbxIlPJY\",scopeId:\"zhr1doyXz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mu8F2yQ5t:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"qYKR0Vjew\"},w4ampBa1n:{variant:\"MUCTUARpt\"}},children:/*#__PURE__*/_jsx(Df_imgBig2,{d4WvVqw2s:toResponsiveImage(ZVhKDtWyE),height:\"100%\",id:\"NmbxIlPJY\",layoutId:\"NmbxIlPJY\",style:{height:\"100%\",width:\"100%\"},variant:\"dfDA7Zb6Z\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cq3bxj\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-clkhga\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\":componentPresets.props[\"TjWyY1vLg\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"zV_0DwniH\"]},children:/*#__PURE__*/_jsx(RichTextTableOverrideweeyn9,{__fromCanvasComponent:true,children:eUzNnyo0r,className:\"framer-weeyn9\",\"data-framer-name\":\"Content #1\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-hgnvgb\",blockquote:\"framer-styles-preset-swyb07\",code:\"framer-styles-preset-1gmgfzt\",h1:\"framer-styles-preset-ajduaq\",h2:\"framer-styles-preset-1mjl6ey\",h3:\"framer-styles-preset-17tigod\",h4:\"framer-styles-preset-3j37cu\",h5:\"framer-styles-preset-3g3m0r\",img:\"framer-styles-preset-4aepss\",p:\"framer-styles-preset-wh6ug7\",table:\"framer-styles-preset-1dnonzh\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-shoj3e-container\",\"data-framer-name\":\"Table #1\",isAuthoredByUser:true,isModuleExternal:true,name:\"Table #1\",nodeId:\"qoi3kMaDz\",scopeId:\"zhr1doyXz\",children:/*#__PURE__*/_jsx(MarkdownTable,{cellBackgroundColor:\"rgb(255, 255, 255)\",cellText:{align:\"left\",color:\"rgb(0, 0, 0)\",framerFont:{},letterSpacing:0,lineHeight:1.2,size:14},cornerRadius:10,firstColumnBackgroundColor:\"rgb(249, 249, 249)\",firstColumnText:{align:\"left\",color:\"rgb(0, 0, 0)\",framerFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},letterSpacing:0,lineHeight:1.2,size:14},headerBackgroundColor:\"var(--token-cdac2b6e-8df0-4d43-a498-4917d6861bf3, rgb(249, 245, 255))\",headerText:{align:\"left\",color:\"var(--token-66648775-4c5d-4199-bbf5-01f0c8fd7447, rgb(37, 0, 92))\",framerFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},letterSpacing:0,lineHeight:1.2,size:16},height:\"100%\",id:\"qoi3kMaDz\",innerBorder:{color:\"rgb(221, 221, 221)\",style:\"solid\",width:1},layoutId:\"qoi3kMaDz\",markdown:Y6NB_9vuN,name:\"Table #1\",outerBorder:{color:\"var(--token-66648775-4c5d-4199-bbf5-01f0c8fd7447, rgb(37, 0, 92))\",style:\"solid\",width:3},style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p1ljiv\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\":componentPresets.props[\"TjWyY1vLg\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"zV_0DwniH\"]},children:/*#__PURE__*/_jsx(RichTextTableOverride148cngh,{__fromCanvasComponent:true,children:Ue_U_W51C,className:\"framer-148cngh\",\"data-framer-name\":\"Content #2\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-hgnvgb\",blockquote:\"framer-styles-preset-swyb07\",code:\"framer-styles-preset-1gmgfzt\",h1:\"framer-styles-preset-ajduaq\",h2:\"framer-styles-preset-1mjl6ey\",h3:\"framer-styles-preset-17tigod\",h4:\"framer-styles-preset-3j37cu\",h5:\"framer-styles-preset-3g3m0r\",img:\"framer-styles-preset-4aepss\",p:\"framer-styles-preset-wh6ug7\",table:\"framer-styles-preset-1dnonzh\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15n11mz-container\",\"data-framer-name\":\"Table #2\",isAuthoredByUser:true,isModuleExternal:true,name:\"Table #2\",nodeId:\"I0nSS3ZkZ\",scopeId:\"zhr1doyXz\",children:/*#__PURE__*/_jsx(MarkdownTable,{cellBackgroundColor:\"rgb(255, 255, 255)\",cellText:{align:\"left\",color:\"rgb(0, 0, 0)\",framerFont:{},letterSpacing:0,lineHeight:1.2,size:14},cornerRadius:10,firstColumnBackgroundColor:\"rgb(249, 249, 249)\",firstColumnText:{align:\"left\",color:\"rgb(0, 0, 0)\",framerFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},letterSpacing:0,lineHeight:1.2,size:14},headerBackgroundColor:\"var(--token-cdac2b6e-8df0-4d43-a498-4917d6861bf3, rgb(249, 245, 255))\",headerText:{align:\"left\",color:\"var(--token-66648775-4c5d-4199-bbf5-01f0c8fd7447, rgb(37, 0, 92))\",framerFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},letterSpacing:0,lineHeight:1.2,size:16},height:\"100%\",id:\"I0nSS3ZkZ\",innerBorder:{color:\"rgb(221, 221, 221)\",style:\"solid\",width:1},layoutId:\"I0nSS3ZkZ\",markdown:wI9UlrgeM,name:\"Table #2\",outerBorder:{color:\"var(--token-66648775-4c5d-4199-bbf5-01f0c8fd7447, rgb(37, 0, 92))\",style:\"solid\",width:3},style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n1ko6d\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\":componentPresets.props[\"TjWyY1vLg\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"zV_0DwniH\"]},children:/*#__PURE__*/_jsx(RichTextTableOverride1x6d0tr,{__fromCanvasComponent:true,children:AkvvPQLrz,className:\"framer-1x6d0tr\",\"data-framer-name\":\"Content #3\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-hgnvgb\",blockquote:\"framer-styles-preset-swyb07\",code:\"framer-styles-preset-1gmgfzt\",h1:\"framer-styles-preset-ajduaq\",h2:\"framer-styles-preset-1mjl6ey\",h3:\"framer-styles-preset-17tigod\",h4:\"framer-styles-preset-3j37cu\",h5:\"framer-styles-preset-3g3m0r\",img:\"framer-styles-preset-4aepss\",p:\"framer-styles-preset-wh6ug7\",table:\"framer-styles-preset-1dnonzh\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-92ekbz\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\":componentPresets.props[\"TjWyY1vLg\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"zV_0DwniH\"]},children:/*#__PURE__*/_jsx(RichTextTableOverride1s55vuz,{__fromCanvasComponent:true,children:knb2NriyX,className:\"framer-1s55vuz\",\"data-framer-name\":\"Content #4\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-hgnvgb\",blockquote:\"framer-styles-preset-swyb07\",code:\"framer-styles-preset-1gmgfzt\",h1:\"framer-styles-preset-ajduaq\",h2:\"framer-styles-preset-1mjl6ey\",h3:\"framer-styles-preset-17tigod\",h4:\"framer-styles-preset-3j37cu\",h5:\"framer-styles-preset-3g3m0r\",img:\"framer-styles-preset-4aepss\",p:\"framer-styles-preset-wh6ug7\",table:\"framer-styles-preset-1dnonzh\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qir1b6-container\",\"data-framer-name\":\"Table #4\",isAuthoredByUser:true,isModuleExternal:true,name:\"Table #4\",nodeId:\"Nn0y0ay6k\",scopeId:\"zhr1doyXz\",children:/*#__PURE__*/_jsx(MarkdownTable,{cellBackgroundColor:\"rgb(255, 255, 255)\",cellText:{align:\"left\",color:\"rgb(0, 0, 0)\",framerFont:{},letterSpacing:0,lineHeight:1.2,size:14},cornerRadius:10,firstColumnBackgroundColor:\"rgb(249, 249, 249)\",firstColumnText:{align:\"left\",color:\"rgb(0, 0, 0)\",framerFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},letterSpacing:0,lineHeight:1.2,size:14},headerBackgroundColor:\"var(--token-cdac2b6e-8df0-4d43-a498-4917d6861bf3, rgb(249, 245, 255))\",headerText:{align:\"left\",color:\"var(--token-66648775-4c5d-4199-bbf5-01f0c8fd7447, rgb(37, 0, 92))\",framerFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},letterSpacing:0,lineHeight:1.2,size:16},height:\"100%\",id:\"Nn0y0ay6k\",innerBorder:{color:\"rgb(221, 221, 221)\",style:\"solid\",width:1},layoutId:\"Nn0y0ay6k\",markdown:GcBAB1SoG,name:\"Table #4\",outerBorder:{color:\"var(--token-66648775-4c5d-4199-bbf5-01f0c8fd7447, rgb(37, 0, 92))\",style:\"solid\",width:3},style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pu800k\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\":componentPresets.props[\"TjWyY1vLg\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"zV_0DwniH\"]},children:/*#__PURE__*/_jsx(RichTextTableOverride1ury4dg,{__fromCanvasComponent:true,children:QRVWollrF,className:\"framer-1ury4dg\",\"data-framer-name\":\"Content #5\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-hgnvgb\",blockquote:\"framer-styles-preset-swyb07\",code:\"framer-styles-preset-1gmgfzt\",h1:\"framer-styles-preset-ajduaq\",h2:\"framer-styles-preset-1mjl6ey\",h3:\"framer-styles-preset-17tigod\",h4:\"framer-styles-preset-3j37cu\",h5:\"framer-styles-preset-3g3m0r\",img:\"framer-styles-preset-4aepss\",p:\"framer-styles-preset-wh6ug7\",table:\"framer-styles-preset-1dnonzh\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5o0wxv-container\",\"data-framer-name\":\"Table #5\",isAuthoredByUser:true,isModuleExternal:true,name:\"Table #5\",nodeId:\"d7JnfevNH\",scopeId:\"zhr1doyXz\",children:/*#__PURE__*/_jsx(MarkdownTable,{cellBackgroundColor:\"rgb(255, 255, 255)\",cellText:{align:\"left\",color:\"rgb(0, 0, 0)\",framerFont:{},letterSpacing:0,lineHeight:1.2,size:14},cornerRadius:10,firstColumnBackgroundColor:\"rgb(249, 249, 249)\",firstColumnText:{align:\"left\",color:\"rgb(0, 0, 0)\",framerFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},letterSpacing:0,lineHeight:1.2,size:14},headerBackgroundColor:\"var(--token-cdac2b6e-8df0-4d43-a498-4917d6861bf3, rgb(249, 245, 255))\",headerText:{align:\"left\",color:\"var(--token-66648775-4c5d-4199-bbf5-01f0c8fd7447, rgb(37, 0, 92))\",framerFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},letterSpacing:0,lineHeight:1.2,size:16},height:\"100%\",id:\"d7JnfevNH\",innerBorder:{color:\"rgb(221, 221, 221)\",style:\"solid\",width:1},layoutId:\"d7JnfevNH\",markdown:KAiAnoWPd,name:\"Table #5\",outerBorder:{color:\"var(--token-66648775-4c5d-4199-bbf5-01f0c8fd7447, rgb(37, 0, 92))\",style:\"solid\",width:3},style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o1o526\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\":componentPresets.props[\"TjWyY1vLg\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"zV_0DwniH\"]},children:/*#__PURE__*/_jsx(RichTextTableOverride1c3e05b,{__fromCanvasComponent:true,children:QRVWollrF,className:\"framer-1c3e05b\",\"data-framer-name\":\"Content #6\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-hgnvgb\",blockquote:\"framer-styles-preset-swyb07\",code:\"framer-styles-preset-1gmgfzt\",h1:\"framer-styles-preset-ajduaq\",h2:\"framer-styles-preset-1mjl6ey\",h3:\"framer-styles-preset-17tigod\",h4:\"framer-styles-preset-3j37cu\",h5:\"framer-styles-preset-3g3m0r\",img:\"framer-styles-preset-4aepss\",p:\"framer-styles-preset-wh6ug7\",table:\"framer-styles-preset-1dnonzh\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-181t2pd-container\",\"data-framer-name\":\"Table #6\",isAuthoredByUser:true,isModuleExternal:true,name:\"Table #6\",nodeId:\"Zgmbyl10m\",scopeId:\"zhr1doyXz\",children:/*#__PURE__*/_jsx(MarkdownTable,{cellBackgroundColor:\"rgb(255, 255, 255)\",cellText:{align:\"left\",color:\"rgb(0, 0, 0)\",framerFont:{},letterSpacing:0,lineHeight:1.2,size:14},cornerRadius:10,firstColumnBackgroundColor:\"rgb(249, 249, 249)\",firstColumnText:{align:\"left\",color:\"rgb(0, 0, 0)\",framerFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},letterSpacing:0,lineHeight:1.2,size:14},headerBackgroundColor:\"var(--token-cdac2b6e-8df0-4d43-a498-4917d6861bf3, rgb(249, 245, 255))\",headerText:{align:\"left\",color:\"var(--token-66648775-4c5d-4199-bbf5-01f0c8fd7447, rgb(37, 0, 92))\",framerFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},letterSpacing:0,lineHeight:1.2,size:16},height:\"100%\",id:\"Zgmbyl10m\",innerBorder:{color:\"rgb(221, 221, 221)\",style:\"solid\",width:1},layoutId:\"Zgmbyl10m\",markdown:nK60qvf5Q,name:\"Table #6\",outerBorder:{color:\"var(--token-66648775-4c5d-4199-bbf5-01f0c8fd7447, rgb(37, 0, 92))\",style:\"solid\",width:3},style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\":componentPresets.props[\"TjWyY1vLg\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"zV_0DwniH\"]},children:/*#__PURE__*/_jsx(RichTextTableOverridetoi07k,{__fromCanvasComponent:true,children:cf5vmWU5U,className:\"framer-toi07k\",\"data-framer-name\":\"Content #7\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-hgnvgb\",blockquote:\"framer-styles-preset-swyb07\",code:\"framer-styles-preset-1gmgfzt\",h1:\"framer-styles-preset-ajduaq\",h2:\"framer-styles-preset-1mjl6ey\",h3:\"framer-styles-preset-17tigod\",h4:\"framer-styles-preset-3j37cu\",h5:\"framer-styles-preset-3g3m0r\",img:\"framer-styles-preset-4aepss\",p:\"framer-styles-preset-wh6ug7\",table:\"framer-styles-preset-1dnonzh\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12ds141\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mu8F2yQ5t:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+2426+0},w4ampBa1n:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,y:(componentViewport?.y||0)+0+2485+24}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:811,width:`max(${componentViewport?.width||\"100vw\"} - 96px, 1px)`,y:(componentViewport?.y||0)+0+2609+48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6fiyto-container\",nodeId:\"nUMLVLtav\",scopeId:\"zhr1doyXz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mu8F2yQ5t:{variant:\"lzKjfQIXj\"},w4ampBa1n:{variant:\"YT6Akvxib\"}},children:/*#__PURE__*/_jsx(Df_footer,{height:\"100%\",id:\"nUMLVLtav\",layoutId:\"nUMLVLtav\",style:{width:\"100%\"},variant:\"J6whcEkFb\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:componentViewport?.width||\"100vw\",y:1,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10lymia-container\",layoutScroll:true,nodeId:\"LnMN9pyDo\",rendersWithMotion:true,scopeId:\"zhr1doyXz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mu8F2yQ5t:{variant:\"cwfCWFTM2\"},w4ampBa1n:{variant:\"OneEFYtAS\"}},children:/*#__PURE__*/_jsx(Topbar2,{echbg4A6e:\"var(--token-86940d48-67de-43e2-b492-06b7170ae465, rgb(255, 255, 255))\",height:\"100%\",id:\"LnMN9pyDo\",layoutId:\"LnMN9pyDo\",style:{width:\"100%\"},variant:\"bX7HM_1rq\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8crAH.framer-17d1hz6, .framer-8crAH .framer-17d1hz6 { display: block; }\",\".framer-8crAH.framer-160tx2r { align-content: center; align-items: center; background-color: var(--token-86940d48-67de-43e2-b492-06b7170ae465, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-8crAH .framer-1hxy700 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 90%; overflow: hidden; padding: 100px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-8crAH .framer-1fio77f-container, .framer-8crAH .framer-6fiyto-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-8crAH .framer-1ao7ko6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 440px; justify-content: center; max-width: 60%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8crAH .framer-1vvegnc-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-8crAH .framer-1cq3bxj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 80%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8crAH .framer-clkhga, .framer-8crAH .framer-1p1ljiv, .framer-8crAH .framer-1n1ko6d, .framer-8crAH .framer-92ekbz, .framer-8crAH .framer-1pu800k, .framer-8crAH .framer-1o1o526 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; max-width: 70%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8crAH .framer-weeyn9, .framer-8crAH .framer-148cngh, .framer-8crAH .framer-1x6d0tr, .framer-8crAH .framer-1s55vuz, .framer-8crAH .framer-1ury4dg, .framer-8crAH .framer-1c3e05b, .framer-8crAH .framer-toi07k { --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-8crAH .framer-shoj3e-container, .framer-8crAH .framer-15n11mz-container, .framer-8crAH .framer-qir1b6-container, .framer-8crAH .framer-5o0wxv-container, .framer-8crAH .framer-181t2pd-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-8crAH .framer-12ds141 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 48px; position: relative; width: 100%; }\",\".framer-8crAH .framer-10lymia-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 1px; z-index: 10; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-8crAH.framer-160tx2r { width: 810px; } .framer-8crAH .framer-1ao7ko6 { height: 316px; } .framer-8crAH .framer-12ds141 { padding: 24px; }}\",\"@media (max-width: 809px) { .framer-8crAH.framer-160tx2r { width: 390px; } .framer-8crAH .framer-1ao7ko6 { height: 257px; max-width: 100%; } .framer-8crAH .framer-1vvegnc-container, .framer-8crAH .framer-clkhga { max-width: 100%; } .framer-8crAH .framer-12ds141 { padding: 0px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8883\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"w4ampBa1n\":{\"layout\":[\"fixed\",\"auto\"]},\"Mu8F2yQ5t\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const Framerzhr1doyXz=withCSS(Component,css,\"framer-8crAH\");export default Framerzhr1doyXz;Framerzhr1doyXz.displayName=\"Page\";Framerzhr1doyXz.defaultProps={height:8883,width:1200};addFonts(Framerzhr1doyXz,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...Df_TitleFonts,...Df_imgBig2Fonts,...MarkdownTableFonts,...Df_footerFonts,...Topbar2Fonts,...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),...getFontsFromSharedStyle(sharedStyle10.fonts),...componentPresets.fonts?.[\"zV_0DwniH\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"zV_0DwniH\"]):[],...componentPresets.fonts?.[\"TjWyY1vLg\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"TjWyY1vLg\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerzhr1doyXz\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w4ampBa1n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Mu8F2yQ5t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"8883\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}