{"version":3,"file":"H9l6ZeKdWK-3mS9XBFfqrD5uTRljHYM0QL7ffzRHSds.DSewowg4.mjs","names":["props","_Fragment","comment","name","NavigationMenu","CommentsSection","Footer","props","Blog","metadata","className","PropertyOverrides","Image","css"],"sources":["https:/framerusercontent.com/modules/ycRBkUtTGPq2JzTXCzzZ/RnY1QZyrXLPalRBNI0Vr/Comment.js","https:/framerusercontent.com/modules/Xx6jEwNRLkzfuO6yOQ0V/h12E6yar6fhkWmbM2Bwn/vh3tSXqwi.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 (48da836)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PropertyOverrides,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import CommentsSection from\"https://framerusercontent.com/modules/ycRBkUtTGPq2JzTXCzzZ/RnY1QZyrXLPalRBNI0Vr/Comment.js\";import Footer from\"#framer/local/canvasComponent/MRKeIHOqs/MRKeIHOqs.js\";import NavigationMenu from\"#framer/local/canvasComponent/szjLvehmX/szjLvehmX.js\";import Blog from\"#framer/local/collection/zvAzfteB3/zvAzfteB3.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle6 from\"#framer/local/css/b0Usr0v5R/b0Usr0v5R.js\";import*as sharedStyle4 from\"#framer/local/css/CtTQj22xR/CtTQj22xR.js\";import*as sharedStyle10 from\"#framer/local/css/DOxSJERbP/DOxSJERbP.js\";import*as sharedStyle5 from\"#framer/local/css/eQGrRzxr9/eQGrRzxr9.js\";import*as sharedStyle7 from\"#framer/local/css/HGYGIx0tx/HGYGIx0tx.js\";import*as sharedStyle2 from\"#framer/local/css/IlgtVOhxk/IlgtVOhxk.js\";import*as sharedStyle9 from\"#framer/local/css/jwD9bI3VJ/jwD9bI3VJ.js\";import*as sharedStyle8 from\"#framer/local/css/lnwqQ48gs/lnwqQ48gs.js\";import*as sharedStyle1 from\"#framer/local/css/MoRw7VIWb/MoRw7VIWb.js\";import*as sharedStyle from\"#framer/local/css/t31tD8NFN/t31tD8NFN.js\";import*as sharedStyle3 from\"#framer/local/css/UCFCGQugH/UCFCGQugH.js\";import metadataProvider from\"#framer/local/webPageMetadata/vh3tSXqwi/vh3tSXqwi.js\";const NavigationMenuFonts=getFonts(NavigationMenu);const CommentsSectionFonts=getFonts(CommentsSection);const FooterFonts=getFonts(Footer);const breakpoints={gNgjusKUC:\"(min-width: 810px) and (max-width: 1199px)\",TWESFH6Ds:\"(max-width: 809px)\",VQV0kIxf0:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-hE2vd\";const variantClassNames={gNgjusKUC:\"framer-v-374fza\",TWESFH6Ds:\"framer-v-pf7yrc\",VQV0kIxf0:\"framer-v-1ktnz6n\"};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={Desktop:\"VQV0kIxf0\",Phone:\"TWESFH6Ds\",Tablet:\"gNgjusKUC\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"VQV0kIxf0\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"vh3tSXqwi\",data:Blog,type:\"Collection\"},select:[{collection:\"vh3tSXqwi\",name:\"P79UfHUgJ\",type:\"Identifier\"},{collection:\"vh3tSXqwi\",name:\"KYWiZtbJZ\",type:\"Identifier\"},{collection:\"vh3tSXqwi\",name:\"qrsJVgKpY\",type:\"Identifier\"},{collection:\"vh3tSXqwi\",name:\"X3pOJSTQz\",type:\"Identifier\"},{collection:\"vh3tSXqwi\",name:\"XRyy2idya\",type:\"Identifier\"},{collection:\"vh3tSXqwi\",name:\"fh2wG3TaY\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"vh3tSXqwi\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,KYWiZtbJZ=getFromCurrentRouteData(\"KYWiZtbJZ\")??\"\",X3pOJSTQz=getFromCurrentRouteData(\"X3pOJSTQz\"),qrsJVgKpY=getFromCurrentRouteData(\"qrsJVgKpY\"),XRyy2idya=getFromCurrentRouteData(\"XRyy2idya\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const activeLocaleCode=useLocaleCode();const textContent=toDateString(X3pOJSTQz,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"VQV0kIxf0\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1ktnz6n\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16anq1b-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gNgjusKUC:{variant:\"iVMEKdtVF\"},TWESFH6Ds:{variant:\"aUPjfyFd8\"}},children:/*#__PURE__*/_jsx(NavigationMenu,{height:\"100%\",id:\"oHwcgUnf7\",layoutId:\"oHwcgUnf7\",style:{width:\"100%\"},variant:\"gQPDcslbG\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ef0d94\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yys200\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1vzq7k6\",\"data-styles-preset\":\"t31tD8NFN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Title\"})}),className:\"framer-10aom6o\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:KYWiZtbJZ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4ij5qs\",\"data-styles-preset\":\"MoRw7VIWb\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Content\"})}),className:\"framer-14qta7\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gNgjusKUC:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+140+0+0+264),sizes:`min(600px, ${componentViewport?.width||\"100vw\"})`,...toResponsiveImage(qrsJVgKpY)}},TWESFH6Ds:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+140+0+0+264),sizes:`calc(min(1000px, ${componentViewport?.width||\"100vw\"}) - 40px)`,...toResponsiveImage(qrsJVgKpY)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+140+0+0+264),sizes:`min(1000px, ${componentViewport?.width||\"100vw\"})`,...toResponsiveImage(qrsJVgKpY)},className:\"framer-181uxgs\",\"data-framer-name\":\"Banner\"})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"WOiU9HEJQ\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:XRyy2idya,className:\"framer-9kj32b\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-654fbn\",code:\"framer-styles-preset-pjzibt\",h1:\"framer-styles-preset-1b14vle\",h2:\"framer-styles-preset-g6vy3e\",h3:\"framer-styles-preset-stcw69\",h4:\"framer-styles-preset-y5ez5j\",h5:\"framer-styles-preset-1h6nihv\",h6:\"framer-styles-preset-1xq0an\",img:\"framer-styles-preset-1g87f3e\",p:\"framer-styles-preset-4ij5qs\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kroisk\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r8ce1n-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gNgjusKUC:{style:{maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(CommentsSection,{commentId:\"\",commentProps:{body:{font:{},textColor:\"rgb(255, 255, 255)\"},date:{font:{},textColor:\"rgb(155, 161, 165)\"},image:{colors:[\"var(--token-ae2b9fbf-1956-41b5-96b3-49f4015a5acf, rgb(51, 136, 248))\",\"rgb(255, 255, 255)\",\"var(--token-165b304b-2f6e-40f6-ab42-85eb2533ee8a, rgb(10, 10, 10))\",\"var(--token-903d2a9e-25bf-4782-9a12-975713156e7d, rgb(56, 56, 56))\"],radius:14,radiusBottomLeft:14,radiusBottomRight:14,radiusIsMixed:false,radiusTopLeft:14,radiusTopRight:14,size:21,type:\"beam\"},name:{font:{},textColor:\"rgb(255, 255, 255)\"}},divider:\"rgb(30, 32, 33)\",emptyState:\"No comments yet.\",gaps:{commentItems:20,commentSection:24,nameAndTime:8,profilePictureAndName:12},height:\"100%\",id:\"lQcjbPYBo\",input:{border:{color:\"rgb(255, 255, 255)\",width:0},fill:\"rgb(22, 24, 25)\",font:{},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:\"rgb(255, 255, 255)\"},layoutId:\"lQcjbPYBo\",publishButton:{border:{color:\"rgb(255, 255, 255)\",width:0},fill:\"rgb(255, 255, 255)\",font:{},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:\"rgb(0, 0, 0)\"},style:{width:\"100%\"},title:{color:\"rgb(255, 255, 255)\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"20px\",fontStyle:\"italic\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},show:true,text:\"COMMENTS\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:577,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+140+1140,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1un70pz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gNgjusKUC:{variant:\"L60huaU7e\"},TWESFH6Ds:{variant:\"pEMzOLb0K\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"YCNQ5bf5E\",layoutId:\"YCNQ5bf5E\",style:{width:\"100%\"},variant:\"B9PMxvQVa\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-165b304b-2f6e-40f6-ab42-85eb2533ee8a, rgb(23, 18, 14)); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hE2vd.framer-1t9yxmd, .framer-hE2vd .framer-1t9yxmd { display: block; }\",\".framer-hE2vd.framer-1ktnz6n { align-content: center; align-items: center; background-color: var(--token-165b304b-2f6e-40f6-ab42-85eb2533ee8a, #17120e); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 140px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-hE2vd .framer-16anq1b-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 2; }\",\".framer-hE2vd .framer-1ef0d94 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 1000px; }\",\".framer-hE2vd .framer-yys200 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 600px; }\",\".framer-hE2vd .framer-10aom6o, .framer-hE2vd .framer-14qta7 { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hE2vd .framer-181uxgs { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-hE2vd .framer-9kj32b { --framer-paragraph-spacing: 32px; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hE2vd .framer-kroisk { 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-hE2vd .framer-1r8ce1n-container { flex: none; height: auto; position: relative; width: 800px; }\",\".framer-hE2vd .framer-1un70pz-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hE2vd.framer-1ktnz6n, .framer-hE2vd .framer-1ef0d94, .framer-hE2vd .framer-yys200, .framer-hE2vd .framer-kroisk { gap: 0px; } .framer-hE2vd.framer-1ktnz6n > *, .framer-hE2vd .framer-1ef0d94 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-hE2vd.framer-1ktnz6n > :first-child, .framer-hE2vd .framer-1ef0d94 > :first-child, .framer-hE2vd .framer-yys200 > :first-child { margin-top: 0px; } .framer-hE2vd.framer-1ktnz6n > :last-child, .framer-hE2vd .framer-1ef0d94 > :last-child, .framer-hE2vd .framer-yys200 > :last-child { margin-bottom: 0px; } .framer-hE2vd .framer-yys200 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-hE2vd .framer-kroisk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hE2vd .framer-kroisk > :first-child { margin-left: 0px; } .framer-hE2vd .framer-kroisk > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-hE2vd.framer-1ktnz6n { width: 810px; } .framer-hE2vd .framer-1ef0d94 { width: 600px; } .framer-hE2vd .framer-kroisk { padding: 0px 60px 0px 60px; } .framer-hE2vd .framer-1r8ce1n-container { flex: 1 0 0px; max-width: 800px; width: 1px; }}\",\"@media (max-width: 809px) { .framer-hE2vd.framer-1ktnz6n { width: 390px; } .framer-hE2vd .framer-1ef0d94 { padding: 0px 20px 0px 20px; } .framer-hE2vd .framer-kroisk { flex-direction: column; padding: 0px 20px 0px 20px; } .framer-hE2vd .framer-1r8ce1n-container { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hE2vd .framer-kroisk { gap: 0px; } .framer-hE2vd .framer-kroisk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hE2vd .framer-kroisk > :first-child { margin-top: 0px; } .framer-hE2vd .framer-kroisk > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4420\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gNgjusKUC\":{\"layout\":[\"fixed\",\"auto\"]},\"TWESFH6Ds\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerLayoutTemplateCompatible true\n * @framerResponsiveScreen\n */const Framervh3tSXqwi=withCSS(Component,css,\"framer-hE2vd\");export default Framervh3tSXqwi;Framervh3tSXqwi.displayName=\"Blog\";Framervh3tSXqwi.defaultProps={height:4420,width:1200};addFonts(Framervh3tSXqwi,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/khkJkwSL66WFg8SX6Wa726c.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/0E7IMbDzcGABpBwwqNEt60wU0w.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/NTJ0nQgIF0gcDelS14zQ9NR9Q.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/QrcNhgEPfRl0LS8qz5Ln8olanl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/JEXmejW8mXOYMtt0hyRg811kHac.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/ksvR4VsLksjpSwnC2fPgHRNMw.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/uy9s0iWuxiNnVt8EpTI3gzohpwo.woff2\",weight:\"500\"}]},...NavigationMenuFonts,...CommentsSectionFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...componentPresets.fonts?.[\"WOiU9HEJQ\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"WOiU9HEJQ\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framervh3tSXqwi\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"4420\",\"framerLayoutTemplateCompatible\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gNgjusKUC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TWESFH6Ds\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}