{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/ycRBkUtTGPq2JzTXCzzZ/RnY1QZyrXLPalRBNI0Vr/Comment.js", "ssg:https://framerusercontent.com/modules/kkDbMegkHye3t6qdgrW5/jktN4v6MVOWVZHxyPk2f/capjckZHG.js", "ssg:https://framerusercontent.com/modules/3Ck9TMaoN32MqORN0CBW/kUPstA7g4sZQB5WAiq3o/zPHsZl0I7.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget,motion}from\"framer\";// const AVATAR_URL = \"https://source.boringavatars.com/\"\nconst AVATAR_URL=\"https://framer-university.boringavatars.dev/api/avatar\";const API=\"https://pxwnjmlzfycfhxaecgns.supabase.co/functions/v1/comment\";const LIMIT=2;// Do not change these sentences below without letting me know.\nconst BAD_WORDS=\"Comment contains inappropriate language\";const SPAM=\"Too many comments for today\";const BOT=\"Comment flagged as potential spam or bot activity\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerIntrinsicWidth 600\n * @framerSupportedLayoutHeight auto\n */export default function Comment(props){const{commentId,title,input,publishButton,commentProps,divider,gaps,emptyState}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const[name,setName]=useState(\"\");const[comment,setComment]=useState(\"\");const[isLoading,setIsLoading]=useState(false);const[comments,setComments]=useState([]);const[hasError,setHasError]=useState(false);const[errorMessage,setErrorMessage]=useState(`You can't send more than ${LIMIT} comments per day under this comments section.`);const[isSmallScreen,setIsSmallScreen]=useState(false);const[currentPage,setCurrentPage]=useState(1);const[totalPages,setTotalPages]=useState(1);const[commentsLoaded,setCommentsLoaded]=useState(false);useEffect(()=>{const handleResize=()=>{setIsSmallScreen(typeof window!==\"undefined\"?window.innerWidth<810:false);};handleResize();window.addEventListener(\"resize\",handleResize);return()=>{window.removeEventListener(\"resize\",handleResize);};},[]);useEffect(()=>{const getData=async()=>{try{const{pathname,host}=window.location;const response=await fetch(`${API}?slug=${pathname}&comment_id=${commentId}&domain=${host}&page=${currentPage}`);if(!response.ok){throw`An error has occured: ${response.status}`;}const{data,pagination}=await response.json();setTotalPages(pagination.totalPages);setComments(prev=>[...prev,...data]);setCommentsLoaded(true);}catch(error){console.error(error);}};if(typeof window!==\"undefined\"&&totalPages>=currentPage){getData();}},[currentPage]);const onSubmit=async e=>{try{e.preventDefault();setHasError(false);setIsLoading(true);const{pathname,host}=window.location;const Botpoison=await import(\"@botpoison/browser\");const botpoison=new Botpoison.default({publicKey:\"pk_76fefdd6-9d97-42e8-af8d-ad0f44708404\"});const{solution}=await botpoison.challenge();const response=await fetch(`${API}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({slug:pathname,commentId,domain:host,name,comment,_botpoison:solution})});if(!response.ok){const{error}=await response.json();if(error===BAD_WORDS){setErrorMessage(BAD_WORDS+\".\");}else if(error===SPAM){setErrorMessage(`You can't send more than ${LIMIT} comments per day under this comments section.`);}else if(error===BOT){setErrorMessage(BOT+\".\");}else{setErrorMessage(\"An error has occured.\");throw`An error has occured: ${response.status}`;}setHasError(true);}else{const newComment=await response.json();setComments(prevComments=>[newComment[0],...prevComments]);}}catch(error){console.error(error);}finally{setIsLoading(false);setName(\"\");setComment(\"\");}};const handleCommentChange=event=>setComment(event.target.value);const handleNameChange=event=>setName(event.target.value);const styleRef=useRef(null);useEffect(()=>{const styleString=`#comment_component input::placeholder {\n      color: ${input.placeHolderColor} !important;\n    }`;const styleElement=document.createElement(\"style\");styleElement.innerHTML=styleString;document.head.appendChild(styleElement);styleRef.current=styleElement;return()=>{if(styleRef.current){document.head.removeChild(styleRef.current);}};},[props,input.placeHolderColor]);return /*#__PURE__*/_jsx(\"div\",{id:\"comment_component\",style:{display:\"flex\",flexDirection:\"column\",alignItems:\"start\",gap:\"20px\",...props.style},children:/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",gap:`${gaps.commentSection}px`,width:\"100%\"},children:[title.show&&/*#__PURE__*/_jsx(Title,{color:title.color,font:title.font,text:title.text}),/*#__PURE__*/_jsxs(\"form\",{onSubmit:onSubmit,style:{display:\"flex\",flexDirection:isSmallScreen?\"column\":\"row\",gap:\"8px\",alignItems:\"center\",width:\"100%\"},children:[/*#__PURE__*/_jsx(Input,{id:\"name\",value:name,onChange:handleNameChange,placeholder:input.placeHolderName,property:input,isSmallScreen:isSmallScreen}),/*#__PURE__*/_jsx(Input,{id:\"comment\",value:comment,onChange:handleCommentChange,placeholder:input.placeHolderComment,property:input,isSmallScreen:isSmallScreen}),/*#__PURE__*/_jsx(PublishButton,{isActive:name.length>0&&comment.length>0,property:publishButton,isSmallScreen:isSmallScreen,isCanvas:isCanvas})]}),/*#__PURE__*/_jsx(BreakingLine,{backgroundColor:divider}),/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:\"20px\",alignItems:\"center\",width:\"100%\"},children:[(hasError||isCanvas)&&/*#__PURE__*/_jsx(Error,{comment:commentProps,errorMessage:errorMessage}),(isLoading||isCanvas)&&/*#__PURE__*/_jsx(Loader,{commentProps:commentProps,gaps:gaps,input:input,loaderContent:{name,comment}}),commentsLoaded&&(comments.length===0||isCanvas)&&/*#__PURE__*/_jsx(NoComment,{comment:commentProps,emptyState:emptyState}),/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:`${gaps.commentItems}px`,alignItems:\"center\",width:\"100%\"},children:[isCanvas&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(Content,{commentProps:commentProps,comment:\"This is a placeholder comment. It serves as a temporary ipso facto for representation purposes. It's designed to illustrate what the real content might look like once it's placed. Please remember that the actual content may differ from this placeholder. Thank you for understanding the functional purpose of this placeholder text.\",name:\"Nandi\",date:\"12 minutes ago\",gaps:gaps}),/*#__PURE__*/_jsx(Content,{commentProps:commentProps,comment:\"This is a placeholder comment. It serves as a temporary ipso facto for representation purposes. It's designed to illustrate what the real content might look like once it's placed. Please remember that the actual content may differ from this placeholder. Thank you for understanding the functional purpose of this placeholder text.\",name:\"Cl\\xe9ment\",date:\"22 minutes ago\",gaps:gaps})]}),comments&&comments.map(({comment,name,created_at},index)=>{const date=timeSinceMessageSent(created_at);// Check if this is the position to insert the infiniteScrollRef\nconst isInfiniteScrollPosition=comments.length-index===10;return /*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\"},children:[isInfiniteScrollPosition&&/*#__PURE__*/_jsx(motion.div,{onViewportEnter:()=>setCurrentPage(prev=>prev+1)}),/*#__PURE__*/_jsx(Content,{commentProps:commentProps,comment:comment,name:name,date:date,gaps:gaps},index+created_at)]});})]})]})]})});}const Input=({id,value,onChange,placeholder,property,isSmallScreen})=>{const maxWidth=id===\"name\"&&!isSmallScreen?\"200px\":\"100%\";const borderRadius=property.radiusIsMixed?`${property.radiusTopLeft}px ${property.radiusTopRight}px ${property.radiusBottomRight}px ${property.radiusBottomLeft}px`:`${property.radius}px`;const padding=property.paddingIsMixed?`${property.paddingTopLeft}px ${property.paddingTopRight}px ${property.paddingBottomRight}px ${property.paddingBottomLeft}px`:`${property.padding}px`;const boxShadow=`${property.shadow.x}px ${property.shadow.y}px ${property.shadow.blur}px ${property.shadow.color}`;const handlePaste=e=>e.preventDefault();return /*#__PURE__*/_jsx(\"label\",{htmlFor:id,style:{cursor:\"text\",userSelect:\"none\",display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",gap:\"6px\",width:\"100%\",maxWidth,backgroundColor:property.fill,border:`${property.border.width}px solid ${property.border.color}`,borderRadius,padding,boxShadow,height:property.height===\"auto\"?property.height:`${property.heightNumber}px`},children:/*#__PURE__*/_jsx(\"input\",{id:id,name:id,type:\"text\",placeholder:placeholder,style:{fontSize:\"16px\",fontFamily:\"Inter\",color:property.textColor,backgroundColor:property.fill,outline:\"none\",width:\"100%\",borderWidth:\"0px\",padding:0,...property.font},value:value,onChange:onChange,required:true,onPaste:handlePaste})});};const Title=({color,font,text})=>{return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"row\",width:\"100%\"},children:/*#__PURE__*/_jsx(\"p\",{style:{fontSize:\"21px\",fontFamily:\"Inter\",color,...font,margin:0},children:text})});};const Content=({commentProps,comment,name,date,gaps})=>{const colors=commentProps.image.colors.map(color=>rgbToHex(extractRGBColorFromString(color))).join(\",\");// const image = `${AVATAR_URL}/${\n//     commentProps.image.type\n// }?square&name=${encodeURIComponent(name)}&colors=${colors}`\nconst image=`${AVATAR_URL}?variant=${commentProps.image.type}&square&name=${encodeURIComponent(name)}&colors=${colors}`;return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:\"8px\",width:\"100%\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",alignItems:\"center\",gap:`${gaps.profilePictureAndName}px`,width:\"100%\"},children:[/*#__PURE__*/_jsx(\"img\",{src:image,alt:\"\",style:{width:`${commentProps.image.size}px`,height:`${commentProps.image.size}px`,borderRadius:`${commentProps.image.radius}px`,objectFit:\"cover\"}}),/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",gap:`${gaps.nameAndTime}px`,alignItems:\"center\"},children:[/*#__PURE__*/_jsx(\"p\",{style:{fontSize:\"14px\",fontFamily:\"Inter\",color:commentProps.name.textColor,...commentProps.name.font,margin:0},children:name}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:\"12px\",fontFamily:\"Inter\",color:commentProps.date.textColor,...commentProps.date.font,margin:0},children:date})]})]}),/*#__PURE__*/_jsx(\"div\",{style:{paddingLeft:`${gaps.profilePictureAndName+commentProps.image.size}px`,display:\"flex\",width:\"100%\"},children:/*#__PURE__*/_jsx(\"p\",{style:{fontSize:\"14px\",fontFamily:\"Inter\",lineHeight:\"1.6em\",color:commentProps.body.textColor,...commentProps.body.font,margin:0},children:comment})})]});};const NoComment=({comment,emptyState})=>{return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",gap:\"8px\",padding:\"44px 0\",width:\"100%\"},children:/*#__PURE__*/_jsx(\"p\",{style:{fontSize:\"14px\",fontFamily:\"Inter\",color:comment.body.textColor,textAlign:\"center\",...comment.body.font,margin:0},children:emptyState})});};const Error=({comment,errorMessage})=>{return /*#__PURE__*/_jsx(\"div\",{style:{backgroundColor:\"#e63030\",display:\"flex\",justifyContent:\"center\",position:\"relative\",width:\"100%\",padding:\"7px 12px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{fontSize:\"14px\",fontFamily:\"Inter\",color:comment.body.textColor,textAlign:\"center\",...comment.body.font},children:errorMessage})});};const BreakingLine=({backgroundColor})=>{return /*#__PURE__*/_jsx(\"div\",{style:{backgroundColor,height:\"1px\",width:\"100%\"}});};const PublishButton=({isActive,property,isSmallScreen,isCanvas})=>{const borderRadius=property.radiusIsMixed?`${property.radiusTopLeft}px ${property.radiusTopRight}px ${property.radiusBottomRight}px ${property.radiusBottomLeft}px`:`${property.radius}px`;const padding=property.paddingIsMixed?`${property.paddingTopLeft}px ${property.paddingTopRight}px ${property.paddingBottomRight}px ${property.paddingBottomLeft}px`:`${property.padding}px`;const boxShadow=`${property.shadow.x}px ${property.shadow.y}px ${property.shadow.blur}px ${property.shadow.color}`;return /*#__PURE__*/_jsx(\"div\",{style:{width:isSmallScreen?\"100%\":\"auto\"},children:/*#__PURE__*/_jsx(\"button\",{type:\"submit\",style:{width:isSmallScreen?\"100%\":\"auto\",userSelect:\"none\",backgroundColor:property.fill,border:`${property.border.width}px solid ${property.border.color}`,borderRadius,padding,boxShadow,height:property.height===\"auto\"?\"auto\":`${property.heightNumber}px`,opacity:isActive||isCanvas?1:.6,cursor:isActive?\"pointer\":\"not-allowed\",display:\"flex\",alignItems:\"center\",gap:\"10px\",justifyContent:\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{fontSize:\"14px\",fontFamily:\"Inter\",color:property.textColor,...property.font,margin:0},children:property.label})})});};const Loader=({commentProps,gaps,input,loaderContent})=>{const moveFromLeftToRight={animate:{x:[\"-550%\",\"550%\"],transition:{duration:.05,repeat:Infinity,repeatDelay:1,type:\"spring\",stiffness:300,damping:60,mass:1}}};const borderRadius=input.radiusIsMixed?`${input.radiusTopLeft}px ${input.radiusTopRight}px ${input.radiusBottomRight}px ${input.radiusBottomLeft}px`:`${input.radius}px`;return /*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",width:\"100%\",overflow:\"hidden\",borderRadius},children:[/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",width:\"100%\",height:\"100%\",backgroundColor:input.fill}}),/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",width:\"30%\",height:\"300%\",backgroundColor:input.placeHolderColor,opacity:.05,filter:\"blur(15px)\",zIndex:1,rotate:30,top:\"-100%\"},animate:\"animate\",variants:moveFromLeftToRight}),/*#__PURE__*/_jsx(Content,{commentProps:commentProps,comment:loaderContent.comment,name:loaderContent.name,date:\"12 minutes ago\",gaps:gaps})]});};const timeSinceMessageSent=sentDate=>{const currentDate=new Date;const sentDateTime=new Date(sentDate);const timeDifference=currentDate.getTime()-sentDateTime.getTime();const seconds=Math.floor(timeDifference/1e3);const minutes=Math.floor(seconds/60);const hours=Math.floor(minutes/60);const days=Math.floor(hours/24);if(days>=1){const formattedDate=sentDateTime.toLocaleDateString(\"en-US\");return formattedDate;}else if(hours>=1){return hours===1?\"1 hour ago\":`${hours} hours ago`;}else if(minutes>=1){return minutes===1?\"1 minute ago\":`${minutes} minutes ago`;}else{return\"now\";}};const extractRGBColorFromString=str=>{const rgbRegex=/(rgba|rgb)\\(.*?\\)/g;const match=str.match(rgbRegex);return match?match[0]:\"#ffffff\";};const rgbToHex=rgb=>{const regex=/rgb\\((\\d+),\\s*(\\d+),\\s*(\\d+)\\)/;const match=rgb.match(regex);if(!match){console.error(\"Invalid RGB format\");}const r=parseInt(match[1]);const g=parseInt(match[2]);const b=parseInt(match[3]);const componentToHex=c=>{const hex=c.toString(16);return hex.length===1?\"0\"+hex:hex;};const hexR=componentToHex(r);const hexG=componentToHex(g);const hexB=componentToHex(b);return hexR+hexG+hexB;};const fontProperty={type:ControlType.Font,title:\"Font\",controls:\"extended\"};const colorProperty=(title=\"Color\",defaultValue=\"#fff\")=>{return{title,type:ControlType.Color,defaultValue};};const stringProperty=(title=\"Text\",defaultValue=undefined,description=undefined)=>{return{title,type:ControlType.String,defaultValue,description};};const numberProperty=(title=\"Number\",defaultValue=0,description=undefined)=>{return{title,type:ControlType.Number,defaultValue,description};};const shadowProperty={type:ControlType.Object,controls:{color:colorProperty(\"Color\",\"#000000\"),x:numberProperty(\"X\",0),y:numberProperty(\"Y\",0),blur:numberProperty(\"Blur\",0)}};const borderProperty={type:ControlType.Object,controls:{width:numberProperty(\"Width\",0),color:colorProperty(\"Color\",\"#fff\")}};const paddingProperty=(defaultValue=0)=>{return{type:ControlType.FusedNumber,defaultValue,title:\"Padding\",toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTopLeft\",\"paddingTopRight\",\"paddingBottomRight\",\"paddingBottomLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0};};const radiusProperty=(defaultValue=0)=>{return{type:ControlType.FusedNumber,defaultValue,title:\"Radius\",toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"NW\",\"NE\",\"SE\",\"SW\"],min:0};};const heightProperty={height:{type:ControlType.Enum,defaultValue:\"fixed\",displaySegmentedControl:true,options:[\"auto\",\"fixed\"],optionTitles:[\"Auto\",\"Fixed\"]},heightNumber:{title:\" \",type:ControlType.Number,defaultValue:44,hidden(props){return props.height===\"auto\";}}};addPropertyControls(Comment,{title:{title:\"Title\",type:ControlType.Object,controls:{show:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},text:stringProperty(\"Text\",\"Comments\"),font:fontProperty,color:colorProperty()}},input:{title:\"Input\",type:ControlType.Object,controls:{placeHolderName:stringProperty(\"Input 1\",\"Your name\",\"Placeholder text for the name input.\"),placeHolderComment:stringProperty(\"Input 2\",\"Write your comment here...\",\"Placeholder text for the comment input.\"),font:fontProperty,fill:colorProperty(\"Fill\",\"#161819\"),textColor:colorProperty(\"Text\"),placeHolderColor:colorProperty(\"Placeholder\",\"#9BA1A5\"),padding:paddingProperty(14),radius:radiusProperty(),border:borderProperty,shadow:shadowProperty,...heightProperty}},publishButton:{title:\"Publish\",type:ControlType.Object,controls:{label:stringProperty(\"Label\",\"Publish\"),font:fontProperty,fill:colorProperty(\"Fill\",\"#fff\"),textColor:colorProperty(\"Text\",\"#000000\"),padding:paddingProperty(16),radius:radiusProperty(),border:borderProperty,shadow:shadowProperty,...heightProperty}},commentProps:{title:\"Comments\",type:ControlType.Object,description:\"Delete inappropriate comments [here](https://spamcomments.learnframer.site/).\",controls:{image:{title:\"Avatars\",type:ControlType.Object,controls:{type:{type:ControlType.Enum,defaultValue:\"marble\",displaySegmentedControl:true,segmentedControlDirection:\"vertical\",options:[\"marble\",\"beam\",\"pixel\",\"sunset\",\"ring\",\"bauhaus\"],optionTitles:[\"Marble\",\"Beam\",\"Pixel\",\"Sunset\",\"Ring\",\"Bauhaus\"]},colors:{type:ControlType.Array,control:colorProperty(\"Color\",\"#fff\"),maxCount:5},radius:radiusProperty(14),size:numberProperty(\"Size\",28)}},name:{title:\"Name\",type:ControlType.Object,controls:{font:fontProperty,textColor:colorProperty(\"Text\",\"#fff\")}},date:{title:\"Date\",type:ControlType.Object,controls:{font:fontProperty,textColor:colorProperty(\"Text\",\"rgb(155, 161, 165)\")}},body:{title:\"Body\",type:ControlType.Object,controls:{font:fontProperty,textColor:colorProperty(\"Text\",\"#fff\")}}}},divider:colorProperty(\"Divider\",\"#1E2021\"),gaps:{title:\"Gaps\",type:ControlType.Object,controls:{commentSection:numberProperty(\"Gap 1\",24,\"Gap between title, input, divider, and comments.\"),commentItems:numberProperty(\"Gap 2\",20,\"Gap between comments.\"),profilePictureAndName:numberProperty(\"Gap 3\",12,\"Gap between profile picture and name.\"),nameAndTime:numberProperty(\"Gap 4\",8,\" Gap between name and elapsed time.\")}},emptyState:stringProperty(\"Empty state\",\"No comments yet.\",\"Text displayed under the comment section when no comments have been posted.\"),commentId:stringProperty(\"ID\",undefined,\"If you need help setting the component up [watch this video](https://youtu.be/47VCZ_q0ydI).\")});Comment.displayName=\"Comments Section\";\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Comment\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"auto\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Comment.map", "// Generated by Framer (1a71db7)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Mulish ExtraLight\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Mulish ExtraLight\",source:\"custom\",url:\"https://framerusercontent.com/assets/RFy2T6ZlpOW1j1iCkGJnMVCHCg0.woff2\"}]}];export const css=[\".framer-U20f6 .framer-styles-preset-1488g2o:not(.rich-text-wrapper), .framer-U20f6 .framer-styles-preset-1488g2o.rich-text-wrapper p { --framer-font-family: \\\"Mulish ExtraLight\\\", \\\"Mulish ExtraLight Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-430a5b93-2471-4721-b709-58d633a34d81, #333333); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\"];export const className=\"framer-U20f6\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,RichText,SVG,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CommentsSection from\"https://framerusercontent.com/modules/ycRBkUtTGPq2JzTXCzzZ/RnY1QZyrXLPalRBNI0Vr/Comment.js\";import LargeNavigation from\"#framer/local/canvasComponent/srLHWJfyv/srLHWJfyv.js\";import Footer from\"#framer/local/canvasComponent/Y7XLSeD7e/Y7XLSeD7e.js\";import Authors from\"#framer/local/collection/eE_aoonP4/eE_aoonP4.js\";import Blog from\"#framer/local/collection/gxIcQU_KX/gxIcQU_KX.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle6 from\"#framer/local/css/AI1Wzk7oP/AI1Wzk7oP.js\";import*as sharedStyle9 from\"#framer/local/css/aW7TdzFtV/aW7TdzFtV.js\";import*as sharedStyle8 from\"#framer/local/css/bGJdnF251/bGJdnF251.js\";import*as sharedStyle from\"#framer/local/css/capjckZHG/capjckZHG.js\";import*as sharedStyle4 from\"#framer/local/css/cXA2axsvG/cXA2axsvG.js\";import*as sharedStyle2 from\"#framer/local/css/FVrA6EjXX/FVrA6EjXX.js\";import*as sharedStyle10 from\"#framer/local/css/GfJYSlO5B/GfJYSlO5B.js\";import*as sharedStyle5 from\"#framer/local/css/j1h2Ckoh5/j1h2Ckoh5.js\";import*as sharedStyle11 from\"#framer/local/css/kr1t45Y9P/kr1t45Y9P.js\";import*as sharedStyle1 from\"#framer/local/css/KsAsINQUs/KsAsINQUs.js\";import*as sharedStyle3 from\"#framer/local/css/rfRRBo2fR/rfRRBo2fR.js\";import*as sharedStyle12 from\"#framer/local/css/vd_ZtMiEZ/vd_ZtMiEZ.js\";import*as sharedStyle7 from\"#framer/local/css/yqQIiztiz/yqQIiztiz.js\";import metadataProvider from\"#framer/local/webPageMetadata/zPHsZl0I7/zPHsZl0I7.js\";const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const CommentsSectionFonts=getFonts(CommentsSection);const FooterFonts=getFonts(Footer);const LargeNavigationFonts=getFonts(LargeNavigation);const breakpoints={dlgGRgHBF:\"(min-width: 810px) and (max-width: 1439px)\",rdzZayaE2:\"(min-width: 1440px)\",ToMX8m5g0:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-oumUA\";const variantClassNames={dlgGRgHBF:\"framer-v-5twza1\",rdzZayaE2:\"framer-v-1d17mc2\",ToMX8m5g0:\"framer-v-1h40iee\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={delay:.5,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.025,skewX:0,skewY:0,transition:transition2};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"rdzZayaE2\",Phone:\"ToMX8m5g0\",Tablet:\"dlgGRgHBF\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"rdzZayaE2\"};};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:{constraint:{left:{collection:\"zPHsZl0I7\",name:\"iIZsdGU7C\",type:\"Identifier\"},operator:\"==\",right:{collection:\"iIZsdGU7C\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"zPHsZl0I7\",data:Blog,type:\"Collection\"},right:{alias:\"iIZsdGU7C\",data:Authors,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"zPHsZl0I7\",name:\"cl0U4AomO\",type:\"Identifier\"},{collection:\"zPHsZl0I7\",name:\"bf7H4PAy9\",type:\"Identifier\"},{collection:\"zPHsZl0I7\",name:\"xEzZ2Tx8O\",type:\"Identifier\"},{collection:\"zPHsZl0I7\",name:\"h_eL8kBPR\",type:\"Identifier\"},{collection:\"zPHsZl0I7\",name:\"lSpFNOIB7\",type:\"Identifier\"},{collection:\"zPHsZl0I7\",name:\"p2JL0DWNk\",type:\"Identifier\"},{alias:\"iIZsdGU7C.tqyZ6O4JR\",collection:\"iIZsdGU7C\",name:\"tqyZ6O4JR\",type:\"Identifier\"},{alias:\"iIZsdGU7C.stIyYveEv\",collection:\"iIZsdGU7C\",name:\"stIyYveEv\",type:\"Identifier\"},{alias:\"iIZsdGU7C.pgJY_iVcr\",collection:\"iIZsdGU7C\",name:\"pgJY_iVcr\",type:\"Identifier\"},{alias:\"iIZsdGU7C.bKyqeD41A\",collection:\"iIZsdGU7C\",name:\"bKyqeD41A\",type:\"Identifier\"},{alias:\"iIZsdGU7C.efjvHxP_j\",collection:\"iIZsdGU7C\",name:\"efjvHxP_j\",type:\"Identifier\"},{alias:\"iIZsdGU7C.rdOVU4r4V\",collection:\"iIZsdGU7C\",name:\"rdOVU4r4V\",type:\"Identifier\"},{alias:\"iIZsdGU7C.zIMpU7LGM\",collection:\"iIZsdGU7C\",name:\"zIMpU7LGM\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"zPHsZl0I7\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,bf7H4PAy9=getFromCurrentRouteData(\"bf7H4PAy9\"),h_eL8kBPR=getFromCurrentRouteData(\"h_eL8kBPR\")??\"\",p2JL0DWNk=getFromCurrentRouteData(\"p2JL0DWNk\")??\"\",cl0U4AomO=getFromCurrentRouteData(\"cl0U4AomO\")??\"\",xEzZ2Tx8O=getFromCurrentRouteData(\"xEzZ2Tx8O\")??\"\",lSpFNOIB7=getFromCurrentRouteData(\"lSpFNOIB7\")??\"\",PSFF8dp24,svYix0UKU,iIZsdGU7C_tqyZ6O4JR=getFromCurrentRouteData(\"iIZsdGU7C.tqyZ6O4JR\"),iIZsdGU7C_stIyYveEv=getFromCurrentRouteData(\"iIZsdGU7C.stIyYveEv\")??\"\",iIZsdGU7C_pgJY_iVcr=getFromCurrentRouteData(\"iIZsdGU7C.pgJY_iVcr\")??\"\",iIZsdGU7C_bKyqeD41A=getFromCurrentRouteData(\"iIZsdGU7C.bKyqeD41A\")??\"\",iIZsdGU7C_rdOVU4r4V=getFromCurrentRouteData(\"iIZsdGU7C.rdOVU4r4V\")??\"\",iIZsdGU7C_zIMpU7LGM=getFromCurrentRouteData(\"iIZsdGU7C.zIMpU7LGM\")??\"\",iIZsdGU7C_efjvHxP_j=getFromCurrentRouteData(\"iIZsdGU7C.efjvHxP_j\")??\"\",msD7gmDL1Tfml7mpWG,bf7H4PAy9Tfml7mpWG,cl0U4AomOTfml7mpWG,idTfml7mpWG,LWsnTplCf,...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,sharedStyle11.className,sharedStyle12.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(iIZsdGU7C_rdOVU4r4V);const visible1=isSet(iIZsdGU7C_zIMpU7LGM);const visible2=isSet(iIZsdGU7C_efjvHxP_j);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"rdzZayaE2\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1d17mc2\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"header\",{className:\"framer-1ilg3u6\",\"data-framer-name\":\"MAIN IMAGE\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y0kqtq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dlgGRgHBF:{background:{alt:\"\",fit:\"fill\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 200px)`,...toResponsiveImage(bf7H4PAy9)}},ToMX8m5g0:{background:{alt:\"\",fit:\"fill\",sizes:\"320px\",...toResponsiveImage(bf7H4PAy9)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+140+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 550px) / 2, 1px)`,...toResponsiveImage(bf7H4PAy9)},className:\"framer-3v4pk5\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-p1agl5\",\"data-framer-name\":\"Overlay\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1el3k1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yzhbkx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kcj2hh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dlgGRgHBF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO011bGlzaCBFeHRyYUxpZ2h0\",\"--framer-font-family\":'\"Mulish ExtraLight\", \"Mulish ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-138f3290-fe7b-4952-b339-5a4666859c80, rgb(181, 86, 58))\"},children:\"Behind The Build\"})})},ToMX8m5g0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO011bGlzaCBFeHRyYUxpZ2h0\",\"--framer-font-family\":'\"Mulish ExtraLight\", \"Mulish ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-138f3290-fe7b-4952-b339-5a4666859c80, rgb(181, 86, 58))\"},children:\"Behind The Build\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO011bGlzaCBFeHRyYUxpZ2h0\",\"--framer-font-family\":'\"Mulish ExtraLight\", \"Mulish ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-138f3290-fe7b-4952-b339-5a4666859c80, rgb(181, 86, 58))\"},children:\"Behind The Build\"})}),className:\"framer-1u9l0bt\",fonts:[\"CUSTOM;Mulish ExtraLight\"],text:h_eL8kBPR,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO011bGlzaCBFeHRyYUxpZ2h0\",\"--framer-font-family\":'\"Mulish ExtraLight\", \"Mulish ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-138f3290-fe7b-4952-b339-5a4666859c80, rgb(181, 86, 58))\"},children:\"  \u2022  \"})}),className:\"framer-1u3l5nj\",fonts:[\"CUSTOM;Mulish ExtraLight\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qe2gmr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dlgGRgHBF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO011bGlzaCBFeHRyYUxpZ2h0\",\"--framer-font-family\":'\"Mulish ExtraLight\", \"Mulish ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-138f3290-fe7b-4952-b339-5a4666859c80, rgb(181, 86, 58))\"},children:\"Read Time:\"})})},ToMX8m5g0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO011bGlzaCBFeHRyYUxpZ2h0\",\"--framer-font-family\":'\"Mulish ExtraLight\", \"Mulish ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-138f3290-fe7b-4952-b339-5a4666859c80, rgb(181, 86, 58))\"},children:\"Read Time: \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO011bGlzaCBFeHRyYUxpZ2h0\",\"--framer-font-family\":'\"Mulish ExtraLight\", \"Mulish ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-138f3290-fe7b-4952-b339-5a4666859c80, rgb(181, 86, 58))\"},children:\"Read Time:\"})}),className:\"framer-xxoblw\",fonts:[\"CUSTOM;Mulish ExtraLight\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bjl4zq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ToMX8m5g0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO011bGlzaCBFeHRyYUxpZ2h0\",\"--framer-font-family\":'\"Mulish ExtraLight\", \"Mulish ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"var(--token-138f3290-fe7b-4952-b339-5a4666859c80, rgb(181, 86, 58))\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO011bGlzaCBFeHRyYUxpZ2h0\",\"--framer-font-family\":'\"Mulish ExtraLight\", \"Mulish ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"var(--token-138f3290-fe7b-4952-b339-5a4666859c80, rgb(181, 86, 58))\"},children:\"Content\"})}),className:\"framer-1m3yftv\",\"data-framer-name\":\"4 minutes\",fonts:[\"CUSTOM;Mulish ExtraLight\"],text:p2JL0DWNk,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ToMX8m5g0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO011bGlzaCBFeHRyYUxpZ2h0\",\"--framer-font-family\":'\"Mulish ExtraLight\", \"Mulish ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"var(--token-138f3290-fe7b-4952-b339-5a4666859c80, rgb(181, 86, 58))\"},children:\"minutes\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO011bGlzaCBFeHRyYUxpZ2h0\",\"--framer-font-family\":'\"Mulish ExtraLight\", \"Mulish ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"var(--token-138f3290-fe7b-4952-b339-5a4666859c80, rgb(181, 86, 58))\"},children:\"minutes\"})}),className:\"framer-xgw6k2\",\"data-framer-name\":\"4 minutes\",fonts:[\"CUSTOM;Mulish ExtraLight\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dlgGRgHBF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS01MDA=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-430a5b93-2471-4721-b709-58d633a34d81, rgb(51, 51, 51))\"},children:\"What to Say (and What Not to Say) When Emailing a Professional for Your Home Project\"})})},ToMX8m5g0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS01MDA=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-430a5b93-2471-4721-b709-58d633a34d81, rgb(51, 51, 51))\"},children:\"What to Say (and What Not to Say) When Emailing a Professional for Your Home Project\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS01MDA=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-430a5b93-2471-4721-b709-58d633a34d81, rgb(51, 51, 51))\"},children:\"Parts 05-20\"})}),className:\"framer-knet9y\",\"data-framer-name\":\"Richird Norton photorealistic rendering as real photos\",fonts:[\"GF;Lora-500\"],text:cl0U4AomO,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dlgGRgHBF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1488g2o\",\"data-styles-preset\":\"capjckZHG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Reaching out to a home professional can feel daunting. Learn what to include in your email, how to stand out, and discover 7 customizable templates to hire, follow up, or decline with confidence.\"})})},ToMX8m5g0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1488g2o\",\"data-styles-preset\":\"capjckZHG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Reaching out to a home professional can feel daunting. Learn what to include in your email, how to stand out, and discover 7 customizable templates to hire, follow up, or decline with confidence.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1488g2o\",\"data-styles-preset\":\"capjckZHG\",style:{\"--framer-text-alignment\":\"center\"},children:\"something here\"})}),className:\"framer-5n7w6\",\"data-framer-name\":\"Progressively incentivize cooperative systems through technically sound functionalities. The credibly productivate seamless data.\",fonts:[\"Inter\"],text:xEzZ2Tx8O,verticalAlignment:\"top\",withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-vrz9ys\",\"data-framer-name\":\"CONTENT\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-8m697v\",\"data-framer-appear-id\":\"8m697v\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xjt38d\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"jp8TalyEw\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"IbGaka973\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:lSpFNOIB7,className:\"framer-f7rsqj\",\"data-framer-name\":\"Seamlessly syndicate cutting-edge architectures rather than collaborative collaboration and idea-sharing. Proactively incubate visionary interfaces whereas premium benefits. Seamlessly negotiate ubiquitous leadership skills rather than parallel ideas. Dramatically visualize superior interfaces for best-of-breed alignments. Synergistically formulate performance based users through customized relationships. Interactively deliver cross-platform ROI via granular systems. Intrinsicly enhance effective initiatives vis-a-vis orthogonal outsourcing. Rapidiously monetize market-driven opportunities with multifunctional users. Collaboratively enhance visionary opportunities through revolutionary schemas. Progressively network just in time customer service without real-time scenarios. Synergistically drive e-business leadership with unique synergy. Compellingly seize market positioning ROI and bricks-and-clicks e-markets. Proactively myocardinate timely platforms through distributed ideas. Professionally optimize enabled core competencies for leading-edge sources. Professionally enhance stand-alone leadership with innovative synergy. Rapidiously generate backend experiences vis-a-vis long-term high-impact relationships. Authoritatively supply market-driven mindshare and bricks-and-clicks opportunities. Holisticly create diverse innovation through adaptive communities. Efficiently empower seamless meta-services with impactful opportunities. Distinctively transition virtual outsourcing with focused e-tailers. \u201C Monotonectally seize superior mindshare rather than efficient technology. \u201D Compellingly enhance seamless resources through competitive content. Continually actualize 24/365 alignments for resource-leveling platforms. Energistically enhance high standards in models and professional expertise. Intrinsicly iterate extensible metrics for prospective opportunities. Continually develop leading-edge experiences through quality e-services.\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1p6yl8j\",blockquote:\"framer-styles-preset-gw960t\",code:\"framer-styles-preset-cykre1\",h1:\"framer-styles-preset-1fq450w\",h2:\"framer-styles-preset-ydf9w8\",img:\"framer-styles-preset-1hlxn2t\",p:\"framer-styles-preset-1488g2o\"},verticalAlignment:\"top\",withExternalLayout:true})}),PSFF8dp24&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"jp8TalyEw\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"IbGaka973\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:svYix0UKU,className:\"framer-1ifgmqd\",\"data-framer-name\":\"Seamlessly syndicate cutting-edge architectures rather than collaborative collaboration and idea-sharing. Proactively incubate visionary interfaces whereas premium benefits. Seamlessly negotiate ubiquitous leadership skills rather than parallel ideas. Dramatically visualize superior interfaces for best-of-breed alignments. Synergistically formulate performance based users through customized relationships. Interactively deliver cross-platform ROI via granular systems. Intrinsicly enhance effective initiatives vis-a-vis orthogonal outsourcing. Rapidiously monetize market-driven opportunities with multifunctional users. Collaboratively enhance visionary opportunities through revolutionary schemas. Progressively network just in time customer service without real-time scenarios. Synergistically drive e-business leadership with unique synergy. Compellingly seize market positioning ROI and bricks-and-clicks e-markets. Proactively myocardinate timely platforms through distributed ideas. Professionally optimize enabled core competencies for leading-edge sources. Professionally enhance stand-alone leadership with innovative synergy. Rapidiously generate backend experiences vis-a-vis long-term high-impact relationships. Authoritatively supply market-driven mindshare and bricks-and-clicks opportunities. Holisticly create diverse innovation through adaptive communities. Efficiently empower seamless meta-services with impactful opportunities. Distinctively transition virtual outsourcing with focused e-tailers. \u201C Monotonectally seize superior mindshare rather than efficient technology. \u201D Compellingly enhance seamless resources through competitive content. Continually actualize 24/365 alignments for resource-leveling platforms. Energistically enhance high standards in models and professional expertise. Intrinsicly iterate extensible metrics for prospective opportunities. Continually develop leading-edge experiences through quality e-services.\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1o6wq7q\",blockquote:\"framer-styles-preset-gw960t\",code:\"framer-styles-preset-cykre1\",h1:\"framer-styles-preset-1fq450w\",h2:\"framer-styles-preset-ydf9w8\",h3:\"framer-styles-preset-c6yeeu\",h4:\"framer-styles-preset-1g8h6s3\",h5:\"framer-styles-preset-1ko4xt9\",h6:\"framer-styles-preset-1kv52f8\",img:\"framer-styles-preset-1hlxn2t\",p:\"framer-styles-preset-45ywso\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uz9j53\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-upreo7\",\"data-framer-name\":\"Line\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:862,svg:'<svg width=\"862\" height=\"3\" viewBox=\"-1 -1 862 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.75\" x2=\"860\" y2=\"0.75\" stroke=\"#C4C4C4\" stroke-width=\"0.5\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mbzvk7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x467y0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dlgGRgHBF:{background:{alt:\"\",fit:\"stretch\",pixelHeight:481,pixelWidth:481,sizes:\"50px\",...toResponsiveImage(iIZsdGU7C_tqyZ6O4JR),...{positionX:\"center\",positionY:\"center\"}}},ToMX8m5g0:{background:{alt:\"\",fit:\"stretch\",pixelHeight:481,pixelWidth:481,sizes:\"50px\",...toResponsiveImage(iIZsdGU7C_tqyZ6O4JR),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+640+50+0+0+0+242+0+32+0+0+0),pixelHeight:481,pixelWidth:481,sizes:\"50px\",...toResponsiveImage(iIZsdGU7C_tqyZ6O4JR),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-cqjcbr\",\"data-framer-name\":\"Ellipse 4\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oz3q8t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS03MDA=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"var(--token-430a5b93-2471-4721-b709-58d633a34d81, rgb(51, 51, 51))\"},children:\"Content\"})}),className:\"framer-1sdbupj\",\"data-framer-name\":\"By Jennifer Lawrence Thinker & Designer\",fonts:[\"GF;Lora-700\"],text:iIZsdGU7C_stIyYveEv,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"rgb(108, 117, 125)\"},children:\"Content\"})}),className:\"framer-780pmv\",\"data-framer-name\":\"By Jennifer Lawrence Thinker & Designer\",fonts:[\"GF;Lora-regular\"],text:iIZsdGU7C_pgJY_iVcr,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"jp8TalyEw\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"IbGaka973\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:iIZsdGU7C_bKyqeD41A,className:\"framer-1geexxh\",\"data-framer-name\":\"By Jennifer Lawrence Thinker & Designer\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1o6wq7q\",blockquote:\"framer-styles-preset-gw960t\",code:\"framer-styles-preset-cykre1\",h1:\"framer-styles-preset-1fq450w\",h2:\"framer-styles-preset-ydf9w8\",h3:\"framer-styles-preset-c6yeeu\",h4:\"framer-styles-preset-1g8h6s3\",h5:\"framer-styles-preset-1ko4xt9\",h6:\"framer-styles-preset-1kv52f8\",img:\"framer-styles-preset-1hlxn2t\",p:\"framer-styles-preset-45ywso\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b16cg9\",children:[visible&&/*#__PURE__*/_jsx(Link,{href:iIZsdGU7C_rdOVU4r4V,motionChild:true,nodeId:\"kyTwA8TJB\",openInNewTab:true,scopeId:\"zPHsZl0I7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dlgGRgHBF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30,intrinsicWidth:31,pixelHeight:60,pixelWidth:62,src:\"https://framerusercontent.com/images/OiORaqDTd8CHfgAf5osTJaFjOkE.png\"}},ToMX8m5g0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30,intrinsicWidth:31,pixelHeight:60,pixelWidth:62,src:\"https://framerusercontent.com/images/OiORaqDTd8CHfgAf5osTJaFjOkE.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:30,intrinsicWidth:31,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+640+50+0+0+0+242+0+32+0+356+-15),pixelHeight:60,pixelWidth:62,src:\"https://framerusercontent.com/images/OiORaqDTd8CHfgAf5osTJaFjOkE.png\"},className:\"framer-1e14rue framer-1o9u5wk\",\"data-framer-name\":\"Screenshot_2024_07_18_at_5_51_56\\xe2_AM\"})})}),visible1&&/*#__PURE__*/_jsx(Link,{href:iIZsdGU7C_zIMpU7LGM,motionChild:true,nodeId:\"KKF2b8ZeL\",openInNewTab:true,scopeId:\"zPHsZl0I7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dlgGRgHBF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:28,intrinsicWidth:30,pixelHeight:56,pixelWidth:60,src:\"https://framerusercontent.com/images/bqCIhH8XP0Ir7XFneFaCmjBrs8.png\"}},ToMX8m5g0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:28,intrinsicWidth:30,pixelHeight:56,pixelWidth:60,src:\"https://framerusercontent.com/images/bqCIhH8XP0Ir7XFneFaCmjBrs8.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:28,intrinsicWidth:30,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+640+50+0+0+0+242+0+32+0+356+-14),pixelHeight:56,pixelWidth:60,src:\"https://framerusercontent.com/images/bqCIhH8XP0Ir7XFneFaCmjBrs8.png\"},className:\"framer-151y9o0 framer-1o9u5wk\",\"data-framer-name\":\"Screenshot_2024_07_18_at_5_52_26\\xe2_AM\"})})}),visible2&&/*#__PURE__*/_jsx(Link,{href:iIZsdGU7C_efjvHxP_j,motionChild:true,nodeId:\"N8GL8UpaX\",openInNewTab:true,scopeId:\"zPHsZl0I7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dlgGRgHBF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30,intrinsicWidth:30,pixelHeight:60,pixelWidth:60,src:\"https://framerusercontent.com/images/vGt8YTdW9AwB4vfzDZkeDsURk.png\"}},ToMX8m5g0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30,intrinsicWidth:30,pixelHeight:60,pixelWidth:60,src:\"https://framerusercontent.com/images/vGt8YTdW9AwB4vfzDZkeDsURk.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:30,intrinsicWidth:30,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+640+50+0+0+0+242+0+32+0+356+-15),pixelHeight:60,pixelWidth:60,src:\"https://framerusercontent.com/images/vGt8YTdW9AwB4vfzDZkeDsURk.png\"},className:\"framer-1t0bqct framer-1o9u5wk\",\"data-framer-name\":\"Screenshot_2024_07_18_at_5_52_03\\xe2_AM\"})})})]})]})]})]})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-nu2cn2\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uqh15w-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uLW5pNY2L\",scopeId:\"zPHsZl0I7\",children:/*#__PURE__*/_jsx(CommentsSection,{commentId:\"\",commentProps:{body:{font:{fontFamily:'\"Mulish ExtraLight\", \"Mulish ExtraLight Placeholder\", sans-serif',fontSize:\"14px\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},textColor:\"var(--token-430a5b93-2471-4721-b709-58d633a34d81, rgb(51, 51, 51))\"},date:{font:{fontFamily:'\"Mulish ExtraLight\", \"Mulish ExtraLight Placeholder\", sans-serif',fontSize:\"14px\",letterSpacing:\"0em\",lineHeight:\"1em\"},textColor:\"rgb(155, 161, 165)\"},image:{colors:[\"var(--token-430a5b93-2471-4721-b709-58d633a34d81, rgb(51, 51, 51))\",\"var(--token-197cc87a-2e3b-4ad7-b0d0-6d79d8daa672, rgb(62, 76, 89))\",\"var(--token-37a36cde-517d-421a-aed5-40b767232063, rgb(74, 97, 92))\",\"var(--token-896d9722-8798-4ba0-a541-3e827ecc9e82, rgb(201, 154, 109))\",\"var(--token-138f3290-fe7b-4952-b339-5a4666859c80, rgb(181, 86, 58))\"],radius:14,radiusBottomLeft:14,radiusBottomRight:14,radiusIsMixed:false,radiusTopLeft:14,radiusTopRight:14,size:28,type:\"beam\"},name:{font:{fontFamily:'\"Mulish ExtraBold\", \"Mulish ExtraBold Placeholder\", sans-serif',fontSize:\"14px\",letterSpacing:\"0em\",lineHeight:\"1em\"},textColor:\"var(--token-430a5b93-2471-4721-b709-58d633a34d81, rgb(51, 51, 51))\"}},divider:\"rgba(51, 51, 51, 0)\",emptyState:\"No comments yet.\",gaps:{commentItems:40,commentSection:10,nameAndTime:10,profilePictureAndName:12},height:\"100%\",id:\"uLW5pNY2L\",input:{border:{color:\"rgb(255, 255, 255)\",width:0},fill:\"var(--token-38b10aec-70e8-4189-8253-a1421a47a73a, rgb(229, 229, 229))\",font:{fontFamily:'\"Mulish ExtraLight\", \"Mulish ExtraLight Placeholder\", sans-serif',fontSize:\"14px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"fixed\",heightNumber:44,padding:14,paddingBottomLeft:14,paddingBottomRight:14,paddingIsMixed:false,paddingTopLeft:14,paddingTopRight:14,placeHolderColor:\"rgb(155, 161, 165)\",placeHolderComment:\"Write your comment here...\",placeHolderName:\"Your name\",radius:0,radiusBottomLeft:0,radiusBottomRight:0,radiusIsMixed:false,radiusTopLeft:0,radiusTopRight:0,shadow:{blur:0,color:\"rgb(0, 0, 0)\",x:0,y:0},textColor:\"var(--token-430a5b93-2471-4721-b709-58d633a34d81, rgb(51, 51, 51))\"},layoutId:\"uLW5pNY2L\",publishButton:{border:{color:\"rgb(255, 255, 255)\",width:0},fill:\"var(--token-430a5b93-2471-4721-b709-58d633a34d81, rgb(51, 51, 51))\",font:{fontFamily:'\"Mulish ExtraLight\", \"Mulish ExtraLight Placeholder\", sans-serif',fontSize:\"14px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"fixed\",heightNumber:44,label:\"Publish\",padding:16,paddingBottomLeft:16,paddingBottomRight:16,paddingIsMixed:false,paddingTopLeft:16,paddingTopRight:16,radius:0,radiusBottomLeft:0,radiusBottomRight:0,radiusIsMixed:false,radiusTopLeft:0,radiusTopRight:0,shadow:{blur:0,color:\"rgb(0, 0, 0)\",x:0,y:0},textColor:\"var(--token-38b10aec-70e8-4189-8253-a1421a47a73a, rgb(229, 229, 229))\"},style:{width:\"100%\"},title:{color:\"var(--token-430a5b93-2471-4721-b709-58d633a34d81, rgb(51, 51, 51))\",font:{fontFamily:'\"Lora\", \"Lora Placeholder\", serif',fontSize:\"22px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},show:true,text:\"Comments\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-15rpjlx\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kvuszc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ToMX8m5g0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS03MDA=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"rgb(73, 80, 87)\"},children:\"Related Post\"})}),fonts:[\"GF;Lora-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS02MDA=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"var(--token-430a5b93-2471-4721-b709-58d633a34d81, rgb(51, 51, 51))\"},children:\"Related Posts\"})}),className:\"framer-1f2ayov\",\"data-framer-name\":\"Related Posts\",fonts:[\"GF;Lora-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yz9s03\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dlgGRgHBF:{query:{from:{alias:\"Tfml7mpWG\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"Tfml7mpWG\",name:\"msD7gmDL1\",type:\"Identifier\"},{collection:\"Tfml7mpWG\",name:\"bf7H4PAy9\",type:\"Identifier\"},{collection:\"Tfml7mpWG\",name:\"cl0U4AomO\",type:\"Identifier\"},{collection:\"Tfml7mpWG\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"Tfml7mpWG\",name:\"cl0U4AomO\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:cl0U4AomO},type:\"BinaryOperation\"}},operator:\"and\",right:{left:{collection:\"Tfml7mpWG\",name:\"h_eL8kBPR\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:h_eL8kBPR},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}},ToMX8m5g0:{query:{from:{alias:\"Tfml7mpWG\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"Tfml7mpWG\",name:\"msD7gmDL1\",type:\"Identifier\"},{collection:\"Tfml7mpWG\",name:\"bf7H4PAy9\",type:\"Identifier\"},{collection:\"Tfml7mpWG\",name:\"cl0U4AomO\",type:\"Identifier\"},{collection:\"Tfml7mpWG\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"Tfml7mpWG\",name:\"cl0U4AomO\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:cl0U4AomO},type:\"BinaryOperation\"}},operator:\"and\",right:{left:{collection:\"Tfml7mpWG\",name:\"h_eL8kBPR\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:h_eL8kBPR},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Tfml7mpWG\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"Tfml7mpWG\",name:\"msD7gmDL1\",type:\"Identifier\"},{collection:\"Tfml7mpWG\",name:\"bf7H4PAy9\",type:\"Identifier\"},{collection:\"Tfml7mpWG\",name:\"cl0U4AomO\",type:\"Identifier\"},{collection:\"Tfml7mpWG\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"Tfml7mpWG\",name:\"cl0U4AomO\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:cl0U4AomO},type:\"BinaryOperation\"}},operator:\"and\",right:{left:{collection:\"Tfml7mpWG\",name:\"h_eL8kBPR\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:h_eL8kBPR},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({bf7H4PAy9:bf7H4PAy9Tfml7mpWG,cl0U4AomO:cl0U4AomOTfml7mpWG,id:idTfml7mpWG,msD7gmDL1:msD7gmDL1Tfml7mpWG},index)=>{msD7gmDL1Tfml7mpWG??=\"\";cl0U4AomOTfml7mpWG??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Tfml7mpWG-${idTfml7mpWG}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{msD7gmDL1:msD7gmDL1Tfml7mpWG},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{msD7gmDL1:msD7gmDL1Tfml7mpWG},webPageId:\"zPHsZl0I7\"},motionChild:true,nodeId:\"aPpr7edIZ\",scopeId:\"zPHsZl0I7\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-70150f framer-1o9u5wk\",whileHover:animation2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dlgGRgHBF:{background:{alt:\"\",fit:\"fill\",sizes:`max(${componentViewport?.width||\"100vw\"} - 100px, 1px)`,...toResponsiveImage(bf7H4PAy9Tfml7mpWG)},whileHover:animation2},ToMX8m5g0:{background:{alt:\"\",fit:\"fill\",sizes:\"290px\",...toResponsiveImage(bf7H4PAy9Tfml7mpWG)},whileHover:animation2}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max(${componentViewport?.width||\"100vw\"} - 140px, 1px)`,...toResponsiveImage(bf7H4PAy9Tfml7mpWG)},className:\"framer-b7yorw\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14nptdy\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TG9yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Part 4: Framing\"})}),className:\"framer-1a27pff\",\"data-framer-name\":\"Title\",fonts:[\"GF;Lora-regular\"],text:cl0U4AomOTfml7mpWG,verticalAlignment:\"top\",withExternalLayout:true})]})})})},idTfml7mpWG);})})})})})})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-yrbpgr\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dlgGRgHBF:{y:undefined},ToMX8m5g0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:426,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2320+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3rt6di-container\",nodeId:\"moxZU29BS\",scopeId:\"zPHsZl0I7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dlgGRgHBF:{variant:\"o6scQAq52\"},ToMX8m5g0:{variant:\"T140qlH9r\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"moxZU29BS\",layoutId:\"moxZU29BS\",style:{width:\"100%\"},variant:\"ij4_mZA0N\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k8jdkj-container\",layoutScroll:true,nodeId:\"KtjqGiyTd\",scopeId:\"zPHsZl0I7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dlgGRgHBF:{variant:\"ceRY8uECb\"},ToMX8m5g0:{variant:\"fADrd0i9t\"}},children:/*#__PURE__*/_jsx(LargeNavigation,{height:\"100%\",id:\"KtjqGiyTd\",layoutId:\"KtjqGiyTd\",style:{height:\"100%\",width:\"100%\"},variant:\"jiwFsclpk\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oumUA.framer-1o9u5wk, .framer-oumUA .framer-1o9u5wk { display: block; }\",\".framer-oumUA.framer-1d17mc2 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-oumUA .framer-1ilg3u6 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 140px 250px 0px 250px; position: relative; width: 100%; }\",\".framer-oumUA .framer-1y0kqtq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oumUA .framer-3v4pk5 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: 1 0 0px; height: 500px; position: relative; width: 1px; }\",\".framer-oumUA .framer-p1agl5 { background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oumUA .framer-1el3k1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-oumUA .framer-1yzhbkx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oumUA .framer-1kcj2hh { 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: 0px; position: relative; width: 100%; }\",\".framer-oumUA .framer-1u9l0bt { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-oumUA .framer-1u3l5nj, .framer-oumUA .framer-xxoblw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-oumUA .framer-qe2gmr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 151px; }\",\".framer-oumUA .framer-bjl4zq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-oumUA .framer-1m3yftv, .framer-oumUA .framer-xgw6k2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oumUA .framer-knet9y, .framer-oumUA .framer-5n7w6, .framer-oumUA .framer-f7rsqj, .framer-oumUA .framer-1ifgmqd, .framer-oumUA .framer-1sdbupj, .framer-oumUA .framer-780pmv, .framer-oumUA .framer-1geexxh { --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-oumUA .framer-vrz9ys { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 250px 100px 250px; position: relative; width: 100%; }\",\".framer-oumUA .framer-8m697v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-oumUA .framer-xjt38d { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-oumUA .framer-1uz9j53 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oumUA .framer-upreo7 { flex: none; height: 2px; position: relative; width: 100%; }\",\".framer-oumUA .framer-mbzvk7 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oumUA .framer-1x467y0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oumUA .framer-cqjcbr { aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 50px; }\",\".framer-oumUA .framer-oz3q8t { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-oumUA .framer-1b16cg9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 30px; min-width: 463px; overflow: hidden; padding: 0px 0px 0px 60px; position: relative; width: min-content; }\",\".framer-oumUA .framer-1e14rue { aspect-ratio: 1.0333333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; text-decoration: none; width: 31px; }\",\".framer-oumUA .framer-151y9o0 { aspect-ratio: 1.0714285714285714 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; text-decoration: none; width: 30px; }\",\".framer-oumUA .framer-1t0bqct { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; text-decoration: none; width: 30px; }\",\".framer-oumUA .framer-nu2cn2 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 250px 100px 250px; position: relative; width: 100%; }\",\".framer-oumUA .framer-1uqh15w-container, .framer-oumUA .framer-3rt6di-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-oumUA .framer-15rpjlx { align-content: center; align-items: center; background-color: var(--token-e6231c8a-742e-474f-b980-ab29ceeb894a, rgba(229, 229, 229, 0.3)); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 80px 70px 80px 70px; position: relative; width: 100%; }\",\".framer-oumUA .framer-kvuszc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oumUA .framer-1f2ayov { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-oumUA .framer-1yz9s03 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 75px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oumUA .framer-70150f { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; padding: 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-oumUA .framer-b7yorw { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: 1 0 0px; height: 350px; position: relative; width: 1px; }\",\".framer-oumUA .framer-14nptdy { background-color: rgba(51, 51, 51, 0.5); bottom: -1px; flex: none; height: 350px; left: 0px; overflow: hidden; position: absolute; right: 0px; }\",\".framer-oumUA .framer-1a27pff { bottom: 30px; flex: none; height: auto; left: 30px; position: absolute; right: 30px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-oumUA .framer-yrbpgr { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oumUA .framer-k8jdkj-container { flex: none; height: 100px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oumUA.framer-1d17mc2, .framer-oumUA .framer-1ilg3u6, .framer-oumUA .framer-1y0kqtq, .framer-oumUA .framer-1el3k1, .framer-oumUA .framer-1yzhbkx, .framer-oumUA .framer-1kcj2hh, .framer-oumUA .framer-qe2gmr, .framer-oumUA .framer-bjl4zq, .framer-oumUA .framer-vrz9ys, .framer-oumUA .framer-8m697v, .framer-oumUA .framer-xjt38d, .framer-oumUA .framer-1uz9j53, .framer-oumUA .framer-mbzvk7, .framer-oumUA .framer-1x467y0, .framer-oumUA .framer-oz3q8t, .framer-oumUA .framer-1b16cg9, .framer-oumUA .framer-nu2cn2, .framer-oumUA .framer-15rpjlx, .framer-oumUA .framer-kvuszc, .framer-oumUA .framer-1yz9s03, .framer-oumUA .framer-yrbpgr { gap: 0px; } .framer-oumUA.framer-1d17mc2 > *, .framer-oumUA .framer-oz3q8t > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oumUA.framer-1d17mc2 > :first-child, .framer-oumUA .framer-1ilg3u6 > :first-child, .framer-oumUA .framer-1el3k1 > :first-child, .framer-oumUA .framer-1yzhbkx > :first-child, .framer-oumUA .framer-vrz9ys > :first-child, .framer-oumUA .framer-xjt38d > :first-child, .framer-oumUA .framer-1uz9j53 > :first-child, .framer-oumUA .framer-mbzvk7 > :first-child, .framer-oumUA .framer-oz3q8t > :first-child, .framer-oumUA .framer-nu2cn2 > :first-child, .framer-oumUA .framer-15rpjlx > :first-child, .framer-oumUA .framer-kvuszc > :first-child, .framer-oumUA .framer-yrbpgr > :first-child { margin-top: 0px; } .framer-oumUA.framer-1d17mc2 > :last-child, .framer-oumUA .framer-1ilg3u6 > :last-child, .framer-oumUA .framer-1el3k1 > :last-child, .framer-oumUA .framer-1yzhbkx > :last-child, .framer-oumUA .framer-vrz9ys > :last-child, .framer-oumUA .framer-xjt38d > :last-child, .framer-oumUA .framer-1uz9j53 > :last-child, .framer-oumUA .framer-mbzvk7 > :last-child, .framer-oumUA .framer-oz3q8t > :last-child, .framer-oumUA .framer-nu2cn2 > :last-child, .framer-oumUA .framer-15rpjlx > :last-child, .framer-oumUA .framer-kvuszc > :last-child, .framer-oumUA .framer-yrbpgr > :last-child { margin-bottom: 0px; } .framer-oumUA .framer-1ilg3u6 > *, .framer-oumUA .framer-1el3k1 > *, .framer-oumUA .framer-1yzhbkx > *, .framer-oumUA .framer-vrz9ys > *, .framer-oumUA .framer-nu2cn2 > *, .framer-oumUA .framer-15rpjlx > *, .framer-oumUA .framer-yrbpgr > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-oumUA .framer-1y0kqtq > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-oumUA .framer-1y0kqtq > :first-child, .framer-oumUA .framer-1kcj2hh > :first-child, .framer-oumUA .framer-qe2gmr > :first-child, .framer-oumUA .framer-bjl4zq > :first-child, .framer-oumUA .framer-8m697v > :first-child, .framer-oumUA .framer-1x467y0 > :first-child, .framer-oumUA .framer-1b16cg9 > :first-child, .framer-oumUA .framer-1yz9s03 > :first-child { margin-left: 0px; } .framer-oumUA .framer-1y0kqtq > :last-child, .framer-oumUA .framer-1kcj2hh > :last-child, .framer-oumUA .framer-qe2gmr > :last-child, .framer-oumUA .framer-bjl4zq > :last-child, .framer-oumUA .framer-8m697v > :last-child, .framer-oumUA .framer-1x467y0 > :last-child, .framer-oumUA .framer-1b16cg9 > :last-child, .framer-oumUA .framer-1yz9s03 > :last-child { margin-right: 0px; } .framer-oumUA .framer-1kcj2hh > *, .framer-oumUA .framer-qe2gmr > *, .framer-oumUA .framer-1b16cg9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oumUA .framer-bjl4zq > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-oumUA .framer-8m697v > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-oumUA .framer-xjt38d > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-oumUA .framer-1uz9j53 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-oumUA .framer-mbzvk7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-oumUA .framer-1x467y0 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-oumUA .framer-kvuszc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-oumUA .framer-1yz9s03 > * { margin: 0px; margin-left: calc(75px / 2); margin-right: calc(75px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,\"@media (min-width: 810px) and (max-width: 1439px) { .framer-oumUA.framer-1d17mc2 { width: 810px; } .framer-oumUA .framer-1ilg3u6 { padding: 140px 100px 0px 100px; } .framer-oumUA .framer-1y0kqtq { flex-direction: column; justify-content: flex-start; } .framer-oumUA .framer-3v4pk5 { flex: none; order: 1; width: 100%; } .framer-oumUA .framer-1el3k1 { flex: none; order: 0; width: 100%; } .framer-oumUA .framer-1yzhbkx { order: 0; } .framer-oumUA .framer-vrz9ys { padding: 50px 100px 80px 100px; } .framer-oumUA .framer-nu2cn2 { padding: 0px 100px 100px 100px; } .framer-oumUA .framer-15rpjlx { height: min-content; padding: 80px 50px 80px 50px; } .framer-oumUA .framer-1yz9s03 { gap: 50px; } .framer-oumUA .framer-70150f { gap: 40px; justify-content: flex-start; } .framer-oumUA .framer-b7yorw { height: 320px; will-change: var(--framer-will-change-effect-override, transform); } .framer-oumUA .framer-14nptdy { bottom: 0px; height: 320px; } .framer-oumUA .framer-1a27pff { bottom: 25px; left: 25px; right: 25px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oumUA .framer-1y0kqtq, .framer-oumUA .framer-1yz9s03, .framer-oumUA .framer-70150f { gap: 0px; } .framer-oumUA .framer-1y0kqtq > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-oumUA .framer-1y0kqtq > :first-child { margin-top: 0px; } .framer-oumUA .framer-1y0kqtq > :last-child { margin-bottom: 0px; } .framer-oumUA .framer-1yz9s03 > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-oumUA .framer-1yz9s03 > :first-child, .framer-oumUA .framer-70150f > :first-child { margin-left: 0px; } .framer-oumUA .framer-1yz9s03 > :last-child, .framer-oumUA .framer-70150f > :last-child { margin-right: 0px; } .framer-oumUA .framer-70150f > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }}\",\"@media (max-width: 809px) { .framer-oumUA.framer-1d17mc2 { width: 390px; } .framer-oumUA .framer-1ilg3u6 { padding: 140px 35px 0px 35px; width: 390px; } .framer-oumUA .framer-1y0kqtq { flex-direction: column; } .framer-oumUA .framer-3v4pk5 { flex: none; order: 1; width: 100%; } .framer-oumUA .framer-1el3k1 { flex: none; gap: 25px; order: 0; width: 100%; } .framer-oumUA .framer-1kcj2hh { flex-direction: column; gap: 0px; } .framer-oumUA .framer-qe2gmr { gap: 4px; width: 138px; } .framer-oumUA .framer-vrz9ys { padding: 30px 35px 50px 35px; } .framer-oumUA .framer-mbzvk7 { justify-content: flex-start; } .framer-oumUA .framer-1x467y0 { order: 0; } .framer-oumUA .framer-1b16cg9 { gap: 5px; min-width: unset; order: 1; width: 100%; } .framer-oumUA .framer-1e14rue { height: var(--framer-aspect-ratio-supported, 24px); order: 0; width: 25px; } .framer-oumUA .framer-151y9o0 { height: var(--framer-aspect-ratio-supported, 23px); order: 1; width: 25px; } .framer-oumUA .framer-1t0bqct { height: var(--framer-aspect-ratio-supported, 25px); order: 2; width: 25px; } .framer-oumUA .framer-nu2cn2 { padding: 60px 35px 60px 35px; } .framer-oumUA .framer-15rpjlx { height: min-content; padding: 80px 50px 80px 50px; } .framer-oumUA .framer-kvuszc { width: 290px; } .framer-oumUA .framer-1yz9s03 { flex-direction: column; gap: 50px; } .framer-oumUA .framer-70150f { flex: none; width: 100%; } .framer-oumUA .framer-b7yorw { flex: none; height: 290px; width: 290px; will-change: var(--framer-will-change-effect-override, transform); } .framer-oumUA .framer-14nptdy { bottom: 0px; height: 289px; } .framer-oumUA .framer-1a27pff { bottom: 25px; left: 25px; right: 25px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oumUA .framer-1y0kqtq, .framer-oumUA .framer-1el3k1, .framer-oumUA .framer-1kcj2hh, .framer-oumUA .framer-qe2gmr, .framer-oumUA .framer-1b16cg9, .framer-oumUA .framer-1yz9s03 { gap: 0px; } .framer-oumUA .framer-1y0kqtq > *, .framer-oumUA .framer-1yz9s03 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-oumUA .framer-1y0kqtq > :first-child, .framer-oumUA .framer-1el3k1 > :first-child, .framer-oumUA .framer-1kcj2hh > :first-child, .framer-oumUA .framer-1yz9s03 > :first-child { margin-top: 0px; } .framer-oumUA .framer-1y0kqtq > :last-child, .framer-oumUA .framer-1el3k1 > :last-child, .framer-oumUA .framer-1kcj2hh > :last-child, .framer-oumUA .framer-1yz9s03 > :last-child { margin-bottom: 0px; } .framer-oumUA .framer-1el3k1 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-oumUA .framer-1kcj2hh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oumUA .framer-qe2gmr > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-oumUA .framer-qe2gmr > :first-child, .framer-oumUA .framer-1b16cg9 > :first-child { margin-left: 0px; } .framer-oumUA .framer-qe2gmr > :last-child, .framer-oumUA .framer-1b16cg9 > :last-child { margin-right: 0px; } .framer-oumUA .framer-1b16cg9 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2968\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dlgGRgHBF\":{\"layout\":[\"fixed\",\"auto\"]},\"ToMX8m5g0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerzPHsZl0I7=withCSS(Component,css,\"framer-oumUA\");export default FramerzPHsZl0I7;FramerzPHsZl0I7.displayName=\"Blog Detail\";FramerzPHsZl0I7.defaultProps={height:2968,width:1440};addFonts(FramerzPHsZl0I7,[{explicitInter:true,fonts:[{family:\"Mulish ExtraLight\",source:\"custom\",url:\"https://framerusercontent.com/assets/RFy2T6ZlpOW1j1iCkGJnMVCHCg0.woff2\"},{family:\"Lora\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lora/v35/0QI6MX1D_JOuGQbT0gvTJPa787wsuyJDmKxemMeZ.woff2\",weight:\"500\"},{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:\"Lora\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lora/v35/0QI6MX1D_JOuGQbT0gvTJPa787z5vCJDmKxemMeZ.woff2\",weight:\"700\"},{family:\"Lora\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lora/v35/0QI6MX1D_JOuGQbT0gvTJPa787weuyJDmKxemMeZ.woff2\",weight:\"400\"},{family:\"Lora\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/YQA3KKRVULCXJDCXSAONFQCA74AMMQFS/RGNGUOW44MB34GT7X2FQPGZNLW2Z3P3F/ZAXBVAFTWGWMVEZN7M2EPCUJJ4KGZZCI.woff2\",weight:\"400\"},{family:\"Mulish ExtraBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/qWngLC5crA7KVEYkz2e5zjZo.woff2\"},{family:\"Lora\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lora/v35/0QI6MX1D_JOuGQbT0gvTJPa787zAvCJDmKxemMeZ.woff2\",weight:\"600\"}]},...CommentsSectionFonts,...FooterFonts,...LargeNavigationFonts,...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),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...componentPresets.fonts?.[\"jp8TalyEw\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"jp8TalyEw\"]):[],...componentPresets.fonts?.[\"IbGaka973\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"IbGaka973\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzPHsZl0I7\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dlgGRgHBF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ToMX8m5g0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"2968\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["AVATAR_URL", "API", "LIMIT", "BAD_WORDS", "SPAM", "BOT", "Comment", "props", "commentId", "title", "input", "publishButton", "commentProps", "divider", "gaps", "emptyState", "isCanvas", "RenderTarget", "name", "setName", "ye", "comment", "setComment", "isLoading", "setIsLoading", "comments", "setComments", "hasError", "setHasError", "errorMessage", "setErrorMessage", "isSmallScreen", "setIsSmallScreen", "currentPage", "setCurrentPage", "totalPages", "setTotalPages", "commentsLoaded", "setCommentsLoaded", "ue", "handleResize", "window", "getData", "pathname", "host", "response", "data", "pagination", "prev", "error", "onSubmit", "e", "Botpoison", "botpoison", "solution", "newComment", "prevComments", "handleCommentChange", "event", "handleNameChange", "styleRef", "pe", "styleString", "styleElement", "p", "u", "Title", "Input", "PublishButton", "BreakingLine", "Error", "Loader", "NoComment", "l", "Content", "created_at", "index", "date", "timeSinceMessageSent", "isInfiniteScrollPosition", "motion", "id", "value", "onChange", "placeholder", "property", "maxWidth", "borderRadius", "padding", "boxShadow", "handlePaste", "color", "font", "text", "colors", "rgbToHex", "extractRGBColorFromString", "image", "backgroundColor", "isActive", "loaderContent", "moveFromLeftToRight", "sentDate", "currentDate", "sentDateTime", "timeDifference", "seconds", "minutes", "hours", "str", "rgbRegex", "match", "rgb", "regex", "r", "g", "b", "componentToHex", "c", "hex", "hexR", "hexG", "hexB", "fontProperty", "ControlType", "colorProperty", "defaultValue", "stringProperty", "description", "numberProperty", "shadowProperty", "borderProperty", "paddingProperty", "radiusProperty", "heightProperty", "addPropertyControls", "fontStore", "fonts", "css", "className", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "CommentsSectionFonts", "getFonts", "Comment", "FooterFonts", "Y7XLSeD7e_default", "LargeNavigationFonts", "srLHWJfyv_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "animation", "animation1", "isSet", "transition2", "animation2", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "gxIcQU_KX_default", "eE_aoonP4_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "bf7H4PAy9", "h_eL8kBPR", "p2JL0DWNk", "cl0U4AomO", "xEzZ2Tx8O", "lSpFNOIB7", "PSFF8dp24", "svYix0UKU", "iIZsdGU7C_tqyZ6O4JR", "iIZsdGU7C_stIyYveEv", "iIZsdGU7C_pgJY_iVcr", "iIZsdGU7C_bKyqeD41A", "iIZsdGU7C_rdOVU4r4V", "iIZsdGU7C_zIMpU7LGM", "iIZsdGU7C_efjvHxP_j", "msD7gmDL1Tfml7mpWG", "bf7H4PAy9Tfml7mpWG", "cl0U4AomOTfml7mpWG", "idTfml7mpWG", "LWsnTplCf", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "visible", "visible1", "visible2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "Image2", "getLoadingLazyAtYPosition", "x", "RichText2", "MotionDivWithOptimizedAppearEffect", "ComponentPresetsProvider", "SVG", "Link", "ComponentViewportProvider", "Container", "Comment", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Y7XLSeD7e_default", "srLHWJfyv_default", "css", "FramerzPHsZl0I7", "withCSS", "zPHsZl0I7_default", "addFonts", "CommentsSectionFonts", "FooterFonts", "LargeNavigationFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
